From a878f3c93df3b1dc9b3d8e9620a6245cc6ae2395 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Thu, 29 Jun 2023 21:47:07 +0200 Subject: [PATCH] rkbin-tools: allow using custom rkbin `RKBIN_GIT_BRANCH` as well as `RKBIN_GIT_URL` - notice: the rkbin repo or the bins themselves are not hashed or included in the u-boot version (yet) - make sure to avoid caching when building with those custom git/branch (`ARTIFACT_IGNORE_CACHE=yes CLEAN_LEVEL=make-uboot`) --- extensions/rkbin-tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/rkbin-tools.sh b/extensions/rkbin-tools.sh index bf6e52da240f..b60dde0d5be6 100644 --- a/extensions/rkbin-tools.sh +++ b/extensions/rkbin-tools.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash function fetch_sources_tools__rkbin_tools() { - fetch_from_repo "${RKBIN_GIT_URL:-"https://github.com/armbian/rkbin"}" "rkbin-tools" "branch:master" + fetch_from_repo "${RKBIN_GIT_URL:-"https://github.com/armbian/rkbin"}" "rkbin-tools" "branch:${RKBIN_GIT_BRANCH:-"master"}" } function build_host_tools__install_rkbin_tools() {