treewide: remove execute bit and shebang from board.d files
[openwrt/staging/rmilecki.git] / target / linux / layerscape / base-files / etc / board.d / 02_network
1
2 . /lib/functions/system.sh
3 . /lib/functions/uci-defaults.sh
4
5 board_config_update
6
7 case "$(board_name)" in
8 traverse,ls1043v)
9 ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
10 ucidef_set_interface_wan "eth4"
11 ;;
12 traverse,ls1043s)
13 ucidef_set_interface_lan "eth0 eth1 eth2 eth3 eth6"
14 ucidef_set_interface_wan "eth4"
15 ;;
16 esac
17
18 board_config_flush
19
20 exit 0