Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47730master
parent
b3f8340a5e
commit
4615944c71
@ -0,0 +1,13 @@ |
||||
#!/bin/sh |
||||
# Copyright (C) 2015 OpenWrt.org |
||||
|
||||
. /lib/functions/uci-defaults-new.sh |
||||
|
||||
board_config_update |
||||
|
||||
ucidef_set_board_id "$(cat /tmp/sysinfo/board_name)" |
||||
ucidef_set_model_name "$(cat /tmp/sysinfo/model)" |
||||
|
||||
board_config_flush |
||||
|
||||
exit 0 |
@ -0,0 +1,34 @@ |
||||
#!/bin/sh |
||||
# |
||||
# Copyright (c) 2015 The Linux Foundation. All rights reserved. |
||||
# Copyright (c) 2011-2015 OpenWrt.org |
||||
# |
||||
|
||||
. /lib/functions/uci-defaults-new.sh |
||||
. /lib/ipq806x.sh |
||||
|
||||
board_config_update |
||||
|
||||
ucidef_set_interface_loopback |
||||
|
||||
board=$(ipq806x_board_name) |
||||
|
||||
case "$board" in |
||||
ap148 |\ |
||||
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 |
@ -1,39 +0,0 @@ |
||||
#!/bin/sh |
||||
# |
||||
# Copyright (c) 2015 The Linux Foundation. All rights reserved. |
||||
# Copyright (C) 2011 OpenWrt.org |
||||
# |
||||
|
||||
[ -e /etc/config/network ] && exit 0 |
||||
|
||||
touch /etc/config/network |
||||
|
||||
. /lib/functions/uci-defaults.sh |
||||
. /lib/ipq806x.sh |
||||
|
||||
ucidef_set_interface_loopback |
||||
|
||||
board=$(ipq806x_board_name) |
||||
|
||||
case "$board" in |
||||
ap148 |\ |
||||
r7500) |
||||
ucidef_set_interfaces_lan_wan "eth1" "eth0" |
||||
ucidef_add_switch "switch0" "1" "1" |
||||
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4" |
||||
ucidef_add_switch_vlan "switch0" "2" "0 5" |
||||
;; |
||||
db149) |
||||
ucidef_set_interfaces_lan_wan "eth1 eth2 eth3" "eth0" |
||||
ucidef_add_switch "switch0" "1" "1" |
||||
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4" |
||||
ucidef_add_switch_vlan "switch0" "2" "0 5" |
||||
;; |
||||
*) |
||||
echo "Unsupported hardware. Network interfaces not intialized" |
||||
;; |
||||
esac |
||||
|
||||
uci commit network |
||||
|
||||
exit 0 |
Loading…
Reference in new issue