summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan.rossi@xilinx.com>2013-09-17 17:32:11 +1000
committerNathan Rossi <nathan.rossi@xilinx.com>2013-09-17 17:32:11 +1000
commit02a46d1a252cda6fb3ba990f2260d6438b6a7921 (patch)
tree09c9f373f20d5ca55418bfc5601e194b19165272
parentabceb7a052c11a01ffd7e040ba7fae6f2eba5a24 (diff)
downloadmeta-xilinx-02a46d1a252cda6fb3ba990f2260d6438b6a7921.tar.gz
linux-dtb.inc: Fix-up PACKAGES variable for QA issues
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r--recipes-kernel/linux/linux-dtb.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-dtb.inc b/recipes-kernel/linux/linux-dtb.inc
index afd47aef..eb9cca85 100644
--- a/recipes-kernel/linux/linux-dtb.inc
+++ b/recipes-kernel/linux/linux-dtb.inc
@@ -1,4 +1,5 @@
1# Support for device tree generation 1# Support for device tree generation
2FILES_kernel-devicetree = "/boot/devicetree*"
2OOT_KERNEL_DEVICETREE_FLAGS ?= "-R 8 -p 0x3000" 3OOT_KERNEL_DEVICETREE_FLAGS ?= "-R 8 -p 0x3000"
3 4
4python __anonymous () { 5python __anonymous () {
@@ -6,6 +7,8 @@ python __anonymous () {
6 if oot_devicetree: 7 if oot_devicetree:
7 depends = d.getVar("DEPENDS", True) 8 depends = d.getVar("DEPENDS", True)
8 d.setVar("DEPENDS", "%s dtc-native" % depends) 9 d.setVar("DEPENDS", "%s dtc-native" % depends)
10 packages = d.getVar("PACKAGES", True)
11 d.setVar("PACKAGES", "%s kernel-devicetree" % packages)
9} 12}
10 13
11do_install_append() { 14do_install_append() {