- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
40 lines
1.3 KiB
BlitzBasic
40 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "Kernel drivers for the PowerVR Rogue GPU found in the TI SoCs"
|
|
HOMEPAGE = "http://git.ti.com/graphics/ti-img-rogue-driver"
|
|
LICENSE = "MIT | GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://README;beginline=14;endline=19;md5=0403c7dea01a2b8232261e805325fac2"
|
|
|
|
inherit module
|
|
|
|
PROVIDES = "virtual/gpudriver"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
|
|
|
|
DEPENDS = "virtual/kernel"
|
|
|
|
BRANCH = "linuxws/kirkstone/k6.1/${PV}"
|
|
|
|
SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-driver.git;protocol=https;branch=${BRANCH}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRCREV = "c838bc06a163abad46dcc193c8fb9a4fb9e2e356"
|
|
|
|
TARGET_PRODUCT:j721e = "j721e_linux"
|
|
TARGET_PRODUCT:j721s2 = "j721s2_linux"
|
|
TARGET_PRODUCT:j784s4 = "j784s4_linux"
|
|
TARGET_PRODUCT:am62xx = "am62_linux"
|
|
TARGET_PRODUCT:am62pxx = "am62p_linux"
|
|
TARGET_PRODUCT:j722s = "j722s_linux"
|
|
PVR_BUILD = "release"
|
|
PVR_WS = "lws-generic"
|
|
|
|
EXTRA_OEMAKE += 'KERNELDIR="${STAGING_KERNEL_DIR}" BUILD=${PVR_BUILD} PVR_BUILD_DIR=${TARGET_PRODUCT} WINDOW_SYSTEM=${PVR_WS}'
|
|
|
|
do_install() {
|
|
make -C ${STAGING_KERNEL_DIR} M=${B}/binary_${TARGET_PRODUCT}_${PVR_WS}_${PVR_BUILD}/target_aarch64/kbuild INSTALL_MOD_PATH=${D}${root_prefix} PREFIX=${STAGING_DIR_HOST} modules_install
|
|
}
|
|
|
|
RRECOMMENDS:${PN} += "ti-img-rogue-umlibs"
|