mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00
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:
parent
0f145057c3
commit
0deabddb14
|
@ -4,3 +4,7 @@ include rpi-hwup-image.bb
|
|||
SPLASH = "psplash-raspberrypi"
|
||||
|
||||
IMAGE_FEATURES += "ssh-server-dropbear splash"
|
||||
|
||||
do_image_prepend() {
|
||||
bb.warn("The image 'rpi-basic-image' is deprecated, please use 'core-image-base' instead")
|
||||
}
|
||||
|
|
|
@ -5,3 +5,7 @@ include recipes-core/images/core-image-minimal.bb
|
|||
IMAGE_INSTALL += " \
|
||||
kernel-modules \
|
||||
"
|
||||
|
||||
do_image_prepend() {
|
||||
bb.warn("The image 'rpi-hwup-image' is deprecated, please use 'core-image-minimal' instead")
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Base this image on rpi-basic-image
|
||||
include rpi-basic-image.bb
|
||||
# Base this image on core-image-base
|
||||
include recipes-core/images/core-image-base.bb
|
||||
|
||||
COMPATIBLE_MACHINE = "^rpi$"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user