1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 03:40:16 +03:00
openwrt-xburst/package/base-files/files/lib/preinit/90_init_console

15 lines
265 B
Plaintext
Raw Normal View History

#!/bin/sh
# Copyright (C) 2006-2010 OpenWrt.org
# Copyright (C) 2010 Vertical Communications
init_console() {
if [ "$pi_suppress_stderr" = "y" ]; then
exec <$M0 >$M1 2>&0
else
exec <$M0 >$M1 2>$M2
fi
}
boot_hook_add preinit_essential init_console