mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
5fc63ec8a4
To simplify the upgrade process and ensure easier identification of device partitioning, the following devices are disabled on ath79 target in openwrt-19.07 branch: - glinet,gl-ar300m-nor - glinet,gl-ar300m-nand - glinet,gl-ar750s Proper ath79 (NAND) support for the devices is expected to be introduced based on kernel 4.19 (see GitHub PR #2184). In openwrt-19.07, ar71xx should be used for those devices. With this, we ensure that the new ath79 image names (at least for releases) refer to the updated partitioning. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
14 lines
454 B
Makefile
14 lines
454 B
Makefile
define Device/glinet_gl-ar300m-nand
|
|
ATH_SOC := qca9531
|
|
DEVICE_TITLE := GL-AR300M (NAND)
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-storage kmod-usb-ledtrig-usbport
|
|
KERNEL_SIZE := 2048k
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
VID_HDR_OFFSET := 512
|
|
IMAGES += factory.ubi
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar
|
|
IMAGE/factory.ubi := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
|
|
endef
|
|
#TARGET_DEVICES += glinet_gl-ar300m-nand
|