mirror of
https://git.yoctoproject.org/poky
synced 2026-03-09 00:39:39 +01:00
Rename the image, the test controller class/code/module and the underlying image sentinel file to all match the controller terminology. (From OE-Core rev: f87b32833ac5327c4659ab8c06af34e7bda83f83) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
619 B
BlitzBasic
19 lines
619 B
BlitzBasic
DESCRIPTION = "A test controller image to be deployed on a target useful for testing other images using the OEQA runtime tests"
|
|
|
|
IMAGE_FEATURES += "ssh-server-openssh package-management"
|
|
|
|
inherit core-image
|
|
|
|
# the deploy code requires bash and
|
|
# normal linux utilities not busybox ones
|
|
IMAGE_INSTALL += "\
|
|
bash coreutils util-linux tar gzip bzip2 kmod \
|
|
python3-modules python3-misc \
|
|
e2fsprogs e2fsprogs-mke2fs parted \
|
|
"
|
|
# we need a particular initramfs for live images
|
|
# that pulls custom install scripts which take
|
|
# care of partitioning for us
|
|
INITRD_IMAGE = "core-image-testcontroller-initramfs"
|
|
|