diff options
author | Marty E. Plummer <hanetzer@startmail.com> | 2018-05-29 03:02:59 -0500 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-06-18 20:29:38 +0200 |
commit | 0e81968ee8def1d477f12d1eeb63f485c551463e (patch) | |
tree | be167a805c372dadce271b9352c884152e0a9cb7 /target/linux/ath79/image | |
parent | fe3b62bbdc66a50c985ba3b0c9e873e5c0862ee2 (diff) | |
download | upstream-0e81968ee8def1d477f12d1eeb63f485c551463e.tar.gz upstream-0e81968ee8def1d477f12d1eeb63f485c551463e.tar.bz2 upstream-0e81968ee8def1d477f12d1eeb63f485c551463e.zip |
ath79: add initial nand support for gl-ar300m
Signed-off-by: Marty E. Plummer <hanetzer@startmail.com>
Diffstat (limited to 'target/linux/ath79/image')
-rw-r--r-- | target/linux/ath79/image/Makefile | 3 | ||||
-rw-r--r-- | target/linux/ath79/image/nand.mk | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/ath79/image/Makefile b/target/linux/ath79/image/Makefile index 34dd819610..f4c0c1e3a5 100644 --- a/target/linux/ath79/image/Makefile +++ b/target/linux/ath79/image/Makefile @@ -71,6 +71,9 @@ include ./generic.mk include ./generic-tp-link.mk include ./generic-ubnt.mk endif +ifeq ($(SUBTARGET),nand) +include ./nand.mk +endif ifeq ($(SUBTARGET),tiny) include ./tiny-tp-link.mk endif diff --git a/target/linux/ath79/image/nand.mk b/target/linux/ath79/image/nand.mk new file mode 100644 index 0000000000..979afd2b2b --- /dev/null +++ b/target/linux/ath79/image/nand.mk @@ -0,0 +1,13 @@ +define Device/glinet_ar300m_nand + ATH_SOC := qca9533 + 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 sysupgrade.tar + IMAGE/sysupgrade.tar := sysupgrade-tar + IMAGE/factory.ubi := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi +endef +TARGET_DEVICES += glinet_ar300m_nand |