aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/bin/board_detect
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-08-18 13:09:17 +0000
committerJohn Crispin <blogic@openwrt.org>2014-08-18 13:09:17 +0000
commitd5a9dd2b5811488f3c71dc69d4a4a84f46b62dc3 (patch)
treed5c32bb9ec8dddd9a85ef045a6a0e5a4b30fd06b /package/base-files/files/bin/board_detect
parent762dc34e67b233e70246a3d5c92e41c992d1ba54 (diff)
downloadmaster-187ad058-d5a9dd2b5811488f3c71dc69d4a4a84f46b62dc3.tar.gz
master-187ad058-d5a9dd2b5811488f3c71dc69d4a4a84f46b62dc3.tar.bz2
master-187ad058-d5a9dd2b5811488f3c71dc69d4a4a84f46b62dc3.zip
base-files: add a hardware detection layer
this allows targets to use the new uci-default helper which will generate a file called /etc/board.json. a tool called /bin/config_generate can then be used to generate the default uci settings. Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42185 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/bin/board_detect')
-rwxr-xr-xpackage/base-files/files/bin/board_detect14
1 files changed, 14 insertions, 0 deletions
diff --git a/package/base-files/files/bin/board_detect b/package/base-files/files/bin/board_detect
new file mode 100755
index 0000000000..ddd17a1633
--- /dev/null
+++ b/package/base-files/files/bin/board_detect
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+[ -d "/etc/board.d/" -a ! -f "/etc/board.json" ] || {
+ for a in `ls /etc/board.d/*`; do
+ [ -x $a ] || continue;
+ $(. $a)
+ done
+}
+
+[ -f "/etc/board.json" ] || return 1
+[ -f "/etc/config/network" ] || {
+ touch /etc/config/network
+ /bin/config_generate
+}