From b00450d8dd2d009ed1d99acaf38848aa205829ae Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Wed, 10 Aug 2022 18:03:52 +0200 Subject: [PATCH] linux-dey: get rid of LOG kernel mirror Use the canonical Stash repository to avoid synchronization problems between the repo and the mirror. Moreover the LOG mirror is hosted in an old VM machine with limited specs, and although the transfer of the objects is faster, the counting of the objects to transfer (which is done in the server) takes ages to complete, so at the end, there is no time gain using the mirror. Signed-off-by: Javier Viguera --- meta-digi-arm/recipes-kernel/linux/linux-dey-src.inc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/meta-digi-arm/recipes-kernel/linux/linux-dey-src.inc b/meta-digi-arm/recipes-kernel/linux/linux-dey-src.inc index 23172f3b6..877f3613c 100644 --- a/meta-digi-arm/recipes-kernel/linux/linux-dey-src.inc +++ b/meta-digi-arm/recipes-kernel/linux/linux-dey-src.inc @@ -4,15 +4,11 @@ LOCALVERSION = "-dey" SRCREV = "${AUTOREV}" # Select internal or Github Linux repo -DIGI_LOG_REPO = "linux-2.6.git" -DIGI_MTK_REPO = "linux/linux.git" -GITHUB_REPO = "linux.git" -LINUX_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)}" +LINUX_URI_STASH = "${DIGI_MTK_GIT}/linux/linux.git;protocol=ssh" +LINUX_URI_GITHUB = "${DIGI_GITHUB_GIT}/linux.git;protocol=https" +LINUX_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , '${LINUX_URI_STASH}', '${LINUX_URI_GITHUB}', d)}" SRC_URI = "${LINUX_GIT_URI};branch=${SRCBRANCH}" -SRC_URI_stmp32mpcommon = "${LINUX_GIT_URI};branch=${SRCBRANCH}" # A user can provide his own kernel 'defconfig' file by: # - setting the variable KERNEL_DEFCONFIG to a custom kernel configuration file