3a23381c2c44d61f02090552cb07097b51bb4fc8
[openwrt/openwrt.git] / package / base-files / files / bin / board_detect
1 #!/bin/sh
2
3 [ -d "/etc/board.d/" -a ! -f "/etc/board.json" ] && {
4 for a in `ls /etc/board.d/*`; do
5 [ -x $a ] || continue;
6 $(. $a)
7 done
8 }
9
10 [ -f "/etc/board.json" ] || return 1