f478ec2007
This patch adds support for the Cisco Meraki MX60/MX60W Security Appliance. Flashing information can be found at https://github.com/riptidewave93/LEDE-MX60 Specs are as follows: AppliedMicro APM82181 SoC at 800MHz 1GiB NAND - Samsung K9K8G08U0D 512MB DDR RAM - 4x Nanya NT5TU128M8GE-AC Atheros AR8327-BL1A Gigabit Ethernet Switch 1x USB 2.0 Port More info can be found at https://wiki.openwrt.org/toh/meraki/mx60 Cc: Christian Lamparter <chunkeey@gmail.com> Signed-off-by: Chris Blake <chrisrblake93@gmail.com>
30 lines
398 B
Bash
Executable file
30 lines
398 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /lib/functions/system.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
. /lib/apm821xx.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(apm821xx_board_name)
|
|
|
|
case "$board" in
|
|
mbl|\
|
|
mr24)
|
|
ucidef_set_interface_lan "eth0"
|
|
;;
|
|
|
|
mx60|\
|
|
wndr4700)
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "4:lan" "3:lan" "2:lan" "1:lan" "5:wan"
|
|
;;
|
|
|
|
*)
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|