- 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)
24 lines
693 B
BlitzBasic
24 lines
693 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 = "${WORKDIR}/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"
|