9525d8c5f21c5b0626d37816bd676483bb86d20d
[openwrt/openwrt.git] / target / linux / apm821xx / base-files / etc / board.d / 02_network
1 #!/bin/sh
2
3 . /lib/functions/system.sh
4 . /lib/functions/uci-defaults.sh
5 . /lib/apm821xx.sh
6
7 board_config_update
8
9 board=$(apm821xx_board_name)
10
11 case "$board" in
12 mbl | \
13 mr24)
14 ucidef_set_interface_lan "eth0"
15 ;;
16 *)
17 ucidef_set_interfaces_lan_wan "eth0" "eth1"
18 ;;
19 esac
20
21 board_config_flush
22
23 exit 0