diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-11-25 17:27:27 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-03 13:48:23 +0000 |
commit | d7a8154d575f918a0a20cb0e3a8f65d02ed32f30 (patch) | |
tree | b02a061d8305da0cbe4d657304bac76760ab1f33 /meta | |
parent | 554f2436435bf96c6735827f491c1b78b198c016 (diff) | |
download | openembedded-core-d7a8154d575f918a0a20cb0e3a8f65d02ed32f30.tar.gz openembedded-core-d7a8154d575f918a0a20cb0e3a8f65d02ed32f30.tar.bz2 openembedded-core-d7a8154d575f918a0a20cb0e3a8f65d02ed32f30.zip |
initramfs-framework: init: Stop mount warnings during boot
For a completely quiet boot using recent versions of utilities, the
/etc/fstab and /var/lock need to be available.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/recipes-core/initrdscripts/initramfs-framework/init | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/init b/meta/recipes-core/initrdscripts/initramfs-framework/init index fc4b0db4b4..0be8f4dafd 100755 --- a/meta/recipes-core/initrdscripts/initramfs-framework/init +++ b/meta/recipes-core/initrdscripts/initramfs-framework/init @@ -68,8 +68,11 @@ MODULE_PRE_HOOKS="" # functions to call before running each module MODULE_POST_HOOKS="" # functions to call after running each module MODULES_DIR=/init.d # place to look for modules -# initialize /proc and /sys -mkdir -p /proc /sys +# make mount stop complaining about missing /etc/fstab +touch /etc/fstab + +# initialize /proc, /sys and /var/lock +mkdir -p /proc /sys /var/lock mount -t proc proc /proc mount -t sysfs sysfs /sys |