diff options
author | John Crispin <john@openwrt.org> | 2014-07-14 07:38:52 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-07-14 07:38:52 +0000 |
commit | c8bde9da4af4b66ce613d37a04bbd601d8b0329d (patch) | |
tree | e9ccfe55adfb6e12ba48e3c6357b1295f4eb0863 /target/linux/lantiq | |
parent | 7e0e5110bc90a8d6e709b9a070eb2aa82d46f15d (diff) | |
download | upstream-c8bde9da4af4b66ce613d37a04bbd601d8b0329d.tar.gz upstream-c8bde9da4af4b66ce613d37a04bbd601d8b0329d.tar.bz2 upstream-c8bde9da4af4b66ce613d37a04bbd601d8b0329d.zip |
lantiq: detect board in preinit state
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 41638
Diffstat (limited to 'target/linux/lantiq')
-rw-r--r-- | target/linux/lantiq/base-files/lib/functions/lantiq.sh | 2 | ||||
-rwxr-xr-x | target/linux/lantiq/base-files/lib/preinit/03_preinit_board.sh | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq.sh b/target/linux/lantiq/base-files/lib/functions/lantiq.sh index f02edbcbb1..88da794ca9 100644 --- a/target/linux/lantiq/base-files/lib/functions/lantiq.sh +++ b/target/linux/lantiq/base-files/lib/functions/lantiq.sh @@ -13,7 +13,6 @@ lantiq_board_detect() { lantiq_board_model() { local model - [ -f /tmp/sysinfo/model ] || lantiq_board_detect [ -f /tmp/sysinfo/model ] && model=$(cat /tmp/sysinfo/model) [ -z "$model" ] && model="unknown" @@ -23,7 +22,6 @@ lantiq_board_model() { lantiq_board_name() { local name - [ -f /tmp/sysinfo/board_name ] || lantiq_board_detect [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name) [ -z "$name" ] && name="unknown" diff --git a/target/linux/lantiq/base-files/lib/preinit/03_preinit_board.sh b/target/linux/lantiq/base-files/lib/preinit/03_preinit_board.sh new file mode 100755 index 0000000000..6d4bd67af5 --- /dev/null +++ b/target/linux/lantiq/base-files/lib/preinit/03_preinit_board.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +do_lantiq() { + . /lib/functions/lantiq.sh + + lantiq_board_detect +} + +boot_hook_add preinit_main do_lantiq |