mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
YB: #6375 Some test image fstypes require bzip2 decompression. (From OE-Core rev: 7b81fce3a80f7a1b94015a1da95d2349dac577ab) Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
575 B
BlitzBasic
19 lines
575 B
BlitzBasic
DESCRIPTION = "A master image to be deployed on a target useful for testing other images"
|
|
|
|
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 \
|
|
python-modules python-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-testmaster-initramfs"
|
|
|