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:
parent
72051f7036
commit
575178e462
10 changed files with 216 additions and 50 deletions
|
@ -64,6 +64,7 @@ define Device/omega2
|
|||
DEVICE_TITLE := Onion Omega2
|
||||
DEVICE_PACKAGES:= kmod-usb2 kmod-usb-ohci uboot-envtools
|
||||
endef
|
||||
TARGET_DEVICES += omega2
|
||||
|
||||
define Device/omega2p
|
||||
DTS := OMEGA2P
|
||||
|
@ -71,7 +72,7 @@ define Device/omega2p
|
|||
DEVICE_TITLE := Onion Omega2+
|
||||
DEVICE_PACKAGES:= kmod-usb2 kmod-usb-ohci uboot-envtools kmod-sdhci-mt7620
|
||||
endef
|
||||
TARGET_DEVICES += omega2 omega2p
|
||||
TARGET_DEVICES += omega2p
|
||||
|
||||
define Device/pbr-d1
|
||||
DTS := PBR-D1
|
||||
|
@ -98,6 +99,7 @@ define Device/tl-wr840n-v4
|
|||
IMAGE/sysupgrade.bin := tplink-v2-image -s -e | append-metadata | \
|
||||
check-size $$$$(IMAGE_SIZE)
|
||||
endef
|
||||
TARGET_DEVICES += tl-wr840n-v4
|
||||
|
||||
define Device/tl-wr840n-v5
|
||||
DTS := TL-WR840NV5
|
||||
|
@ -113,6 +115,7 @@ define Device/tl-wr840n-v5
|
|||
IMAGE/sysupgrade.bin := tplink-v2-image -s -e | append-metadata | \
|
||||
check-size $$$$(IMAGE_SIZE)
|
||||
endef
|
||||
TARGET_DEVICES += tl-wr840n-v5
|
||||
|
||||
define Device/tl-wr841n-v13
|
||||
$(Device/tl-wr840n-v4)
|
||||
|
@ -122,7 +125,7 @@ define Device/tl-wr841n-v13
|
|||
TPLINK_HWREV := 0x268
|
||||
TPLINK_HWREVADD := 0x13
|
||||
endef
|
||||
TARGET_DEVICES += tl-wr840n-v4 tl-wr840n-v5 tl-wr841n-v13
|
||||
TARGET_DEVICES += tl-wr841n-v13
|
||||
|
||||
define Device/u7628-01-128M-16M
|
||||
DTS := U7628-01-128M-16M
|
||||
|
@ -139,6 +142,7 @@ define Device/vocore2
|
|||
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport \
|
||||
kmod-sdhci-mt7620
|
||||
endef
|
||||
TARGET_DEVICES += vocore2
|
||||
|
||||
define Device/vocore2lite
|
||||
DTS := VOCORE2LITE
|
||||
|
@ -147,7 +151,7 @@ define Device/vocore2lite
|
|||
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport \
|
||||
kmod-sdhci-mt7620
|
||||
endef
|
||||
TARGET_DEVICES += vocore2 vocore2lite
|
||||
TARGET_DEVICES += vocore2lite
|
||||
|
||||
define Device/wcr-1166ds
|
||||
DTS := WCR-1166DS
|
||||
|
@ -186,6 +190,7 @@ define Device/wrtnode2p
|
|||
DEVICE_TITLE := WRTnode 2P
|
||||
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport
|
||||
endef
|
||||
TARGET_DEVICES += wrtnode2p
|
||||
|
||||
define Device/wrtnode2r
|
||||
DTS := WRTNODE2R
|
||||
|
@ -193,4 +198,4 @@ define Device/wrtnode2r
|
|||
DEVICE_TITLE := WRTnode 2R
|
||||
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci
|
||||
endef
|
||||
TARGET_DEVICES += wrtnode2p wrtnode2r
|
||||
TARGET_DEVICES += wrtnode2r
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue