meta-digi: get rid of LOG git mirror

As that's an old VM with limited specs, there is no much gain on using
it over the canonical Stash repositories that justifies the code
overhead and the possible errors due to synchronization problems.

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2022-08-11 12:23:17 +02:00
parent cea7ab0501
commit fecc12fa0b
3 changed files with 6 additions and 18 deletions

View File

@ -42,9 +42,6 @@ DIGI_OPEN_EULA_FILE = "${LAYERDIR}/DIGI_OPEN_EULA"
# Additional license directories # Additional license directories
LICENSE_PATH += "${LAYERDIR}/custom-licenses" LICENSE_PATH += "${LAYERDIR}/custom-licenses"
DIGI_LOG_GIT ?= "git://log-sln-git.digi.com"
DIGI_MTK_GIT ?= "git://stash.digi.com" DIGI_MTK_GIT ?= "git://stash.digi.com"
DIGI_GIT ?= "${DIGI_LOG_GIT}"
DIGI_PKG_SRC ?= "https://ftp1.digi.com/support/digiembeddedyocto/source" DIGI_PKG_SRC ?= "https://ftp1.digi.com/support/digiembeddedyocto/source"
DIGI_GITHUB_GIT ?= "git://github.com/digi-embedded" DIGI_GITHUB_GIT ?= "git://github.com/digi-embedded"

View File

@ -15,18 +15,12 @@ PROVIDES += "u-boot"
S = "${WORKDIR}/git" S = "${WORKDIR}/git"
# Select internal or Github U-Boot repo # Select internal or Github U-Boot repo
DIGI_LOG_REPO = "u-boot-denx.git" UBOOT_URI_STASH = "${DIGI_MTK_GIT}/uboot/u-boot-denx.git;protocol=ssh"
DIGI_MTK_REPO = "uboot/u-boot-denx.git" UBOOT_URI_GITHUB = "${DIGI_GITHUB_GIT}/u-boot.git;protocol=https"
GITHUB_REPO = "u-boot.git" UBOOT_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , '${UBOOT_URI_STASH}', '${UBOOT_URI_GITHUB}', d)}"
UBOOT_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , \
oe.utils.conditional('DIGI_GIT', '${DIGI_LOG_GIT}', '${DIGI_GIT}/${DIGI_LOG_REPO}', '${DIGI_GIT}/${DIGI_MTK_REPO};protocol=ssh', d), \
'${DIGI_GITHUB_GIT}/${GITHUB_REPO};protocol=https', d)}"
SRC_URI = " \ SRC_URI = " \
${UBOOT_GIT_URI};branch=${SRCBRANCH} \ ${UBOOT_GIT_URI};branch=${SRCBRANCH} \
"
SRC_URI:append = " \
file://boot.txt \ file://boot.txt \
file://install_linux_fw_sd.txt \ file://install_linux_fw_sd.txt \
file://install_linux_fw_usb.txt \ file://install_linux_fw_usb.txt \

View File

@ -13,12 +13,9 @@ SRCREV = "${AUTOREV}"
S = "${WORKDIR}" S = "${WORKDIR}"
# Select internal or Github U-Boot repo # Select internal or Github U-Boot repo
DIGI_LOG_REPO = "u-boot-denx.git" UBOOT_URI_STASH = "${DIGI_MTK_GIT}/uboot/u-boot-denx.git;protocol=ssh"
DIGI_MTK_REPO = "uboot/u-boot-denx.git" UBOOT_URI_GITHUB = "${DIGI_GITHUB_GIT}/u-boot.git;protocol=https"
GITHUB_REPO = "u-boot.git" UBOOT_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , '${UBOOT_URI_STASH}', '${UBOOT_URI_GITHUB}', d)}"
UBOOT_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , \
oe.utils.conditional('DIGI_GIT', '${DIGI_LOG_GIT}', '${DIGI_GIT}/${DIGI_LOG_REPO}', '${DIGI_GIT}/${DIGI_MTK_REPO};protocol=ssh', d), \
'${DIGI_GITHUB_GIT}/${GITHUB_REPO};protocol=https', d)}"
SRC_URI = " \ SRC_URI = " \
${UBOOT_GIT_URI};branch=${SRCBRANCH} \ ${UBOOT_GIT_URI};branch=${SRCBRANCH} \