summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@kernel.crashing.org>2021-01-28 18:54:45 -0600
committerMark Hatle <mark.hatle@xilinx.com>2021-03-05 10:11:04 -0800
commitb1984a992fbbc93518bb778bd664abeeaa0bd0bd (patch)
tree7f7c7818a503400f0816d869a2e5dae7c8707d4d
parentef8660ea7db3b5ba4bedfb22dd10b9774847d4f9 (diff)
downloadmeta-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>
-rw-r--r--meta-xilinx-standalone/recipes-bsp/embeddedsw/embeddedsw.inc40
-rw-r--r--meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware.inc5
-rw-r--r--meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware.inc4
-rw-r--r--meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware.inc5
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
2SRC_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master'}" 2ESW_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master'}"
3 3
4LICENSE = "Proprietary" 4REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https"
5
6ESW_BRANCH[2019.1] = "release-2019.1"
7ESW_BRANCH[2019.2] = "release-2019.2"
8ESW_BRANCH[2020.1] = "release-2020.1"
9ESW_BRANCH[2020.2] = "master-rel-2020.2"
10BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}"
11
12ESW_REV[2019.1] = "26c14d9861010a0e3a55c73fb79efdb816eb42ca"
13ESW_REV[2019.2] = "e8db5fb118229fdc621e0ec7848641a23bf60998"
14ESW_REV[2020.1] = "338150ab3628a1ea6b06e964b16e712b131882dd"
15ESW_REV[2020.2] = "2516d5ed8161e16c2813b0e8e4ceac693f23de5c"
16SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}"
17
18EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}"
19EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}"
20
21LICENSE = "MIT"
5LIC_FILES_CHKSUM[2019.1] = 'e9b6d01d45faccfbf05d8caea53f0a35' 22LIC_FILES_CHKSUM[2019.1] = 'e9b6d01d45faccfbf05d8caea53f0a35'
6LIC_FILES_CHKSUM[2019.2] = '39ab6ab638f4d1836ba994ec6852de94' 23LIC_FILES_CHKSUM[2019.2] = '39ab6ab638f4d1836ba994ec6852de94'
7LIC_FILES_CHKSUM[2020.1] = '8b565227e1264d677db8f841c2948cba' 24LIC_FILES_CHKSUM[2020.1] = '8b565227e1264d677db8f841c2948cba'
8LIC_FILES_CHKSUM[2020.2] = '3a6e22aebf6516f0f74a82e1183f74f8' 25LIC_FILES_CHKSUM[2020.2] = '3a6e22aebf6516f0f74a82e1183f74f8'
9LIC_FILES_CHKSUM[master] = '3a6e22aebf6516f0f74a82e1183f74f8' 26LIC_FILES_CHKSUM[master] = '3a6e22aebf6516f0f74a82e1183f74f8'
10LIC_FILES_CHKSUM = "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('SRC_VER')) or '0'}" 27LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('ESW_VER')) or '0'}"
11
12SRCREV[2019.1] = "26c14d9861010a0e3a55c73fb79efdb816eb42ca"
13SRCREV[2019.2] = "e8db5fb118229fdc621e0ec7848641a23bf60998"
14SRCREV[2020.1] = "338150ab3628a1ea6b06e964b16e712b131882dd"
15SRCREV[2020.2] = "2516d5ed8161e16c2813b0e8e4ceac693f23de5c"
16SRCREV ?= "${@d.getVarFlag('SRCREV', d.getVar('SRC_VER')) or '${AUTOREV}'}"
17
18PV = "${SRC_VER}+git${SRCPV}"
19
20SRC_BRANCH[2019.1] = "release-2019.1"
21SRC_BRANCH[2019.2] = "release-2019.2"
22SRC_BRANCH[2020.1] = "release-2020.1"
23SRC_BRANCH[2020.2] = "master-rel-2020.2"
24SRC_BRANCH ?= "${@d.getVarFlag('SRC_BRANCH', d.getVar('SRC_VER')) or '${SRC_VER}'}"
25 28
26SRC_URI = "git://github.com/Xilinx/embeddedsw.git;protocol=https;branch=${SRC_BRANCH}" 29SRC_URI = "${EMBEDDEDSW_SRCURI}"
30PV = "${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 @@
1DESCRIPTION = "Platform Loader and Manager"
2SUMMARY = "Platform Loader and Manager for Versal devices"
3
4PROVIDES = "virtual/plm"
5
1require embeddedsw.inc 6require embeddedsw.inc
2 7
3inherit deploy 8inherit 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 @@
1DESCRIPTION = "PMU Firmware"
2
3PROVIDES = "virtual/pmu-firmware"
4
1require embeddedsw.inc 5require embeddedsw.inc
2 6
3SRC_URI += "file://fix-zynqmp-assert.patch" 7SRC_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 @@
1ESCRIPTION = "PSM Firmware"
2SUMMARY = "PSM firmware for versal devices"
3
4PROVIDES = "virtual/psm-firmware"
5
1require embeddedsw.inc 6require embeddedsw.inc
2 7
3inherit deploy 8inherit deploy