aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-02-28 13:39:05 -0700
committerTom Rini <tom_rini@mentor.com>2011-02-28 13:40:14 -0700
commit1bb4b87790a8378888efd64a70749fa163e5e74c (patch)
treea94ff7152d6e684483f3436b4144d7e781e2e247
parentdb3c251747df636f0420ebc85ae47c88d45f2376 (diff)
downloadopenembedded-1bb4b87790a8378888efd64a70749fa163e5e74c.tar.gz
linux.inc: Add more machines to the lzma-native logic
Signed-off-by: Tom Rini <tom_rini@mentor.com>
-rw-r--r--recipes/linux/linux.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/linux/linux.inc b/recipes/linux/linux.inc
index a0d16c24ac..bae0cb41b1 100644
--- a/recipes/linux/linux.inc
+++ b/recipes/linux/linux.inc
@@ -67,7 +67,7 @@ python __anonymous () {
bb.data.setVar("DEPENDS", "%s dtc-native" % depends, d)
packages = bb.data.getVar("PACKAGES", d, 1)
bb.data.setVar("PACKAGES", "%s kernel-devicetree" % packages, d)
- if 'nokia900' in machine:
+ if 'nokia900' in machine or 'om-gta0' in machine or 'eee701' in machine:
depends = bb.data.getVar("DEPENDS", d, 1)
bb.data.setVar("DEPENDS", "%s lzma-native" % depends, d)
}