aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files.old/lib/preinit/50_choose_console
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-03-13 18:11:19 +0000
committerJohn Crispin <john@openwrt.org>2013-03-13 18:11:19 +0000
commitf43b7934d2850c2f545736253a0f8cbe4915fdff (patch)
tree3718ca82dd27e3917a51439823bfb20a067af784 /package/base-files/files.old/lib/preinit/50_choose_console
parent1360067c4a75cd1804710e6f25871f695d3271b2 (diff)
downloadupstream-f43b7934d2850c2f545736253a0f8cbe4915fdff.tar.gz
upstream-f43b7934d2850c2f545736253a0f8cbe4915fdff.tar.bz2
upstream-f43b7934d2850c2f545736253a0f8cbe4915fdff.zip
make basefiles aware of procd
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36003
Diffstat (limited to 'package/base-files/files.old/lib/preinit/50_choose_console')
-rw-r--r--package/base-files/files.old/lib/preinit/50_choose_console31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/base-files/files.old/lib/preinit/50_choose_console b/package/base-files/files.old/lib/preinit/50_choose_console
new file mode 100644
index 0000000000..ecbc2eaf42
--- /dev/null
+++ b/package/base-files/files.old/lib/preinit/50_choose_console
@@ -0,0 +1,31 @@
+#!/bin/sh
+# Copyright (C) 2006-2010 OpenWrt.org
+# Copyright (C) 2010 Vertical Communications
+
+choose_console() {
+ # the shell really doesn't like having stdin/out closed
+ # that's why we use /dev/pty/m0 and m1 (or equivalent) as replacement
+ # for /dev/console if there's no serial console available
+
+ if grep -q devfs /proc/filesystems; then
+ M0=/dev/pty/m0
+ M1=/dev/pty/m1
+ M2=/dev/pty/m1
+ elif [ -x /sbin/hotplug2 ]; then
+ M0=/dev/ptmx
+ M1=/dev/ptmx
+ M2=/dev/ptmx
+ elif [ -x /sbin/udevd ]; then
+ M0=/dev/pty/ptmx
+ M1=/dev/pty/ptmx
+ M2=/dev/pty/ptmx
+ fi
+ dd if=/dev/console of=/dev/null bs=1 count=0 >/dev/null 2>/dev/null && {
+ M0=/dev/console
+ M1=/dev/console
+ M2=/dev/console
+ }
+}
+
+boot_hook_add preinit_essential choose_console
+