mirror of
https://github.com/cazfi/meta-games.git
synced 2026-09-24 16:36:21 +02:00
OE-Core's commit 929ba563f1bc7195c4981b8e139c432b2cc388ea removed image-vm.bbclass. Images were not tested but if the commit message was read properly, the image creation job should be done by replacing image-type vdmk by wic.vmdk. Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
40 lines
588 B
BlitzBasic
40 lines
588 B
BlitzBasic
|
|
DESCRIPTION = "Games image to be used on USB stick"
|
|
|
|
IMAGE_LINGUAS = " "
|
|
|
|
LICENSE = "GPLv2"
|
|
|
|
inherit core-image
|
|
|
|
IMAGE_ROOTFS_SIZE = "8192"
|
|
|
|
IMAGE_FEATURES += "package-management x11-base x11-sato ssh-server-dropbear"
|
|
|
|
IMAGE_FSTYPES += "wic.vmdk"
|
|
|
|
FREECIV = "\
|
|
freeciv-server \
|
|
freeciv-gtk3 \
|
|
freeciv-qt \
|
|
"
|
|
|
|
GNOME_GAMES = "\
|
|
gnome-chess \
|
|
gnome-robots \
|
|
"
|
|
|
|
GAMELIST = "\
|
|
packagegroup-core-x11-sato-games \
|
|
${GNOME_GAMES} \
|
|
${FREECIV} \
|
|
etr \
|
|
pingus \
|
|
"
|
|
|
|
IMAGE_INSTALL += " \
|
|
packagegroup-core-boot \
|
|
${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL} \
|
|
${GAMELIST} \
|
|
"
|