treewide: add only one device when appending to TARGET_DEVICES

This will avoid some conflicts when doing a git rebase or merge,
specially when adding support to a new device.

Signed-off-by: Luis Araneda <luaraneda@gmail.com>
[drop brcm47xx changes which rename the images]
Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
Luis Araneda
2017-12-10 19:45:20 -03:00
committed by Mathias Kresin
parent 72051f7036
commit 575178e462
10 changed files with 216 additions and 50 deletions

View File

@@ -104,6 +104,7 @@ define Device/ventana
BLOCKSIZE := 128k
MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB
endef
TARGET_DEVICES += ventana
define Device/ventana-large
$(Device/ventana)
@@ -114,14 +115,12 @@ define Device/ventana-large
BLOCKSIZE := 256k
MKUBIFS_OPTS := -m $$(PAGESIZE) -e 248KiB
endef
TARGET_DEVICES += ventana-large
define Device/wandboard
DEVICE_TITLE := Wandboard Dual
DEVICE_DTS := imx6dl-wandboard
endef
TARGET_DEVICES += \
ventana ventana-large \
wandboard
TARGET_DEVICES += wandboard
$(eval $(call BuildImage))