diff options
author | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2020-08-18 17:21:48 -0700 |
---|---|---|
committer | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2020-09-08 11:12:37 -0700 |
commit | d864fbb38c71a2366a61dccb5171bd4bfc0d48bf (patch) | |
tree | b1ed7965e975d61cf9a9f4e2dd6372c3f841a783 | |
parent | ad5979dcd477a2a7f9ec905811b676a500a1b5ae (diff) | |
download | meta-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.bbclass | 9 |
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 |
8 | include conf/xilinx/esw-srcrev.inc | 8 | include conf/xilinx/esw-srcrev.inc |
9 | 9 | ||
10 | EMBEDDEDSW_SRCREV ?= "${AUTOREV}" | 10 | SRCREV ?= "${AUTOREV}" |
11 | SRCREV = "${EMBEDDEDSW_SRCREV}" | ||
12 | PV = "${XILINX_RELEASE_VERSION}+git${SRCPV}" | 11 | PV = "${XILINX_RELEASE_VERSION}+git${SRCPV}" |
13 | EMBEDDEDSW_REPO ?= "git://github.com/xilinx/embeddedsw.git;protocol=https" | 12 | REPO ?= "git://github.com/xilinx/embeddedsw.git;protocol=https" |
14 | EMBEDDEDSW_BRANCH ?= "master" | 13 | BRANCH ?= "master" |
15 | SRC_URI = "${EMBEDDEDSW_REPO};branch=${EMBEDDEDSW_BRANCH}" | 14 | SRC_URI = "${REPO};branch=${BRANCH}" |
16 | 15 | ||
17 | SRCREV_FORMAT = "src_decouple" | 16 | SRCREV_FORMAT = "src_decouple" |
18 | 17 | ||