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>
91 lines
1.1 KiB
Bash
Executable file
91 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
. /lib/apm821xx.sh
|
|
|
|
PART_NAME=firmware
|
|
RAMFS_COPY_DATA=/lib/apm821xx.sh
|
|
|
|
platform_check_image() {
|
|
local board=$(apm821xx_board_name)
|
|
|
|
[ "$#" -gt 1 ] && return 1
|
|
|
|
case "$board" in
|
|
mbl)
|
|
mbl_do_platform_check $board "$1"
|
|
return $?;
|
|
;;
|
|
|
|
mr24|\
|
|
mx60)
|
|
merakinand_do_platform_check $board "$1"
|
|
return $?;
|
|
;;
|
|
|
|
wndr4700)
|
|
nand_do_platform_check $board "$1"
|
|
return $?;
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
echo "Sysupgrade is not yet supported on $board."
|
|
return 1
|
|
}
|
|
|
|
platform_pre_upgrade() {
|
|
local board=$(apm821xx_board_name)
|
|
|
|
case "$board" in
|
|
mr24|\
|
|
mx60)
|
|
merakinand_do_upgrade "$1"
|
|
;;
|
|
|
|
wndr4700)
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
local board=$(apm821xx_board_name)
|
|
|
|
case "$board" in
|
|
mbl)
|
|
mbl_do_upgrade "$ARGV"
|
|
;;
|
|
|
|
*)
|
|
default_do_upgrade "$ARGV"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_copy_config() {
|
|
local board=$(apm821xx_board_name)
|
|
|
|
case "$board" in
|
|
mbl)
|
|
mbl_copy_config
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
disable_watchdog() {
|
|
killall watchdog
|
|
( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
|
|
echo 'Could not disable watchdog'
|
|
return 1
|
|
}
|
|
}
|
|
|
|
append sysupgrade_pre_upgrade disable_watchdog
|