summaryrefslogtreecommitdiff
path: root/package/base-files/src/etc/init.d/boot
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-15 19:26:42 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-15 19:26:42 +0100
commite7540c9fa814f9b41f80e72bc160ce504e26cda6 (patch)
tree8c1e66138dd42c19d45cdff55a36d343e4c3a098 /package/base-files/src/etc/init.d/boot
parent0975f98bebcefd325c641b202d715522f5710700 (diff)
startup fixes
- always use /sbin/init, even for initramfs - mount devtmpfs for initramfs automatically in kernel space - fix armhf for adk-test-framework - remove mdev -s on boot, I think it is unneeded, takes very long on Qemu systems - add alias for ro/rw remounts of / - remove old /init and rc.shutdown, both unused
Diffstat (limited to 'package/base-files/src/etc/init.d/boot')
-rw-r--r--package/base-files/src/etc/init.d/boot5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/src/etc/init.d/boot b/package/base-files/src/etc/init.d/boot
index fc2f79ac2..f52e8dc78 100644
--- a/package/base-files/src/etc/init.d/boot
+++ b/package/base-files/src/etc/init.d/boot
@@ -4,6 +4,10 @@
. /etc/functions.sh
+if [ -f /proc/sys/kernel/printk ];then
+ echo 0 > /proc/sys/kernel/printk
+fi
+
# remount /dev with smaller size
mount -o remount,nosuid,size=128k,mode=0755 -t tmpfs mdev /dev
@@ -15,7 +19,6 @@ mount -o remount,nosuid,nodev,mode=1777,size=${size}k -t tmpfs tmpfs /tmp
# start mdev dynamic device node management
echo >/dev/mdev.seq
echo "/sbin/mdev" >/proc/sys/kernel/hotplug
-mdev -s
# seed some random
cat /etc/.rnd >/dev/urandom 2>&1