From c9fb56629a7108d2d97581cdd17e1a4ec7027c75 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Mon, 17 Apr 2023 13:05:37 +0200 Subject: [PATCH] cryptoauthlib: use digi-embedded github mirror The commit we use to build the cryotpauthlib package is currently not part of any branches or tags in the original MicrochipTech repo. To make sure the package can always be built, use our mirror of the repo, which includes an additional branch for the specific commit. While at it, move the "nobranch=1" parameter to the GIT_URI variable, since we're putting all other git parameters there, anyway. Also, remove the "branch" parameter because it isn't needed in this case. https://onedigi.atlassian.net/browse/DEL-8015 Signed-off-by: Gabriel Valcazar --- meta-digi-arm/recipes-digi/cryptoauthlib/cryptoauthlib_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-digi-arm/recipes-digi/cryptoauthlib/cryptoauthlib_git.bb b/meta-digi-arm/recipes-digi/cryptoauthlib/cryptoauthlib_git.bb index 0567b41f6..ba76662dd 100644 --- a/meta-digi-arm/recipes-digi/cryptoauthlib/cryptoauthlib_git.bb +++ b/meta-digi-arm/recipes-digi/cryptoauthlib/cryptoauthlib_git.bb @@ -7,10 +7,10 @@ LIC_FILES_CHKSUM = "file://license.txt;md5=84f2905dc39d2f8cdffb00af6f9e6d4e" SRCREV = "a0007d2f6c42fddab5dca1575e0f404788829ddc" -GIT_URI ?= "git://github.com/MicrochipTech/cryptoauthlib.git;protocol=https;branch=master" +GIT_URI ?= "git://github.com/digi-embedded/cryptoauthlib.git;protocol=https;nobranch=1" SRC_URI = " \ - ${GIT_URI};nobranch=1 \ + ${GIT_URI} \ file://0001-lib-add-parameters-to-be-able-to-modify-default-I2C-.patch \ file://0002-lib-apply-library-version-number-to-CMake-VERSION-pr.patch \ file://0003-pkcs11-rename-template-configuration-file-to-its-int.patch \