| Submitter | Bruce Ashfield |
|---|---|
| Date | Dec. 3, 2012, 8:49 p.m. |
| Message ID | <fb44f3ebdbc3f46c33f55cde955cc990cddcfc99.1354566708.git.bruce.ashfield@windriver.com> |
| Download | mbox | patch |
| Permalink | /patch/40087/ |
| State | Accepted |
| Commit | 5bfc678aeb65b50710384e93b64add3a62146908 |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb index 0e795c6..91785f9 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" SRCREV_machine ?= "b13bef6377719a488293af196236cc290566fad3" SRCREV_meta ?= "6737e890fff2a423fbb022ab1f7f82ef187fd8b1" -SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta" +SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},${KMETA};name=machine,meta" LINUX_VERSION ?= "3.4.20"
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. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> --- meta/recipes-kernel/linux/linux-yocto_3.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)