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"
|