summaryrefslogtreecommitdiff
path: root/meta-aspeed/recipes-kernel
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2022-02-19 00:35:20 +0300
committerPatrick Williams <patrick@stwcx.xyz>2022-02-22 21:04:28 +0300
commit5bcabe9b20218265147970a188d73ef0803d5984 (patch)
treed73883033c51ea80818beeef8758429ccc170c6d /meta-aspeed/recipes-kernel
parent1a71b292c7f7eb1b84a1d7e87374df3ebcf03f98 (diff)
downloadopenbmc-5bcabe9b20218265147970a188d73ef0803d5984.tar.xz
meta-aspeed: linux-aspeed: fix SRC_URI to append
Modifications to the SRC_URI should be append rather than a set operation, so that they do not erase any changed to the SRC_URI that may have happened prior to the include file. Otherwise, it can ignore local patches being applied for testing, which can make for irate developers. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I9bd95352fa30bd0e8dfd89404d2ac0dbb4d78a3a
Diffstat (limited to 'meta-aspeed/recipes-kernel')
-rw-r--r--meta-aspeed/recipes-kernel/linux/linux-aspeed.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-aspeed/recipes-kernel/linux/linux-aspeed.inc b/meta-aspeed/recipes-kernel/linux/linux-aspeed.inc
index 0f3d5efc4b..76d96ff767 100644
--- a/meta-aspeed/recipes-kernel/linux/linux-aspeed.inc
+++ b/meta-aspeed/recipes-kernel/linux/linux-aspeed.inc
@@ -7,7 +7,7 @@ PROVIDES += "virtual/kernel"
KCONFIG_MODE="--alldefconfig"
KSRC ?= "git://github.com/openbmc/linux;protocol=https;branch=${KBRANCH}"
-SRC_URI = "${KSRC}"
+SRC_URI += "${KSRC}"
SRC_URI += " \
file://defconfig \
file://rsa_oem_fitimage_key.key;sha256sum=eeb4ff2ebbfbd97b6254fe6dbaeea41067e54c65176c233ec7b2ab2decf1ddcd \