summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>2020-08-18 17:21:48 -0700
committerSai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>2020-09-08 11:12:37 -0700
commitd864fbb38c71a2366a61dccb5171bd4bfc0d48bf (patch)
treeb1ed7965e975d61cf9a9f4e2dd6372c3f841a783
parentad5979dcd477a2a7f9ec905811b676a500a1b5ae (diff)
downloadmeta-xilinx-d864fbb38c71a2366a61dccb5171bd4bfc0d48bf.tar.gz
esw.bbclass: Use standard REPO, BRANCH variables
Use standard variables to set the BRANCH, SRCREV, REPO instead of EMBEDDEDSW_REPO, EMBEDDEDSW_SRCREV, EMBEDDEDSW_BRANCH variables Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
-rw-r--r--meta-xilinx-standalone/classes/esw.bbclass9
1 files changed, 4 insertions, 5 deletions
diff --git a/meta-xilinx-standalone/classes/esw.bbclass b/meta-xilinx-standalone/classes/esw.bbclass
index c5001491..565b3712 100644
--- a/meta-xilinx-standalone/classes/esw.bbclass
+++ b/meta-xilinx-standalone/classes/esw.bbclass
@@ -7,12 +7,11 @@ LIC_FILES_CHKSUM = "file://${S}/${LICFILENAME};md5=39ab6ab638f4d1836ba994ec6852d
7# We should move to an actual SRCREV eventually 7# We should move to an actual SRCREV eventually
8include conf/xilinx/esw-srcrev.inc 8include conf/xilinx/esw-srcrev.inc
9 9
10EMBEDDEDSW_SRCREV ?= "${AUTOREV}" 10SRCREV ?= "${AUTOREV}"
11SRCREV = "${EMBEDDEDSW_SRCREV}"
12PV = "${XILINX_RELEASE_VERSION}+git${SRCPV}" 11PV = "${XILINX_RELEASE_VERSION}+git${SRCPV}"
13EMBEDDEDSW_REPO ?= "git://github.com/xilinx/embeddedsw.git;protocol=https" 12REPO ?= "git://github.com/xilinx/embeddedsw.git;protocol=https"
14EMBEDDEDSW_BRANCH ?= "master" 13BRANCH ?= "master"
15SRC_URI = "${EMBEDDEDSW_REPO};branch=${EMBEDDEDSW_BRANCH}" 14SRC_URI = "${REPO};branch=${BRANCH}"
16 15
17SRCREV_FORMAT = "src_decouple" 16SRCREV_FORMAT = "src_decouple"
18 17