mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:57:31 +02:00
a1db51bb9b
Signed-off-by: Ithamar R. Adema <ithamar.adema@team-embedded.nl> Acked-by: Daniel Dickinson <cshore@csolve.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20124 3c298f89-4303-0410-b956-a3cf2f4a3e73
17 lines
379 B
Bash
17 lines
379 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
# Copyright (C) 2010 Vertical Communications
|
|
|
|
run_init() {
|
|
preinit_echo "- init -"
|
|
preinit_ip_deconfig
|
|
if [ "$pi_init_suppress_stderr" = "y" ]; then
|
|
exec env - PATH=$pi_init_path $pi_init_env $pi_init_cmd 2>&0
|
|
else
|
|
exec env - PATH=$pi_init_path $pi_init_env $pi_init_cmd
|
|
fi
|
|
}
|
|
|
|
boot_hook_add preinit_main run_init
|
|
|