diff options
author | Mark Hatle <mark.hatle@kernel.crashing.org> | 2021-01-28 18:54:45 -0600 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2021-03-05 10:11:04 -0800 |
commit | b1984a992fbbc93518bb778bd664abeeaa0bd0bd (patch) | |
tree | 7f7c7818a503400f0816d869a2e5dae7c8707d4d | |
parent | ef8660ea7db3b5ba4bedfb22dd10b9774847d4f9 (diff) | |
download | meta-xilinx-b1984a992fbbc93518bb778bd664abeeaa0bd0bd.tar.gz |
embeddedsw: Sync with meta-xilinx-tools
Change the order of embeddedsw and some of the variables used to allow
bbappending from meta-xilinx-tools
Add Description and Provide from meta-xilinx-tools versions.
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
4 files changed, 36 insertions, 18 deletions
diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/embeddedsw.inc b/meta-xilinx-standalone/recipes-bsp/embeddedsw/embeddedsw.inc index 79c1a5f4..d7cd3c3f 100644 --- a/meta-xilinx-standalone/recipes-bsp/embeddedsw/embeddedsw.inc +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/embeddedsw.inc | |||
@@ -1,26 +1,30 @@ | |||
1 | # Automatically determnine the version from the bb file | 1 | # Automatically determnine the version from the bb file |
2 | SRC_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master'}" | 2 | ESW_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master'}" |
3 | 3 | ||
4 | LICENSE = "Proprietary" | 4 | REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" |
5 | |||
6 | ESW_BRANCH[2019.1] = "release-2019.1" | ||
7 | ESW_BRANCH[2019.2] = "release-2019.2" | ||
8 | ESW_BRANCH[2020.1] = "release-2020.1" | ||
9 | ESW_BRANCH[2020.2] = "master-rel-2020.2" | ||
10 | BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" | ||
11 | |||
12 | ESW_REV[2019.1] = "26c14d9861010a0e3a55c73fb79efdb816eb42ca" | ||
13 | ESW_REV[2019.2] = "e8db5fb118229fdc621e0ec7848641a23bf60998" | ||
14 | ESW_REV[2020.1] = "338150ab3628a1ea6b06e964b16e712b131882dd" | ||
15 | ESW_REV[2020.2] = "2516d5ed8161e16c2813b0e8e4ceac693f23de5c" | ||
16 | SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" | ||
17 | |||
18 | EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" | ||
19 | EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" | ||
20 | |||
21 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM[2019.1] = 'e9b6d01d45faccfbf05d8caea53f0a35' | 22 | LIC_FILES_CHKSUM[2019.1] = 'e9b6d01d45faccfbf05d8caea53f0a35' |
6 | LIC_FILES_CHKSUM[2019.2] = '39ab6ab638f4d1836ba994ec6852de94' | 23 | LIC_FILES_CHKSUM[2019.2] = '39ab6ab638f4d1836ba994ec6852de94' |
7 | LIC_FILES_CHKSUM[2020.1] = '8b565227e1264d677db8f841c2948cba' | 24 | LIC_FILES_CHKSUM[2020.1] = '8b565227e1264d677db8f841c2948cba' |
8 | LIC_FILES_CHKSUM[2020.2] = '3a6e22aebf6516f0f74a82e1183f74f8' | 25 | LIC_FILES_CHKSUM[2020.2] = '3a6e22aebf6516f0f74a82e1183f74f8' |
9 | LIC_FILES_CHKSUM[master] = '3a6e22aebf6516f0f74a82e1183f74f8' | 26 | LIC_FILES_CHKSUM[master] = '3a6e22aebf6516f0f74a82e1183f74f8' |
10 | LIC_FILES_CHKSUM = "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('SRC_VER')) or '0'}" | 27 | LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('ESW_VER')) or '0'}" |
11 | |||
12 | SRCREV[2019.1] = "26c14d9861010a0e3a55c73fb79efdb816eb42ca" | ||
13 | SRCREV[2019.2] = "e8db5fb118229fdc621e0ec7848641a23bf60998" | ||
14 | SRCREV[2020.1] = "338150ab3628a1ea6b06e964b16e712b131882dd" | ||
15 | SRCREV[2020.2] = "2516d5ed8161e16c2813b0e8e4ceac693f23de5c" | ||
16 | SRCREV ?= "${@d.getVarFlag('SRCREV', d.getVar('SRC_VER')) or '${AUTOREV}'}" | ||
17 | |||
18 | PV = "${SRC_VER}+git${SRCPV}" | ||
19 | |||
20 | SRC_BRANCH[2019.1] = "release-2019.1" | ||
21 | SRC_BRANCH[2019.2] = "release-2019.2" | ||
22 | SRC_BRANCH[2020.1] = "release-2020.1" | ||
23 | SRC_BRANCH[2020.2] = "master-rel-2020.2" | ||
24 | SRC_BRANCH ?= "${@d.getVarFlag('SRC_BRANCH', d.getVar('SRC_VER')) or '${SRC_VER}'}" | ||
25 | 28 | ||
26 | SRC_URI = "git://github.com/Xilinx/embeddedsw.git;protocol=https;branch=${SRC_BRANCH}" | 29 | SRC_URI = "${EMBEDDEDSW_SRCURI}" |
30 | PV = "${ESW_VER}+git${SRCPV}" | ||
diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware.inc b/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware.inc index 5a77e3de..79d6791c 100644 --- a/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware.inc +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware.inc | |||
@@ -1,3 +1,8 @@ | |||
1 | DESCRIPTION = "Platform Loader and Manager" | ||
2 | SUMMARY = "Platform Loader and Manager for Versal devices" | ||
3 | |||
4 | PROVIDES = "virtual/plm" | ||
5 | |||
1 | require embeddedsw.inc | 6 | require embeddedsw.inc |
2 | 7 | ||
3 | inherit deploy | 8 | inherit deploy |
diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware.inc b/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware.inc index 584809da..1e1c1e65 100644 --- a/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware.inc +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware.inc | |||
@@ -1,3 +1,7 @@ | |||
1 | DESCRIPTION = "PMU Firmware" | ||
2 | |||
3 | PROVIDES = "virtual/pmu-firmware" | ||
4 | |||
1 | require embeddedsw.inc | 5 | require embeddedsw.inc |
2 | 6 | ||
3 | SRC_URI += "file://fix-zynqmp-assert.patch" | 7 | SRC_URI += "file://fix-zynqmp-assert.patch" |
diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware.inc b/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware.inc index 344bfca0..f6f7590d 100644 --- a/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware.inc +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware.inc | |||
@@ -1,3 +1,8 @@ | |||
1 | ESCRIPTION = "PSM Firmware" | ||
2 | SUMMARY = "PSM firmware for versal devices" | ||
3 | |||
4 | PROVIDES = "virtual/psm-firmware" | ||
5 | |||
1 | require embeddedsw.inc | 6 | require embeddedsw.inc |
2 | 7 | ||
3 | inherit deploy | 8 | inherit deploy |