mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
e63326e26a
Images for xrx200 8M flash are either not building due to image size (TD-W8970, TD-W8980) or building such that the available free space in the overlayfs is too little to be useful. To keep images for these devices buildable, move them into a small flash variant of the xrx200 subtarget. As these devices are NOR flash only, remove NAND and UBI references from the kernel config to gain some additional image size reduction. The apparent 8M flash devices Arcadyan VGV7510KW22-brn, Arcadyan VGV7519-brn and Lantiq Easy80920-nor seem to exist in order to create special "factory" installation images for these devices (which actually have larger flash: 16MB for the Arcardyan devices; 64MB for the Lantiq device). As a considerable amount of surgery would appear to be required to the uboot-lantiq package structure to separate the "factory" from the "sysupgrade" device recipes for these devices they remain in the xrx200 target - if factory images aren't now created, 23.05.x factory images should suffice for initial installation. Tested on: Netgear DM200, TP-Link TD-W8980, AVM Fritz7490 (xrx200 subtarget: image build only) Fixes: https://github.com/openwrt/openwrt/issues/16761 Signed-off-by: Andrew MacIntyre <andymac@pcug.org.au> Link: https://github.com/openwrt/openwrt/pull/17113 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
DEVICE_VARS += TPLINK_FLASHLAYOUT TPLINK_HWID TPLINK_HWREV TPLINK_HWREVADD TPLINK_HVERSION
|
|
|
|
define Device/dsa-migration
|
|
DEVICE_COMPAT_VERSION := 1.1
|
|
DEVICE_COMPAT_MESSAGE := Config cannot be migrated from swconfig to DSA
|
|
endef
|
|
|
|
define Device/lantiqTpLink
|
|
DEVICE_VENDOR := TP-Link
|
|
TPLINK_HWREVADD := 0
|
|
TPLINK_HVERSION := 2
|
|
KERNEL := kernel-bin | append-dtb | lzma
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | \
|
|
tplink-v2-header -s -V "ver. 1.0"
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := tplink-v2-image -s -V "ver. 1.0" | \
|
|
check-size | append-metadata
|
|
endef
|
|
|
|
define Device/tplink_vr200
|
|
$(Device/dsa-migration)
|
|
$(Device/lantiqTpLink)
|
|
DEVICE_MODEL := Archer VR200
|
|
DEVICE_VARIANT := v1
|
|
TPLINK_FLASHLAYOUT := 16Mltq
|
|
TPLINK_HWID := 0x63e64801
|
|
TPLINK_HWREV := 0x53
|
|
IMAGE_SIZE := 15808k
|
|
DEVICE_PACKAGES:= kmod-mt76x0e wpad-basic-mbedtls kmod-usb-dwc2 kmod-usb-ledtrig-usbport
|
|
SUPPORTED_DEVICES += VR200
|
|
endef
|
|
TARGET_DEVICES += tplink_vr200
|
|
|
|
define Device/tplink_vr200v
|
|
$(Device/dsa-migration)
|
|
$(Device/lantiqTpLink)
|
|
DEVICE_MODEL := Archer VR200v
|
|
DEVICE_VARIANT := v1
|
|
TPLINK_FLASHLAYOUT := 16Mltq
|
|
TPLINK_HWID := 0x73b70801
|
|
TPLINK_HWREV := 0x2f
|
|
IMAGE_SIZE := 15808k
|
|
DEVICE_PACKAGES:= kmod-mt76x0e wpad-basic-mbedtls kmod-usb-dwc2 kmod-usb-ledtrig-usbport kmod-ltq-tapi kmod-ltq-vmmc
|
|
SUPPORTED_DEVICES += VR200v
|
|
endef
|
|
TARGET_DEVICES += tplink_vr200v
|