aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2016-05-29 02:02:19 +0200
committerJohn Crispin <john@phrozen.org>2016-05-27 15:55:06 +0200
commitb7864453f6df9e7f4c927eaea04fdd64fa40abdc (patch)
tree455ada4f90f7157f54349000942474c0230e1900 /target
parentb232669d4556f5ab97f97664909a263d260a6833 (diff)
downloadupstream-b7864453f6df9e7f4c927eaea04fdd64fa40abdc.tar.gz
upstream-b7864453f6df9e7f4c927eaea04fdd64fa40abdc.tar.bz2
upstream-b7864453f6df9e7f4c927eaea04fdd64fa40abdc.zip
ar71xx: switch ordering and template to improve readability
The CPE210's ancestor is the CPE510 not the other way around. The device profile is also named after the CPE510. Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/image/tp-link.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/ar71xx/image/tp-link.mk b/target/linux/ar71xx/image/tp-link.mk
index 145fa0f0cd..140123a4d8 100644
--- a/target/linux/ar71xx/image/tp-link.mk
+++ b/target/linux/ar71xx/image/tp-link.mk
@@ -85,10 +85,10 @@ $(Device/tplink)
IMAGE_SIZE := 15872k
endef
-define Device/cpe210-220
+define Device/cpe510-520
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 := CPE210
+ BOARDNAME := CPE510
TPLINK_BOARD_NAME := CPE510
DEVICE_PROFILE := CPE510
LOADER_TYPE := elf
@@ -98,9 +98,9 @@ define Device/cpe210-220
IMAGE/factory.bin := append-rootfs | tplink-safeloader factory
endef
-define Device/cpe510-520
-$(Device/cpe210-220)
- BOARDNAME := CPE510
+define Device/cpe210-220
+$(Device/cpe510-520)
+ BOARDNAME := CPE210
endef
TARGET_DEVICES += cpe210-220 cpe510-520
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243