From d864fbb38c71a2366a61dccb5171bd4bfc0d48bf Mon Sep 17 00:00:00 2001 From: Sai Hari Chandana Kalluri Date: Tue, 18 Aug 2020 17:21:48 -0700 Subject: 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 --- meta-xilinx-standalone/classes/esw.bbclass | 9 ++++----- 1 file 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 # We should move to an actual SRCREV eventually include conf/xilinx/esw-srcrev.inc -EMBEDDEDSW_SRCREV ?= "${AUTOREV}" -SRCREV = "${EMBEDDEDSW_SRCREV}" +SRCREV ?= "${AUTOREV}" PV = "${XILINX_RELEASE_VERSION}+git${SRCPV}" -EMBEDDEDSW_REPO ?= "git://github.com/xilinx/embeddedsw.git;protocol=https" -EMBEDDEDSW_BRANCH ?= "master" -SRC_URI = "${EMBEDDEDSW_REPO};branch=${EMBEDDEDSW_BRANCH}" +REPO ?= "git://github.com/xilinx/embeddedsw.git;protocol=https" +BRANCH ?= "master" +SRC_URI = "${REPO};branch=${BRANCH}" SRCREV_FORMAT = "src_decouple" -- cgit v1.2.3-54-g00ecf