summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Beims <rafael.beims@toradex.com>2022-11-28 10:37:38 -0300
committerRafael Beims <rafael.beims@toradex.com>2022-11-28 10:43:25 -0300
commita5ab14682a0b863f36987ee6f8f3f2ec8b637250 (patch)
tree3372bf0826b9cb8d4d98c3cdf72c4eda56426642
parentce3c1925df34b4d299b2dd1003ced41b9485ce41 (diff)
Add "defaults" option to root mount in fstab
The "defaults" option is substituted by "ro" when the IMAGE_FEATURES "read-only-rootfs" is enabled. Not having the string on our file prevents the feature from working. Related-to: ELB-4915 Signed-off-by: Rafael Beims <rafael.beims@toradex.com>
-rw-r--r--recipes-core/base-files/base-files/fstab2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/base-files/base-files/fstab b/recipes-core/base-files/base-files/fstab
index 6ccd038..d9ded1e 100644
--- a/recipes-core/base-files/base-files/fstab
+++ b/recipes-core/base-files/base-files/fstab
@@ -1,6 +1,6 @@
# stock fstab - you probably want to override this with a machine specific one
-/dev/root / auto noatime 1 1
+/dev/root / auto defaults,noatime 1 1
/dev/boot-part /boot auto noatime,noauto 0 0
proc /proc proc defaults 0 0
devpts /dev/pts devpts mode=0620,ptmxmode=0666,gid=5 0 0