summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.oss.09@gmail.com>2014-04-05 10:23:04 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2014-04-05 11:04:48 +0200
commit7e49db4c09fe3446e7e4322abd6ff7630c2e5fcf (patch)
tree1a3be1490d8a8d8e621e6afd6aa354817d2e8f9c
parent7aee36706dd3fffd69d9ade4eaff1ed34207c488 (diff)
linux-toradex-fsl_git: fix parsing
Make the bitbake parser not fail when this recipe is parsed for a machine for which this recipe is not a COMPATIBLE_MACHINE.
-rw-r--r--recipes-kernel/linux/linux-toradex-fsl_git.bb5
1 files changed, 2 insertions, 3 deletions
diff --git a/recipes-kernel/linux/linux-toradex-fsl_git.bb b/recipes-kernel/linux/linux-toradex-fsl_git.bb
index 1dd95b1..01d672b 100644
--- a/recipes-kernel/linux/linux-toradex-fsl_git.bb
+++ b/recipes-kernel/linux/linux-toradex-fsl_git.bb
@@ -17,8 +17,7 @@ SRC_URI = "git://git.toradex.com/linux-toradex.git;protocol=git;branch=${SRCBRAN
# a Patch
# SRC_URI += "file://a.patch "
-COMPATIBLE_MACHINE_colibri-vf = "colibri-vf"
-COMPATIBLE_MACHINE_apalis-imx6 = "apalis-imx6"
+COMPATIBLE_MACHINE = "(colibri-vf|apalis-imx6)"
# Place changes to the defconfig here
config_script () {
@@ -65,4 +64,4 @@ do_install_append_colibri-vf() {
#install vybrid specific headers with definitions used for userspace interaction
install -d ${D}/${includedir}/linux
install -m 644 ${S}/include/linux/mvf_sema4.h ${D}/${includedir}/linux/
-} \ No newline at end of file
+}