diff options
author | Darren Hart <dvhart@linux.intel.com> | 2014-03-14 14:15:20 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-17 14:01:41 +0000 |
commit | 219500601e84752ac5ade08c8d2389b1d3588da9 (patch) | |
tree | c973354e94c9f6416f387ffeedd2b81fd119e8f9 | |
parent | e73f0f145c7748e255b0c2f25532d74f3491b62a (diff) | |
download | poky-219500601e84752ac5ade08c8d2389b1d3588da9.tar.gz |
linux-yocto-custom: Use SRCREV_machine
The Yocto kernel tools look for SRCREV_machine in do_validate_branches,
if it's empty, it just returns and silently continues. This likely needs
at least a warning. However, this recipe should be using SRCREV_machine,
and not just SRCREV.
(From OE-Core rev: f36de92551c8c44a15f1997e65cd8ee957143d95)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Reported-by: Saul Wold <sgw@linux.intel.com>
Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb b/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb index 4115d2f847..42162f3c4a 100644 --- a/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb +++ b/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb | |||
@@ -54,7 +54,7 @@ LINUX_VERSION_EXTENSION ?= "-custom" | |||
54 | # Override SRCREV to point to a different commit in a bbappend file to | 54 | # Override SRCREV to point to a different commit in a bbappend file to |
55 | # build a different release of the Linux kernel. | 55 | # build a different release of the Linux kernel. |
56 | # tag: v3.4 76e10d158efb6d4516018846f60c2ab5501900bc | 56 | # tag: v3.4 76e10d158efb6d4516018846f60c2ab5501900bc |
57 | SRCREV="76e10d158efb6d4516018846f60c2ab5501900bc" | 57 | SRCREV_machine="76e10d158efb6d4516018846f60c2ab5501900bc" |
58 | 58 | ||
59 | PR = "r1" | 59 | PR = "r1" |
60 | PV = "${LINUX_VERSION}+git${SRCPV}" | 60 | PV = "${LINUX_VERSION}+git${SRCPV}" |