summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux
diff options
context:
space:
mode:
authorPaul Barker <paul@pbarker.dev>2021-07-20 23:21:37 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-22 09:33:44 +0100
commita6edd6c76a959578abdab591fd6a5762a5f8df16 (patch)
treedda3727c786ce853431485e1035b6f385ff08435 /meta/recipes-kernel/linux
parent80780d5f2759bbfa052d079291c74e74a9e1d296 (diff)
downloadpoky-a6edd6c76a959578abdab591fd6a5762a5f8df16.tar.gz
linux-yocto: Fix devupstream SRCREV assignment
Fixes the following error when building linux-yocto-upstream: Fetcher failure: Unable to find revision 570e7aedcd00e7e8a218e37c3dfb3b1fda83d111 in branch v5.13/base even from upstream The error occurred as the SRCREV_machine assignment earlier in the recipe was being used instead of the mainline commit hash we want to use for linux-yocto-upstream. (From OE-Core rev: 0df7954d1ffe111337bd7d68f0cb09404906db85) Signed-off-by: Paul Barker <paul@pbarker.dev> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux')
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_5.13.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.13.bb b/meta/recipes-kernel/linux/linux-yocto_5.13.bb
index df385f912c..f43e738c69 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.13.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.13.bb
@@ -31,7 +31,7 @@ SRCREV_meta ?= "4dcaa4bcd042d398e210b702449dd35fdf9f0078"
31# normal PREFERRED_VERSION settings. 31# normal PREFERRED_VERSION settings.
32BBCLASSEXTEND = "devupstream:target" 32BBCLASSEXTEND = "devupstream:target"
33DEFAULT_PREFERENCE_class-devupstream = "-1" 33DEFAULT_PREFERENCE_class-devupstream = "-1"
34SRCREV_class-devupstream ?= "f86aa267e180b23d8d24ee6886bd3bf9a360112e" 34SRCREV_machine_class-devupstream ?= "f86aa267e180b23d8d24ee6886bd3bf9a360112e"
35PN_class-devupstream = "linux-yocto-upstream" 35PN_class-devupstream = "linux-yocto-upstream"
36KBRANCH_class-devupstream = "v5.13/base" 36KBRANCH_class-devupstream = "v5.13/base"
37 37