diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2012-11-29 16:37:33 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-06 12:31:11 +0000 |
commit | d20c23db7c21990ec8e7d9a44e755d7fa4a627e8 (patch) | |
tree | 82e6e1ca7583d6e5d7ece19376d513fcf1727599 | |
parent | 35d630ec322e414da593bee8146e2688a2bd72f9 (diff) | |
download | poky-d20c23db7c21990ec8e7d9a44e755d7fa4a627e8.tar.gz |
linux-yocto/3.4: inform the fetcher if the meta branch changes
The meta data branch for the kernel can be varied by changing the
KMETA variable, but that change wasn't reflected in the SRC_URI,
which means that the fetcher won't check for changes on that branch
and is a potential source of errors.
Making the meta branch specification KMETA vs meta solves the problem.
(From OE-Core rev: 5bfc678aeb65b50710384e93b64add3a62146908)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_3.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb index 0e795c676c..91785f9089 100644 --- a/meta/recipes-kernel/linux/linux-yocto_3.4.bb +++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb | |||
@@ -11,7 +11,7 @@ SRCREV_machine_qemux86-64 ?= "b13bef6377719a488293af196236cc290566fad3" | |||
11 | SRCREV_machine ?= "b13bef6377719a488293af196236cc290566fad3" | 11 | SRCREV_machine ?= "b13bef6377719a488293af196236cc290566fad3" |
12 | SRCREV_meta ?= "6737e890fff2a423fbb022ab1f7f82ef187fd8b1" | 12 | SRCREV_meta ?= "6737e890fff2a423fbb022ab1f7f82ef187fd8b1" |
13 | 13 | ||
14 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta" | 14 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},${KMETA};name=machine,meta" |
15 | 15 | ||
16 | LINUX_VERSION ?= "3.4.20" | 16 | LINUX_VERSION ?= "3.4.20" |
17 | 17 | ||