fix kmod-usb-hid package build
[openwrt.git] / package / base-files / files / etc / preinit
index 74d4e88..d1a6ffd 100755 (executable)
@@ -1,5 +1,23 @@
 #!/bin/sh
 # Copyright (C) 2006 OpenWrt.org
 export PATH=/bin:/sbin:/usr/bin:/usr/sbin
-mount_root
+. /etc/diag.sh
+
+failsafe() {
+       lock /tmp/.failsafe
+       ash --login
+}
+
+mount none /proc -t proc
+mount none /sys  -t sysfs
+
+[ -e /etc/preinit.arch ] && . /etc/preinit.arch
+
+set_state preinit
+
+mount_root ${FAILSAFE:+failsafe}
+
+eval ${FAILSAFE:+failsafe}
+lock -w /tmp/.failsafe
+
 exec /sbin/init
This page took 0.020737 seconds and 4 git commands to generate.