diff options
author | He Zhe <zhe.he@windriver.com> | 2022-01-11 11:16:16 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-12 21:09:01 +0000 |
commit | 72039934f5bd1fce64f752b8bca664c84791e18c (patch) | |
tree | b5f66e9a85f88f6dcae65e718e4be784a7ac0047 | |
parent | 020b3b89d53db3b89785aab455bfdc0933d7c10d (diff) | |
download | poky-72039934f5bd1fce64f752b8bca664c84791e18c.tar.gz |
linux-yocto-dev: Set KBRANCH with =
The "?=" assignment to KBRANCH in kernel-yocto.bbclass is selected prior to
the one in this recipe and makes it "master" as a result.
Change the KBRANCH assignment back to "=" as how it was done before.
(From OE-Core rev: c7a1004c7f7e86506ccd7d6d40f148931096461a)
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-dev.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-dev.bb b/meta/recipes-kernel/linux/linux-yocto-dev.bb index 80f62a0412..0d94637352 100644 --- a/meta/recipes-kernel/linux/linux-yocto-dev.bb +++ b/meta/recipes-kernel/linux/linux-yocto-dev.bb | |||
@@ -16,7 +16,7 @@ inherit pkgconfig | |||
16 | # provide this .inc to set specific revisions | 16 | # provide this .inc to set specific revisions |
17 | include recipes-kernel/linux/linux-yocto-dev-revisions.inc | 17 | include recipes-kernel/linux/linux-yocto-dev-revisions.inc |
18 | 18 | ||
19 | KBRANCH ?= "v5.16/standard/base" | 19 | KBRANCH = "v5.16/standard/base" |
20 | KMETA = "kernel-meta" | 20 | KMETA = "kernel-meta" |
21 | 21 | ||
22 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-dev.git;branch=${KBRANCH};name=machine \ | 22 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-dev.git;branch=${KBRANCH};name=machine \ |