diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2018-06-20 16:21:07 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-06-26 07:05:30 +0200 |
commit | 51dd8ec62ffc570dd932cc3fb5d5c9b1bb756349 (patch) | |
tree | 6dab903b08a8758c73fd4e2494b827e188e2e391 /target/linux/ath79/image/tiny-netgear.mk | |
parent | 97da92b1277a40fa7daf354ed52b8ea25e06a779 (diff) | |
download | upstream-51dd8ec62ffc570dd932cc3fb5d5c9b1bb756349.tar.gz upstream-51dd8ec62ffc570dd932cc3fb5d5c9b1bb756349.tar.bz2 upstream-51dd8ec62ffc570dd932cc3fb5d5c9b1bb756349.zip |
ath79: add Netgear WNR612 v2
Netgear WNR612 v2:
- cpu Atheros AR7240 (Python) @400MHz
- flash 4MB
- ram 32MB
- ethernet 10/100: 1xwan + 2xlan (only two)
- radio AR9285
As there is a rebranded WNR612v2 called ON Networks N150R, add
a dtsi which includes all device support, and add a separate dts
for the device only (with a separate one for the subsequent N150R).
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
Diffstat (limited to 'target/linux/ath79/image/tiny-netgear.mk')
-rw-r--r-- | target/linux/ath79/image/tiny-netgear.mk | 19 |
1 files changed, 19 insertions, 0 deletions
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 |