summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Barker <pbarker@toganlabs.com>2018-02-26 19:58:26 +0000
committerPaul Barker <pbarker@toganlabs.com>2018-02-26 21:54:32 +0000
commit4e2248791de69dccd8347ddd5f23af1f6f1ef8f6 (patch)
tree1e79996dd450c936b58a46a67909cc301e30f971
parent972ec271c2aa45364fcdc36c7356c4b853c1bd47 (diff)
downloadmeta-raspberrypi-pbarker/next.tar.gz
rpi-basic-image: Refactor to avoid double deprecation warningspbarker/next
If rpi-basic-image is based on rpi-hwup-image, both deprecation warnings are printed which may be confusing. Therefore let's just copy over the relevant bits of rpi-hwup-image for now. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
-rw-r--r--recipes-core/images/rpi-basic-image.bb9
1 files changed, 7 insertions, 2 deletions
diff --git a/recipes-core/images/rpi-basic-image.bb b/recipes-core/images/rpi-basic-image.bb
index 33dca7d..77a3d7b 100644
--- a/recipes-core/images/rpi-basic-image.bb
+++ b/recipes-core/images/rpi-basic-image.bb
@@ -1,5 +1,10 @@
1# Base this image on rpi-hwup-image 1# Base this image on core-image-minimal
2include rpi-hwup-image.bb 2include recipes-core/images/core-image-minimal.bb
3
4# Include modules in rootfs
5IMAGE_INSTALL += " \
6 kernel-modules \
7 "
3 8
4SPLASH = "psplash-raspberrypi" 9SPLASH = "psplash-raspberrypi"
5 10