mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-05 05:04:47 +02:00
Add new recipe for the armsoc xorg driver
This is the xorg driver required to work with the Rockchip DRM. It works with both the one from linux-veyron and the one in the linux mainline kernel. Signed-off-by: Romain Perier <romain.perier@gmail.com>
This commit is contained in:
parent
6f141995cb
commit
969b72e26a
|
@ -0,0 +1,16 @@
|
|||
Section "Device"
|
||||
Identifier "Mali FBDEV"
|
||||
Driver "armsoc"
|
||||
Option "fbdev" "/dev/fb0"
|
||||
Option "Fimg2DExa" "false"
|
||||
Option "DRI2" "true"
|
||||
Option "DRI2_PAGE_FLIP" "false"
|
||||
Option "DRI2_WAIT_VSYNC" "true"
|
||||
Option "SWcursorLCD" "false"
|
||||
EndSection
|
||||
|
||||
Section "Screen"
|
||||
Identifier "DefaultScreen"
|
||||
Device "Mali FBDEV"
|
||||
DefaultDepth 24
|
||||
EndSection
|
|
@ -0,0 +1,25 @@
|
|||
# Copyright (C) 2015 Romain Perier <romain.perier@gmail.com>
|
||||
# Released under the MIT license (see COPYING.MIT for the terms)
|
||||
|
||||
require recipes-graphics/xorg-driver/xorg-driver-video.inc
|
||||
|
||||
DESCRIPTION = "X.org graphics driver for ARM graphics - Rockchip"
|
||||
HOMEPAGE = "https://github.com/mmind/xf86-video-armsoc"
|
||||
LICENSE = "GPL-2.0"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=10ce5de3b111315ea652a5f74ec0c602"
|
||||
|
||||
PE = ""
|
||||
PR = "r1"
|
||||
PV = "261+git+67d4cff"
|
||||
|
||||
RDEPENDS_${PN} += "xserver-xorg-module-exa"
|
||||
S = "${WORKDIR}/git"
|
||||
SRCREV = "67d4cffe67737458716116498a67546291def000"
|
||||
SRC_URI = "git://github.com/mmind/xf86-video-armsoc.git;protocol=http;branch=devel/rockchip \
|
||||
file://20-armsoc.conf \
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}/etc/X11/xorg.conf.d
|
||||
install -m 644 ${WORKDIR}/20-armsoc.conf ${D}/etc/X11/xorg.conf.d
|
||||
}
|
Loading…
Reference in New Issue
Block a user