summaryrefslogtreecommitdiff
path: root/package/base-files/src/init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-07 22:01:27 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-07 22:01:27 +0100
commit7de93724af9791bad0a8e887d02bf7a3a872305c (patch)
treec4de7f2ecaa01cc7cf371eb3b771a6b8a8f9a9de /package/base-files/src/init
parentbd1730cdff6b88d54d5fdb3d63d5733ca33abe59 (diff)
parent254ae86e16cddf282b36c0593148e24151ce1f96 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/base-files/src/init')
-rwxr-xr-xpackage/base-files/src/init22
1 files changed, 22 insertions, 0 deletions
diff --git a/package/base-files/src/init b/package/base-files/src/init
new file mode 100755
index 000000000..618547693
--- /dev/null
+++ b/package/base-files/src/init
@@ -0,0 +1,22 @@
+#!/bin/sh
+echo "System initialization ..."
+export PATH=/bin:/sbin:/usr/bin:/usr/sbin
+mount -nt proc proc /proc
+mount -o nosuid,nodev,noexec -t sysfs sysfs /sys
+[ ! -f /etc/notmpfs ] && {
+ size=$(awk '/MemTotal:/ { if ($2 > 16000) { print 4096 } else { print 2048 }}' /proc/meminfo)
+ mount none /tmp -t tmpfs -o size=${size}k
+ mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777
+}
+mount -o nosuid,size=128k,mode=0755 -t tmpfs mdev /dev
+mkdir /dev/pts /dev/shm
+mount -o nosuid,noexec -t devpts devpts /dev/pts
+exec 0<>/dev/console >&0 2>&0
+echo >/dev/mdev.seq
+echo "/sbin/mdev" >/proc/sys/kernel/hotplug
+mdev -s
+mount -o remount,rw /
+cat /etc/.rnd >/dev/urandom 2>&1
+[ -f /etc/fstab ] && mount -a
+[ -x /sbin/cfgfs ] && { cfgfs setup; mount -o remount,ro /;}
+exec /sbin/init