16 lines
470 B
Plaintext
16 lines
470 B
Plaintext
#
|
|
# Copyright (C) 2022 Digi International Inc.
|
|
#
|
|
|
|
# Select internal or Github TF-A repo
|
|
TFA_URI_STASH = "${DIGI_MTK_GIT}/emp/arm-trusted-firmware.git;protocol=ssh"
|
|
TFA_URI_GITHUB = "${DIGI_GITHUB_GIT}/arm-trusted-firmware.git;protocol=https"
|
|
TFA_GIT_URI ?= "${@oe.utils.conditional('DIGI_INTERNAL_GIT', '1' , '${TFA_URI_STASH}', '${TFA_URI_GITHUB}', d)}"
|
|
|
|
SRCBRANCH = "v2.6/stm32mp/master"
|
|
SRCREV = "${AUTOREV}"
|
|
|
|
SRC_URI = " \
|
|
${TFA_GIT_URI};branch=${SRCBRANCH} \
|
|
"
|