mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42220 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
265 B
Bash
Executable File
15 lines
265 B
Bash
Executable File
#!/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
|
|
}
|