summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnrico Jorns <ejo@pengutronix.de>2017-09-06 08:33:44 +0200
committerEnrico Jorns <ejo@pengutronix.de>2017-10-12 09:52:21 +0200
commitb81cda07204b4ba4a5a034faaf710cb0892f9465 (patch)
tree66c3278fe56813daadd07a321eb7264f7bd8bdec
parent2ba1b1d43c4233d14b23aea520512e93c1d7266b (diff)
downloadmeta-ptx-b81cda07204b4ba4a5a034faaf710cb0892f9465.tar.gz
meta-ptx-b81cda07204b4ba4a5a034faaf710cb0892f9465.tar.xz
classes/bootspec: extend IMAGE_INSTALL to include kernel image and dtb
Booting with bootspec requires the image to include both the kernel and the devcietree. Thus the class should extend IMAGE_INSTALL to include these. Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
-rw-r--r--classes/bootspec.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/bootspec.bbclass b/classes/bootspec.bbclass
index 3fdef0f..67a5a8f 100644
--- a/classes/bootspec.bbclass
+++ b/classes/bootspec.bbclass
@@ -56,3 +56,5 @@ python create_bootspec() {
}
ROOTFS_POSTPROCESS_COMMAND += " create_bootspec; "
+
+IMAGE_INSTALL_append = " kernel-image kernel-devicetree"