From 02a46d1a252cda6fb3ba990f2260d6438b6a7921 Mon Sep 17 00:00:00 2001 From: Nathan Rossi Date: Tue, 17 Sep 2013 17:32:11 +1000 Subject: linux-dtb.inc: Fix-up PACKAGES variable for QA issues Signed-off-by: Nathan Rossi --- recipes-kernel/linux/linux-dtb.inc | 3 +++ 1 file changed, 3 insertions(+) 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 @@ # Support for device tree generation +FILES_kernel-devicetree = "/boot/devicetree*" OOT_KERNEL_DEVICETREE_FLAGS ?= "-R 8 -p 0x3000" python __anonymous () { @@ -6,6 +7,8 @@ python __anonymous () { if oot_devicetree: depends = d.getVar("DEPENDS", True) d.setVar("DEPENDS", "%s dtc-native" % depends) + packages = d.getVar("PACKAGES", True) + d.setVar("PACKAGES", "%s kernel-devicetree" % packages) } do_install_append() { -- cgit v1.2.3-54-g00ecf