diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-05-23 03:17:00 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-05-23 13:39:49 +0200 |
commit | c5ff273d85f69981e5b126eeaed3dee5b4061fb4 (patch) | |
tree | 0dc65f2d488c372127d0925c9f048404b1c144da /target/linux/ar71xx/image | |
parent | ce63c38ef5f2c049d739fbcc8d9b3f12f3bac206 (diff) | |
download | upstream-c5ff273d85f69981e5b126eeaed3dee5b4061fb4.tar.gz upstream-c5ff273d85f69981e5b126eeaed3dee5b4061fb4.tar.bz2 upstream-c5ff273d85f69981e5b126eeaed3dee5b4061fb4.zip |
ar71xx/cpe510: split profile into 2 profiles cpe210 and cpe510
Split profile into 2GHz and 5GHz. The 5GHz devices are
quite "special". The 2 GHz works perfect.
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'target/linux/ar71xx/image')
-rw-r--r-- | target/linux/ar71xx/image/tp-link.mk | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/target/linux/ar71xx/image/tp-link.mk b/target/linux/ar71xx/image/tp-link.mk index bcaa4ba10e..a3af519efe 100644 --- a/target/linux/ar71xx/image/tp-link.mk +++ b/target/linux/ar71xx/image/tp-link.mk @@ -97,18 +97,24 @@ $(Device/tplink) IMAGE_SIZE := 15872k endef -define Device/cpe210-220-510-520 +define Device/cpe210-220 MTDPARTS := spi0.0:128k(u-boot)ro,64k(pation-table)ro,64k(product-info)ro,1536k(kernel),6144k(rootfs),192k(config)ro,64k(ART)ro,7680k@0x40000(firmware) IMAGE_SIZE := 7680k - BOARDNAME := CPE510 + BOARDNAME := CPE210 TPLINK_BOARD_NAME := CPE510 + DEVICE_PROFILE := CPE510 LOADER_TYPE := elf KERNEL := kernel-bin | patch-cmdline | lzma | loader-kernel IMAGES := sysupgrade.bin factory.bin IMAGE/sysupgrade.bin := append-rootfs | tplink-safeloader sysupgrade IMAGE/factory.bin := append-rootfs | tplink-safeloader factory endef -TARGET_DEVICES += cpe210-220-510-520 + +define Device/cpe510-520 +$(Device/cpe210-220) + BOARDNAME := CPE510 +endef +TARGET_DEVICES += cpe210-220 cpe510-520 define Device/tl-wdr4300-v1 $(Device/tplink-8mlzma) |