Fstab
This article is about /etc/fstab
in postmarketOS.
Usage in the boot process
We used to rely on /etc/fstab
to find the postmarketOS boot and root partitions by their label. We have to find partitions by their label, because we do not always know the exact location or UUID of the partition in advance. However, by just relying on the label, we get unpredictable behavior if installing postmarketOS on both the eMMC and the SD card (pmaports#664).
The initramfs accepts paths to the boot and root partitions as kernel parameters and falls back to searching by label, therefore it covers all use cases we have. Nowadays, we let the initramfs mount root and boot, and do not have any entries for them in /etc/fstab
.
Enabling localmount service
If you want to add custom entries to your /etc/fstab
(e.g. to mount your SD card) and want OpenRC to process the file during boot, enable the localmount
service:
$ sudo rc-update add localmount default
Related issue: pmaports#1168