summaryrefslogtreecommitdiff
path: root/package/base-files/extra/init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-05-31 16:47:59 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-05-31 16:47:59 +0200
commitb988bc81d7d5881042242bd31478823b3f904b48 (patch)
tree2cdbdd3bd9bdf37968ceab0797cef45cd54b24e1 /package/base-files/extra/init
parentc3fbeed8234d660b713b9dcdb3cdb80e1e7ff804 (diff)
remove to extra to avoid installing package metafiles
Diffstat (limited to 'package/base-files/extra/init')
-rwxr-xr-xpackage/base-files/extra/init18
1 files changed, 18 insertions, 0 deletions
diff --git a/package/base-files/extra/init b/package/base-files/extra/init
new file mode 100755
index 000000000..567993cbb
--- /dev/null
+++ b/package/base-files/extra/init
@@ -0,0 +1,18 @@
+#!/bin/sh
+export PATH=/bin:/sbin:/usr/bin:/usr/sbin
+mount -nt proc proc /proc
+mount -o nosuid,nodev,noexec -t sysfs sysfs /sys
+mount none /tmp -t tmpfs -o size=2M
+mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777
+mount -o nosuid,size=64k,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