diff options
author | Paul Barker <paul@pbarker.dev> | 2021-07-20 23:21:37 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-22 09:33:44 +0100 |
commit | a6edd6c76a959578abdab591fd6a5762a5f8df16 (patch) | |
tree | dda3727c786ce853431485e1035b6f385ff08435 /meta/recipes-kernel | |
parent | 80780d5f2759bbfa052d079291c74e74a9e1d296 (diff) | |
download | poky-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')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_5.13.bb | 2 |
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. |
32 | BBCLASSEXTEND = "devupstream:target" | 32 | BBCLASSEXTEND = "devupstream:target" |
33 | DEFAULT_PREFERENCE_class-devupstream = "-1" | 33 | DEFAULT_PREFERENCE_class-devupstream = "-1" |
34 | SRCREV_class-devupstream ?= "f86aa267e180b23d8d24ee6886bd3bf9a360112e" | 34 | SRCREV_machine_class-devupstream ?= "f86aa267e180b23d8d24ee6886bd3bf9a360112e" |
35 | PN_class-devupstream = "linux-yocto-upstream" | 35 | PN_class-devupstream = "linux-yocto-upstream" |
36 | KBRANCH_class-devupstream = "v5.13/base" | 36 | KBRANCH_class-devupstream = "v5.13/base" |
37 | 37 | ||