rpi-*-image: Deprecate old image names

As discussed on the issue tracker, it's confusing for meta-raspberrypi to have
its own set of image names filling the same jobs as the core images. Therefore
we are marking these images as deprecated and will be removing them in the
future. The recommended replacement images are as follows:

    rpi-hwup-image -> core-image-minimal
    rpi-basic-image -> core-image-base

The image 'rpi-test-image' will be kept and is not marked as deprecated, it is
still useful for testing. It it updated to be based on 'core-image-base'.

Signed-off-by: Paul Barker <pbarker@toganlabs.com>
This commit is contained in:
Paul Barker 2018-02-26 16:42:01 +00:00 committed by Andrei Gherzan
parent 0f145057c3
commit 0deabddb14
3 changed files with 10 additions and 2 deletions

View File

@ -4,3 +4,7 @@ include rpi-hwup-image.bb
SPLASH = "psplash-raspberrypi" SPLASH = "psplash-raspberrypi"
IMAGE_FEATURES += "ssh-server-dropbear splash" IMAGE_FEATURES += "ssh-server-dropbear splash"
do_image_prepend() {
bb.warn("The image 'rpi-basic-image' is deprecated, please use 'core-image-base' instead")
}

View File

@ -5,3 +5,7 @@ include recipes-core/images/core-image-minimal.bb
IMAGE_INSTALL += " \ IMAGE_INSTALL += " \
kernel-modules \ kernel-modules \
" "
do_image_prepend() {
bb.warn("The image 'rpi-hwup-image' is deprecated, please use 'core-image-minimal' instead")
}

View File

@ -1,5 +1,5 @@
# Base this image on rpi-basic-image # Base this image on core-image-base
include rpi-basic-image.bb include recipes-core/images/core-image-base.bb
COMPATIBLE_MACHINE = "^rpi$" COMPATIBLE_MACHINE = "^rpi$"