diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-06-15 17:21:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-06-15 17:21:17 +0000 |
commit | 705882aaab1526e9c46530c02699c923ec7b80ca (patch) | |
tree | ecb67bcf7ba9edd4ea60e1459a2085e07291d289 /package/base-files/brcm-2.6/etc/preinit | |
parent | f21f0f60303bef6965acd378d9b8d561d4cfe93b (diff) | |
download | master-187ad058-705882aaab1526e9c46530c02699c923ec7b80ca.tar.gz master-187ad058-705882aaab1526e9c46530c02699c923ec7b80ca.tar.bz2 master-187ad058-705882aaab1526e9c46530c02699c923ec7b80ca.zip |
clean up handling of the root filesystem mount - remove broadcom specific junk from the generic base-files part
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3951 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/brcm-2.6/etc/preinit')
-rwxr-xr-x | package/base-files/brcm-2.6/etc/preinit | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/base-files/brcm-2.6/etc/preinit b/package/base-files/brcm-2.6/etc/preinit new file mode 100755 index 0000000000..5b676ca3ac --- /dev/null +++ b/package/base-files/brcm-2.6/etc/preinit @@ -0,0 +1,11 @@ +#!/bin/sh +export PATH=/bin:/sbin:/usr/bin:/usr/sbin +mount none /proc -t proc + +[ -f /etc/preinit.arch ] && . /etc/preinit.arch +[ -z "$FAILSAFE" ] || { + echo /bin/true > /proc/sys/kernel/hotplug + telnetd -l /bin/login <> /dev/null 2>&1 +} +mount_root ${FAILSAFE:+failsafe} +exec /sbin/init |