diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-23 14:18:57 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-23 14:18:57 +0200 |
commit | 37829565dce0182bc0a8f13fd3412a4723f6d73b (patch) | |
tree | d29e155cccf685f0c4cbec41125f9eb07ae3a7b7 /package/base-files/extra/init | |
parent | 89c97737dfc60a2e934f136c562dab5bb366396b (diff) |
revert renaming of /init into /start
- fix foxboard build, tested on classic
- remove unsed ibm-x40 target
- update all targets to linux-2.6.30.5
- fix native build, use kernel.config.$(CPU_ARCH) as kernel
configuration, when /proc/config.gz does not exist on host
Diffstat (limited to 'package/base-files/extra/init')
-rwxr-xr-x | package/base-files/extra/init | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/base-files/extra/init b/package/base-files/extra/init new file mode 100755 index 000000000..4b4e90213 --- /dev/null +++ b/package/base-files/extra/init @@ -0,0 +1,21 @@ +#!/bin/sh +echo "Pre-boot initializing" +export PATH=/bin:/sbin:/usr/bin:/usr/sbin +mount -nt proc proc /proc +size=$(awk '/MemTotal:/ { if ($2 > 16000) { print 4096 } else { print 2048 }}' /proc/meminfo) +mount -o nosuid,nodev,noexec -t sysfs sysfs /sys +mount none /tmp -t tmpfs -o size=${size}k +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 /;} +echo "Starting system" +exec /sbin/init |