Skip to content
Snippets Groups Projects
Commit 4615944c authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

ipq806x: switch from uci-defaults to board.d


Signed-off-by: default avatarJo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 47730
parent b3f8340a
No related branches found
No related tags found
No related merge requests found
#!/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
...@@ -3,9 +3,11 @@ ...@@ -3,9 +3,11 @@
# Copyright (C) 2015 OpenWrt.org # Copyright (C) 2015 OpenWrt.org
# #
. /lib/functions/uci-defaults.sh . /lib/functions/uci-defaults-new.sh
. /lib/ipq806x.sh . /lib/ipq806x.sh
board_config_update
board=$(ipq806x_board_name) board=$(ipq806x_board_name)
case "$board" in case "$board" in
...@@ -13,7 +15,7 @@ r7500) ...@@ -13,7 +15,7 @@ r7500)
ucidef_set_led_usbdev "usb1" "USB 1" "r7500:white:usb1" "1-1" ucidef_set_led_usbdev "usb1" "USB 1" "r7500:white:usb1" "1-1"
ucidef_set_led_usbdev "usb2" "USB 2" "r7500:white:usb3" "3-1" ucidef_set_led_usbdev "usb2" "USB 2" "r7500:white:usb3" "3-1"
ucidef_set_led_netdev "wan" "WAN" "r7500:white:wan" "eth0" ucidef_set_led_netdev "wan" "WAN" "r7500:white:wan" "eth0"
ucidef_set_led_ide_disk "esata" "eSATA" "r7500:amber:esata" ucidef_set_led_ide "esata" "eSATA" "r7500:amber:esata"
ucidef_set_led_default "wps" "WPS" "r7500:white:wps" "0" ucidef_set_led_default "wps" "WPS" "r7500:white:wps" "0"
ucidef_set_led_default "rfkill" "rfkill" "r7500:white:rfkill" "0" ucidef_set_led_default "rfkill" "rfkill" "r7500:white:rfkill" "0"
;; ;;
...@@ -21,6 +23,6 @@ r7500) ...@@ -21,6 +23,6 @@ r7500)
;; ;;
esac esac
ucidef_commit_leds board_config_flush
exit 0 exit 0
#!/bin/sh #!/bin/sh
# #
# Copyright (c) 2015 The Linux Foundation. All rights reserved. # Copyright (c) 2015 The Linux Foundation. All rights reserved.
# Copyright (C) 2011 OpenWrt.org # Copyright (c) 2011-2015 OpenWrt.org
# #
[ -e /etc/config/network ] && exit 0 . /lib/functions/uci-defaults-new.sh
touch /etc/config/network
. /lib/functions/uci-defaults.sh
. /lib/ipq806x.sh . /lib/ipq806x.sh
board_config_update
ucidef_set_interface_loopback ucidef_set_interface_loopback
board=$(ipq806x_board_name) board=$(ipq806x_board_name)
...@@ -18,22 +16,19 @@ board=$(ipq806x_board_name) ...@@ -18,22 +16,19 @@ board=$(ipq806x_board_name)
case "$board" in case "$board" in
ap148 |\ ap148 |\
r7500) r7500)
ucidef_set_interfaces_lan_wan "eth1" "eth0" ucidef_add_switch "switch0" \
ucidef_add_switch "switch0" "1" "1" "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
ucidef_add_switch_vlan "switch0" "2" "0 5"
;; ;;
db149) db149)
ucidef_set_interfaces_lan_wan "eth1 eth2 eth3" "eth0" ucidef_set_interface_lan "eth1 eth2 eth3"
ucidef_add_switch "switch0" "1" "1" ucidef_add_switch "switch0" \
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4" "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
ucidef_add_switch_vlan "switch0" "2" "0 5"
;; ;;
*) *)
echo "Unsupported hardware. Network interfaces not intialized" echo "Unsupported hardware. Network interfaces not intialized"
;; ;;
esac esac
uci commit network board_config_flush
exit 0 exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment