From: Darren Hart Date: Fri, 14 Mar 2014 21:15:20 +0000 (-0700) Subject: linux-yocto-custom: Use SRCREV_machine X-Git-Tag: 2015-4~3341 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f36de92551c8c44a15f1997e65cd8ee957143d95;p=openembedded-core.git 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. Signed-off-by: Darren Hart Reported-by: Saul Wold Cc: Bruce Ashfield Signed-off-by: Richard Purdie --- 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" # Override SRCREV to point to a different commit in a bbappend file to # build a different release of the Linux kernel. # tag: v3.4 76e10d158efb6d4516018846f60c2ab5501900bc -SRCREV="76e10d158efb6d4516018846f60c2ab5501900bc" +SRCREV_machine="76e10d158efb6d4516018846f60c2ab5501900bc" PR = "r1" PV = "${LINUX_VERSION}+git${SRCPV}"