mirror of
https://git.yoctoproject.org/poky
synced 2026-06-17 06:19:56 +00:00
442aff1bea
(From OE-Core rev: c488f67efeefa00e3d1e925a50c9ab764f39f0a7) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
577 B
BlitzBasic
19 lines
577 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 \
|
|
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-testmaster-initramfs"
|
|
|