aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/zynq
diff options
context:
space:
mode:
authorLuis Araneda <luaraneda@gmail.com>2019-07-04 19:35:38 -0400
committerHauke Mehrtens <hauke@hauke-m.de>2019-07-08 16:28:47 +0200
commitc3253b52a2108874fb4992ff4c7b1e785bcb4258 (patch)
treed0687a0dee2db237f6b244cfdd9440856a75d549 /target/linux/zynq
parent42b3a3a89b6d60e10c6c266d29ebc779b7fee718 (diff)
downloadupstream-c3253b52a2108874fb4992ff4c7b1e785bcb4258.tar.gz
upstream-c3253b52a2108874fb4992ff4c7b1e785bcb4258.tar.bz2
upstream-c3253b52a2108874fb4992ff4c7b1e785bcb4258.zip
zynq: convert to multi-variable device title
Use the newly introduced variables to better differentiate between vendor, model and revision Signed-off-by: Luis Araneda <luaraneda@gmail.com>
Diffstat (limited to 'target/linux/zynq')
-rw-r--r--target/linux/zynq/image/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/target/linux/zynq/image/Makefile b/target/linux/zynq/image/Makefile
index 6e45d2bca4..39305a6d54 100644
--- a/target/linux/zynq/image/Makefile
+++ b/target/linux/zynq/image/Makefile
@@ -51,28 +51,32 @@ endef
define Device/avnet_zynq-zed
$(call Device/FitImageGzip)
- DEVICE_TITLE := Avnet ZedBoard
+ DEVICE_VENDOR := Avnet
+ DEVICE_MODEL := ZedBoard
DEVICE_DTS := zynq-zed
endef
TARGET_DEVICES += avnet_zynq-zed
define Device/digilent_zynq-zybo
$(call Device/FitImageGzip)
- DEVICE_TITLE := Digilent Zybo
+ DEVICE_VENDOR := Digilent
+ DEVICE_MODEL := Zybo
DEVICE_DTS := zynq-zybo
endef
TARGET_DEVICES += digilent_zynq-zybo
define Device/digilent_zynq-zybo-z7
$(call Device/FitImageGzip)
- DEVICE_TITLE := Digilent Zybo Z7
+ DEVICE_VENDOR := Digilent
+ DEVICE_MODEL := Zybo Z7
DEVICE_DTS := zynq-zybo-z7
endef
TARGET_DEVICES += digilent_zynq-zybo-z7
define Device/xlnx_zynq-zc702
$(call Device/FitImageGzip)
- DEVICE_TITLE := Xilinx ZC702
+ DEVICE_VENDOR := Xilinx
+ DEVICE_MODEL := ZC702
DEVICE_DTS := zynq-zc702
DEVICE_PACKAGES:=kmod-can kmod-can-xilinx-can
endef
4'>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