mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-13 08:20:07 +00:00
f2e1d37381
Motivation: Firmware with platform ID "XR450" required for easy installation. Manufacturer pages: Product page: https://www.netgear.com/support/product/xr450 Product Data Sheet: https://www.netgear.com/images/datasheet/networking/wifirouter/XR450.pdf Current firmware: https://www.downloads.netgear.com/files/GDC/XR450/XR450-V2.3.2.134.zip Specifications: Almost identical to Netgear XR500(https://openwrt.org/toh/hwdata/netgear/netgear_xr500) Differences: Platform ID: XR450, utilized for firmware validation WLAN 2.4GHz: b/g/n Supports QAM64 (XR500 QAM256) SoC: Qualcomm Atheros IPQ8065 RAM: 512 MB Storage: 256 MiB Wireless: Qualcomm Atheros QCA9984 Switch: Qualcomm Atheros AR8337 rev. 2 Ethernet: 5x 1000/100/10 USB: 2x 3.0 Install via WEB GUI (recommended): 1. Navigate within GUI to firmware update section 2. Select openwrt-ipq806x-netgear_xr450-squashfs-factory.img 3. Dismiss downgrade warning Install via TFTP recovery (same as XR500/R7800): 1. Configure host PC to use static address 192.168.1.10 https://openwrt.org/toh/netgear/r7800#prerequisites_for_tftp_flashing 2. Flash openwrt-ipq806x-netgear_xr450-squashfs-factory.img using procedure https://openwrt.org/toh/netgear/r7800#tftp_flashing_process Revert to stock firmware 1. Download current manufacturer firmware, decompress zip file to obtain img file 2. Use TFTP recovery method flash img file (currently XR450-V2.3.2.134.img) ipq806x: add support to netgear_xr450 Signed-off-by: Andrzej Mialkowski <andrzej.mialkowski@gmail.com>
93 lines
1.7 KiB
Bash
93 lines
1.7 KiB
Bash
PART_NAME=firmware
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
RAMFS_COPY_BIN='fw_printenv fw_setenv'
|
|
RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
|
|
|
|
platform_check_image() {
|
|
return 0;
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
case "$(board_name)" in
|
|
arris,tr4400-v2 |\
|
|
askey,rt4230w-rev6 |\
|
|
compex,wpq864|\
|
|
netgear,d7800 |\
|
|
netgear,r7500 |\
|
|
netgear,r7500v2 |\
|
|
netgear,r7800 |\
|
|
netgear,xr450 |\
|
|
netgear,xr500 |\
|
|
nokia,ac400i |\
|
|
qcom,ipq8064-ap148 |\
|
|
qcom,ipq8064-ap161)
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
asrock,g10)
|
|
asrock_upgrade_prepare
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
buffalo,wxr-2533dhp)
|
|
buffalo_upgrade_prepare_ubi
|
|
CI_ROOTPART="ubi_rootfs"
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
edgecore,ecw5410)
|
|
part="$(awk -F 'ubi.mtd=' '{printf $2}' /proc/cmdline | sed -e 's/ .*$//')"
|
|
if [ "$part" = "rootfs1" ]; then
|
|
fw_setenv active 2 || exit 1
|
|
CI_UBIPART="rootfs2"
|
|
else
|
|
fw_setenv active 1 || exit 1
|
|
CI_UBIPART="rootfs1"
|
|
fi
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
linksys,ea7500-v1 |\
|
|
linksys,ea8500)
|
|
platform_do_upgrade_linksys "$1"
|
|
;;
|
|
meraki,mr42 |\
|
|
meraki,mr52)
|
|
CI_KERNPART="bootkernel2"
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
tplink,ad7200 |\
|
|
tplink,c2600)
|
|
PART_NAME="os-image:rootfs"
|
|
MTD_CONFIG_ARGS="-s 0x200000"
|
|
default_do_upgrade "$1"
|
|
;;
|
|
asus,onhub |\
|
|
tplink,onhub)
|
|
export_bootdevice
|
|
export_partdevice CI_ROOTDEV 0
|
|
CI_KERNPART="kernel"
|
|
CI_ROOTPART="rootfs"
|
|
CI_DATAPART="rootfs_data"
|
|
emmc_do_upgrade "$1"
|
|
;;
|
|
tplink,vr2600v)
|
|
MTD_CONFIG_ARGS="-s 0x200000"
|
|
default_do_upgrade "$1"
|
|
;;
|
|
zyxel,nbg6817)
|
|
zyxel_do_upgrade "$1"
|
|
;;
|
|
*)
|
|
default_do_upgrade "$1"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_copy_config() {
|
|
case "${board_name}" in
|
|
asus,onhub |\
|
|
tplink,onhub)
|
|
emmc_copy_config
|
|
;;
|
|
esac
|
|
return 0
|
|
}
|