mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
On modern systems, both real and virtual hardware, the modesetting driver is preferred over the dumb framebuffer driver as it is more functional and is essentially the default Xorg video driver. (From OE-Core rev: bfa9f21a4e4b3ce3f6548008716f66d0c8b57974) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
409 B
BlitzBasic
24 lines
409 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
SUMMARY = "X11 display server"
|
|
PR = "r40"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup features_check
|
|
# rdepends on XSERVER
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
XSERVER ?= "xserver-xorg \
|
|
xf86-video-fbdev \
|
|
xf86-video-modesetting \
|
|
"
|
|
XSERVERCODECS ?= ""
|
|
|
|
RDEPENDS:${PN} = "\
|
|
${XSERVER} \
|
|
${XSERVERCODECS} \
|
|
"
|