core-image-testmaster.bb 575 B

123456789101112131415161718
  1. DESCRIPTION = "A master image to be deployed on a target useful for testing other images"
  2. IMAGE_FEATURES += "ssh-server-openssh package-management"
  3. inherit core-image
  4. # the deploy code requires bash and
  5. # normal linux utilities not busybox ones
  6. IMAGE_INSTALL += "\
  7. bash coreutils util-linux tar gzip bzip2 kmod \
  8. python-modules python-misc \
  9. e2fsprogs e2fsprogs-mke2fs parted \
  10. "
  11. # we need a particular initramfs for live images
  12. # that pulls custom install scripts which take
  13. # care of partitioning for us
  14. INITRD_IMAGE = "core-image-testmaster-initramfs"