diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/slugos-init/files/turnup | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/slugos-init/files/turnup b/packages/slugos-init/files/turnup index 51b801dfea..4e92668b18 100644 --- a/packages/slugos-init/files/turnup +++ b/packages/slugos-init/files/turnup @@ -496,6 +496,8 @@ boot_rootfs() { return 1 };; ram) { echo '#!/bin/sh' + echo 'mount -t proc proc /proc' + echo 'mount -t sysfs sysfs /sys' echo 'leds beep' echo 'rm -f /linuxrc.new' echo 'ln -s boot/flash /linuxrc.new' @@ -508,6 +510,8 @@ boot_rootfs() { return 1 };; *) { echo '#!/bin/sh' + echo 'mount -t proc proc /proc' + echo 'mount -t sysfs sysfs /sys' echo 'leds beep' test "$sleep" -gt 0 && echo -n "sleep='$sleep' " test -n "$uuid" && echo -n "UUID='$uuid' " |