mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 21:09:04 +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>
24 lines
695 B
BlitzBasic
24 lines
695 B
BlitzBasic
# Copyright (C) 2020-2022 NXP
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Sound Open Firmware"
|
|
HOMEPAGE = "https://www.sofproject.org"
|
|
SECTION = "base"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=0f00d99239d922ffd13cabef83b33444"
|
|
|
|
SRC_URI = "${FSL_MIRROR}/sof-imx-${PV}.tar.gz"
|
|
SRC_URI[sha256sum] = "eb86c90aec92b3b376e7afca6aa5db4767b5d8868553595907ba37665329f16b"
|
|
|
|
S = "${UNPACKDIR}/sof-imx-${PV}"
|
|
|
|
inherit allarch
|
|
|
|
do_install() {
|
|
# Install sof and sof-tplg folder
|
|
install -d ${D}${nonarch_base_libdir}/firmware/imx/
|
|
cp -r sof* ${D}${nonarch_base_libdir}/firmware/imx/
|
|
}
|
|
|
|
FILES:${PN} = "${nonarch_base_libdir}/firmware/imx"
|