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:
parent
cea7ab0501
commit
fecc12fa0b
|
|
@ -42,9 +42,6 @@ DIGI_OPEN_EULA_FILE = "${LAYERDIR}/DIGI_OPEN_EULA"
|
|||
# Additional license directories
|
||||
LICENSE_PATH += "${LAYERDIR}/custom-licenses"
|
||||
|
||||
DIGI_LOG_GIT ?= "git://log-sln-git.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_GITHUB_GIT ?= "git://github.com/digi-embedded"
|
||||
|
|
|
|||
|
|
@ -15,18 +15,12 @@ PROVIDES += "u-boot"
|
|||
S = "${WORKDIR}/git"
|
||||
|
||||
# Select internal or Github U-Boot repo
|
||||
DIGI_LOG_REPO = "u-boot-denx.git"
|
||||
DIGI_MTK_REPO = "uboot/u-boot-denx.git"
|
||||
GITHUB_REPO = "u-boot.git"
|
||||
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)}"
|
||||
UBOOT_URI_STASH = "${DIGI_MTK_GIT}/uboot/u-boot-denx.git;protocol=ssh"
|
||||
UBOOT_URI_GITHUB = "${DIGI_GITHUB_GIT}/u-boot.git;protocol=https"
|
||||
UBOOT_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , '${UBOOT_URI_STASH}', '${UBOOT_URI_GITHUB}', d)}"
|
||||
|
||||
SRC_URI = " \
|
||||
${UBOOT_GIT_URI};branch=${SRCBRANCH} \
|
||||
"
|
||||
|
||||
SRC_URI:append = " \
|
||||
file://boot.txt \
|
||||
file://install_linux_fw_sd.txt \
|
||||
file://install_linux_fw_usb.txt \
|
||||
|
|
|
|||
|
|
@ -13,12 +13,9 @@ SRCREV = "${AUTOREV}"
|
|||
S = "${WORKDIR}"
|
||||
|
||||
# Select internal or Github U-Boot repo
|
||||
DIGI_LOG_REPO = "u-boot-denx.git"
|
||||
DIGI_MTK_REPO = "uboot/u-boot-denx.git"
|
||||
GITHUB_REPO = "u-boot.git"
|
||||
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)}"
|
||||
UBOOT_URI_STASH = "${DIGI_MTK_GIT}/uboot/u-boot-denx.git;protocol=ssh"
|
||||
UBOOT_URI_GITHUB = "${DIGI_GITHUB_GIT}/u-boot.git;protocol=https"
|
||||
UBOOT_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , '${UBOOT_URI_STASH}', '${UBOOT_URI_GITHUB}', d)}"
|
||||
|
||||
SRC_URI = " \
|
||||
${UBOOT_GIT_URI};branch=${SRCBRANCH} \
|
||||
|
|
|
|||
Loading…
Reference in New Issue