Message ID | 20250404075136.385270-1-mikko.rapeli@linaro.org |
---|---|
State | New |
Headers | show |
Series | u-boot: set git repo branch with SRCBRANCH | expand |
diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc index fc860248ed..9e96c46b74 100644 --- a/meta/recipes-bsp/u-boot/u-boot-common.inc +++ b/meta/recipes-bsp/u-boot/u-boot-common.inc @@ -13,8 +13,8 @@ PE = "1" # We use the revision in order to avoid having to fetch it from the # repo during parse SRCREV = "6d41f0a39d6423c8e57e92ebbe9f8c0333a63f72" - -SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master" +SRCBRANCH ?= "master" +SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=${SRCBRANCH}" S = "${WORKDIR}/git" B = "${WORKDIR}/build"
Enables changing branch from "master" to "next" when building bleeding edge upstream versions for testing purposes. Now local.conf setup to build latest "next" version becomes: INHERIT += "poky-bleeding" POKY_AUTOREV_RECIPES += "u-boot" SRCBRANCH:pn-u-boot = "next" Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> --- meta/recipes-bsp/u-boot/u-boot-common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)