mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
This layer provides a kernel suitable for booting on eMenlow-based systems, plus support for Poulsbo graphics. The Poulsbo support includes a kernel patch for the graphics driver, a couple of libraries, the 2D and 3D X drivers, and a properly configured X server. The closed portions of this support are in the 3D driver, xpsb-glx. This package contains the binaries for the libraries that communicate with the kernel driver and a mesa library which uses those libraries. There is a README in meta-emenlow/ describing how to enable this layer. Where possible, the recipes use bitbake's new .bbappend facility in order to avoid copying recipes from meta/. There are checksums and license information for all of the new packages. Signed-off-by: Jeff Dike <jdike@linux.intel.com>
23 lines
671 B
BlitzBasic
23 lines
671 B
BlitzBasic
DESCRIPTION = "Kernel module for the Poulsbo (psb) 2D X11 driver"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://GPLv2_License.txt;md5=f5ca3155cfeaa64a6ea228b11ad6916d"
|
|
PR = "r1"
|
|
|
|
inherit module
|
|
|
|
SRC_URI = "https://launchpad.net/~gma500/+archive/ppa/+files/psb-kernel-source_4.42.0-0ubuntu2~1004um2.tar.gz \
|
|
file://build.patch;patch=1"
|
|
|
|
do_compile () {
|
|
oe_runmake LINUXDIR=${STAGING_KERNEL_DIR} DRM_MODULES="psb"
|
|
}
|
|
|
|
do_install () {
|
|
mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/extra
|
|
cp ${WORKDIR}/${PN}-${PV}/*.ko ${D}/lib/modules/${KERNEL_VERSION}/extra
|
|
}
|
|
|
|
FILES_${PN} += "${base_libdir}/modules/${KERNEL_VERSION}/extra/*.ko"
|
|
|
|
DEPENDS += "virtual/kernel"
|