From a5ab14682a0b863f36987ee6f8f3f2ec8b637250 Mon Sep 17 00:00:00 2001 From: Rafael Beims Date: Mon, 28 Nov 2022 10:37:38 -0300 Subject: 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 --- recipes-core/base-files/base-files/fstab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3