diff options
Diffstat (limited to 'target/linux/ath79/image')
-rw-r--r-- | target/linux/ath79/image/Makefile | 1 | ||||
-rw-r--r-- | target/linux/ath79/image/tiny-netgear.mk | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/ath79/image/Makefile b/target/linux/ath79/image/Makefile index f4c0c1e3a5..15f4c1883a 100644 --- a/target/linux/ath79/image/Makefile +++ b/target/linux/ath79/image/Makefile @@ -75,6 +75,7 @@ ifeq ($(SUBTARGET),nand) include ./nand.mk endif ifeq ($(SUBTARGET),tiny) +include ./tiny-netgear.mk include ./tiny-tp-link.mk endif $(eval $(call BuildImage)) diff --git a/target/linux/ath79/image/tiny-netgear.mk b/target/linux/ath79/image/tiny-netgear.mk new file mode 100644 index 0000000000..81f83fd073 --- /dev/null +++ b/target/linux/ath79/image/tiny-netgear.mk @@ -0,0 +1,19 @@ +include ./common-netgear.mk + + +define Device/netgear_wnr612-v2 + ATH_SOC := ar7240 + DEVICE_TITLE := Netgear WNR612v2 + DEVICE_DTS := ar7240_netgear_wnr612-v2 + NETGEAR_KERNEL_MAGIC := 0x32303631 + KERNEL := kernel-bin | append-dtb | lzma -d20 | netgear-uImage lzma + KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma -d20 | netgear-uImage lzma + NETGEAR_BOARD_ID := REALWNR612V2 + IMAGE_SIZE := 3904k + IMAGES := sysupgrade.bin factory.img + IMAGE/default := append-kernel | pad-to $$$$(BLOCKSIZE) | netgear-squashfs | append-rootfs | pad-rootfs + IMAGE/sysupgrade.bin := $$(IMAGE/default) | append-metadata | check-size $$$$(IMAGE_SIZE) + IMAGE/factory.img := $$(IMAGE/default) | netgear-dni | check-size $$$$(IMAGE_SIZE) + SUPPORTED_DEVICES := netgear,wnr612-v2 wnr612-v2 +endef +TARGET_DEVICES += netgear_wnr612-v2 |