base-files: let config_generate call board_detect
[oweals/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