diff options
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh b/meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh index cf84cfac5c..dfee2afaad 100755 --- a/meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh +++ b/meta/recipes-core/initscripts/initscripts-1.0/checkroot.sh | |||
@@ -54,6 +54,16 @@ do | |||
54 | done | 54 | done |
55 | exec 0>&9 9>&- | 55 | exec 0>&9 9>&- |
56 | 56 | ||
57 | # Check for conflicting configurations | ||
58 | if [ "$rootmode" = "ro" -a "$ROOTFS_READ_ONLY" = "no" ] || \ | ||
59 | [ "$rootmode" = "rw" -a "$ROOTFS_READ_ONLY" = "yes" ]; then | ||
60 | echo "" | ||
61 | echo "WARN: conflicting configurations in /etc/fstab and /etc/default/rcS" | ||
62 | echo " regarding the writability of rootfs. Please fix one of them." | ||
63 | echo "" | ||
64 | fi | ||
65 | |||
66 | |||
57 | # | 67 | # |
58 | # Activate the swap device(s) in /etc/fstab. This needs to be done | 68 | # Activate the swap device(s) in /etc/fstab. This needs to be done |
59 | # before fsck, since fsck can be quite memory-hungry. | 69 | # before fsck, since fsck can be quite memory-hungry. |