mirror of
git://git.yoctoproject.org/poky
synced 2026-09-16 23:54:59 +00:00
- DirectFB is not supported by gtk versions >= 2.18 - use packagegroup-core-directfb instead of packagegroup-core-gtk-directfb [YOCTO #3642] (From OE-Core rev: f4724b132de09d0c3db3755214ca83bb5acf5550) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
588 B
BlitzBasic
21 lines
588 B
BlitzBasic
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")
|
|
}
|