2015-12-03 21:13:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 The Linux Foundation. All rights reserved.
|
|
|
|
# Copyright (c) 2011-2015 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
2015-12-11 15:26:06 +00:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2015-12-03 21:13:12 +00:00
|
|
|
. /lib/ipq806x.sh
|
|
|
|
|
|
|
|
board_config_update
|
|
|
|
|
|
|
|
board=$(ipq806x_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
|
|
|
ap148 |\
|
2016-05-27 14:26:41 +00:00
|
|
|
c2600 |\
|
2016-01-19 10:16:36 +00:00
|
|
|
d7800 |\
|
2015-12-03 21:13:12 +00:00
|
|
|
r7500)
|
|
|
|
ucidef_add_switch "switch0" \
|
|
|
|
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
|
|
|
;;
|
|
|
|
db149)
|
|
|
|
ucidef_set_interface_lan "eth1 eth2 eth3"
|
|
|
|
ucidef_add_switch "switch0" \
|
|
|
|
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unsupported hardware. Network interfaces not intialized"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
board_config_flush
|
|
|
|
|
|
|
|
exit 0
|