aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib/preinit/99_10_run_init
blob: fef3a503e244090419882f63cd10e535467ec5db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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