summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/images/core-image-directfb.bb
blob: 3a74e9413efd6011469e1a62b25f1bef3ca0a39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SUMMARY = "An image that uses DirectFB instead of X11."
LICENSE = "MIT"
PR="r0"


LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                    file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"

inherit core-image

IMAGE_INSTALL += "\
	${CORE_IMAGE_BASE_INSTALL} \
	packagegroup-core-basic \
	packagegroup-core-directfb \
"

python __anonymous () {
	packages = d.getVar('DISTRO_FEATURES', True).split()
	if "x11" in packages:
		raise bb.parse.SkipPackage("FEATURE \"x11\" is in DISTRO_FEATURES, Please remove \"x11\" from DISTRO_FEATURES, use \"directfb\" instead of it\n")
}