mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-05 05:14:44 +02:00

The series [1] changed the way sources are fetched/unpacked and S needs to follow that. Additionally for git repos it moved away from having 'git/' as the checkout directory. This has been partly tested by building weston based image for imx6/imx6ull/imx7/imx8/imx8mm/imx8mp/imx95 based images. E.g. none of the recipes specific for qoriq is built time tested. As walnascar is no longer compatible with master/whinlatter drop it from LAYERSERIES_COMPAT. [1] https://lore.kernel.org/openembedded-core/20250616095000.2918921-1-alex.kanavin@gmail.com/ Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
29 lines
797 B
BlitzBasic
29 lines
797 B
BlitzBasic
SUMMARY = "DP firmware"
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d3c315c6eaa43e07d8c130dc3a04a011"
|
|
|
|
inherit deploy fsl-eula-unpack
|
|
|
|
SRC_URI = "${FSL_MIRROR}/firmware-imx-8.16.bin;fsl-eula=true"
|
|
|
|
SRC_URI[sha256sum] = "65f829a9e2597bffc58a680aaefa638122144a083633d1ae09b3aec1d9f8ab84"
|
|
|
|
S = "${UNPACKDIR}/firmware-imx-8.16"
|
|
|
|
do_install () {
|
|
install -d ${D}/boot
|
|
install -m 0644 ${S}/firmware/hdmi/cadence/dp_ls1028a.bin ${D}/boot/ls1028a-dp-fw.bin
|
|
}
|
|
|
|
do_deploy () {
|
|
install -d ${DEPLOYDIR}/dp
|
|
install -m 0644 ${S}/firmware/hdmi/cadence/dp_ls1028a.bin ${DEPLOYDIR}/dp/ls1028a-dp-fw.bin
|
|
}
|
|
addtask deploy before do_build after do_install
|
|
|
|
PACKAGES += "${PN}-image"
|
|
FILES:${PN}-image += "/boot"
|
|
|
|
COMPATIBLE_MACHINE = "(qoriq-arm64)"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|