mirror of
https://github.com/thead-yocto-mirror/meta-riscv
synced 2026-09-18 05:02:38 +02:00
The firmware blob is architecture independent, move it to separate package like all other firmware blobs to make rootfs creation simpler.
66 lines
1.6 KiB
BlitzBasic
66 lines
1.6 KiB
BlitzBasic
LICENSE="CLOSED"
|
|
|
|
PROVIDES = "virtual/libgles2"
|
|
COMPATIBLE_MACHINE = "visionfive2"
|
|
|
|
require recipes-bsp/common/visionfive2-firmware.inc
|
|
inherit update-rc.d
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
IMG_GPU_POWERVR_VERSION = "img-gpu-powervr-bin-1.17.6210866"
|
|
|
|
PACKAGES += " \
|
|
${PN}-firmware \
|
|
${PN}-tools \
|
|
"
|
|
|
|
do_install () {
|
|
tar xz --no-same-owner -f ${S}/IMG_GPU/out/${IMG_GPU_POWERVR_VERSION}.tar.gz -C ${D}
|
|
mv ${D}/${IMG_GPU_POWERVR_VERSION}/target/* ${D}
|
|
install -d ${D}/usr/include/
|
|
cp -r ${D}/${IMG_GPU_POWERVR_VERSION}/staging/usr/include/drv/ ${D}/usr/include/
|
|
cp -r ${D}/${IMG_GPU_POWERVR_VERSION}/staging/usr/include/GLES/ ${D}/usr/include/
|
|
cp -r ${D}/${IMG_GPU_POWERVR_VERSION}/staging/usr/include/GLES2/ ${D}/usr/include/
|
|
cp -r ${D}/${IMG_GPU_POWERVR_VERSION}/staging/usr/include/GLES3/ ${D}/usr/include/
|
|
install -d ${D}/usr/lib/pkgconfig/
|
|
cp -r ${D}/${IMG_GPU_POWERVR_VERSION}/staging/usr/lib/pkgconfig/* ${D}/usr/lib/pkgconfig/
|
|
|
|
# provided via separate arch-independent firmware package
|
|
rm -rf ${D}/lib/firmware
|
|
rmdir ${D}/lib
|
|
|
|
# cleanup unused
|
|
rm -rf ${D}/${IMG_GPU_POWERVR_VERSION}
|
|
}
|
|
|
|
INITSCRIPT_NAME = "rc.pvr"
|
|
|
|
FILES_SOLIBSDEV = ""
|
|
FILES:${PN} += " \
|
|
${libdir}/*.so \
|
|
"
|
|
|
|
FILES:${PN}-tools = " \
|
|
${prefix}/local/bin/ \
|
|
"
|
|
|
|
FILES:${PN}-firmware = " \
|
|
${base_libdir}/firmware/ \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
bash \
|
|
libdrm \
|
|
linux-firmware-visionfive2-imggpu \
|
|
"
|
|
|
|
RDEPENDS:${PN}-tools += " \
|
|
python3 \
|
|
"
|
|
|
|
INSANE_SKIP:${PN} += "already-stripped dev-so"
|
|
# ignore dependency check for python scripting
|
|
INSANE_SKIP:${PN}-tools += "already-stripped file-rdeps"
|
|
INSANE_SKIP:${PN}-firmware += "arch"
|