diff options
| -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 | |||
| 68 | MODULE_POST_HOOKS="" # functions to call after running each module | 68 | MODULE_POST_HOOKS="" # functions to call after running each module |
| 69 | MODULES_DIR=/init.d # place to look for modules | 69 | MODULES_DIR=/init.d # place to look for modules |
| 70 | 70 | ||
| 71 | # initialize /proc and /sys | 71 | # make mount stop complaining about missing /etc/fstab |
| 72 | mkdir -p /proc /sys | 72 | touch /etc/fstab |
| 73 | |||
| 74 | # initialize /proc, /sys and /var/lock | ||
| 75 | mkdir -p /proc /sys /var/lock | ||
| 73 | mount -t proc proc /proc | 76 | mount -t proc proc /proc |
| 74 | mount -t sysfs sysfs /sys | 77 | mount -t sysfs sysfs /sys |
| 75 | 78 | ||
