diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-05-05 11:43:19 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-05-05 11:43:19 +0000 |
commit | 257a201b567bd3e67b68ab02325cd4db4dc6dc17 (patch) | |
tree | 59f9f257cf0bf2202400ff4dc495daf73ecd9d2b /target/linux/mpc83xx/base-files/lib/preinit | |
parent | 13ce8f8a77a209cc9889c8d5ca0cf1e7d401ce85 (diff) | |
download | mtk-20170518-257a201b567bd3e67b68ab02325cd4db4dc6dc17.zip mtk-20170518-257a201b567bd3e67b68ab02325cd4db4dc6dc17.tar.gz mtk-20170518-257a201b567bd3e67b68ab02325cd4db4dc6dc17.tar.bz2 |
mpc83xx: populate network config from an uci-default script
SVN-Revision: 31590
Diffstat (limited to 'target/linux/mpc83xx/base-files/lib/preinit')
-rw-r--r-- | target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh b/target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh new file mode 100644 index 0000000..c67b1d4 --- /dev/null +++ b/target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +do_mpc83xx() { + . /lib/mpc83xx.sh + + mpc83xx_board_detect +} + +boot_hook_add preinit_main do_mpc83xx |