mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 22:38:22 +01:00
33d7e2bb51
- The layer compability has also been updated in this PR. * Using S = ${WORKDIR} is no longer supported. * UNPACKDIR is new contruct for do_unpack things in latest master we should be using that instead of WORKDIR for referencing those files. * We don't know yet what changes will be needed to stay compatible with final styhead, but we already know that the last changes for UNPACKDIR aren't compatible with scarthgap, nanbield or others. https://lists.openembedded.org/g/openembedded-architecture/message/2007 https://docs.yoctoproject.org/dev/ref-manual/variables.html?highlight=unpackdir#term-UNPACKDIR Signed-off-by: alperak <alperyasinak1@gmail.com>
27 lines
736 B
BlitzBasic
27 lines
736 B
BlitzBasic
require recipes-graphics/xorg-driver/xorg-driver-video.inc
|
|
|
|
DESCRIPTION = "X.Org X server -- A10/A13 display driver"
|
|
|
|
LICENSE = "MIT-CMU"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f91dc3ee5ce59eb4b528e67e98a31266"
|
|
|
|
DEPENDS += "sunxi-mali libump xorgproto"
|
|
|
|
PE = "3"
|
|
PV = "0.5.1+git${SRCPV}"
|
|
SRCREV = "e094e3c8f9004ca3347694bd05b99d136e8621b9"
|
|
|
|
SRC_URI = "git://github.com/ssvb/xf86-video-fbturbo.git;protocol=http;branch=master \
|
|
file://20-fbturbo.conf"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
CFLAGS += " -I${STAGING_INCDIR}/xorg "
|
|
|
|
do_install:append() {
|
|
install -d ${D}${datadir}/X11/xorg.conf.d
|
|
install -m 0644 ${UNPACKDIR}/20-fbturbo.conf ${D}${datadir}/X11/xorg.conf.d
|
|
}
|
|
|
|
FILES:${PN} += "${datadir}/X11/xorg.conf.d/20-fbturbo.conf"
|