diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-10 16:51:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-10 16:51:44 +0100 |
commit | fe983dcff611df2a4fef0d094b130cdf04c0728d (patch) | |
tree | 9945e66f07aeb49986572bced2e33f87c53ac70f /meta/recipes-kernel/linux | |
parent | baf136a9c95a94c5bf89c9a818960d616439682c (diff) | |
download | openembedded-core-fe983dcff611df2a4fef0d094b130cdf04c0728d.tar.gz openembedded-core-fe983dcff611df2a4fef0d094b130cdf04c0728d.tar.bz2 openembedded-core-fe983dcff611df2a4fef0d094b130cdf04c0728d.zip |
linux-yocto: Allow bbappend files to add to COMPATIBLE_MACHINE to fix errors
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_git.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto_git.bb b/meta/recipes-kernel/linux/linux-yocto_git.bb index f54033d57f..62b128ee37 100644 --- a/meta/recipes-kernel/linux/linux-yocto_git.bb +++ b/meta/recipes-kernel/linux/linux-yocto_git.bb @@ -28,7 +28,8 @@ SRCREV_FORMAT = "meta_machine" SRC_URI = "git://git.yoctoproject.org/linux-yocto-2.6.37;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta" -COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" +EXTRA_COMPATMACHS ??= "" +COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64${EXTRA_COMPATMACHS})" # Functionality flags KERNEL_REVISION_CHECKING ?= "t" |