summaryrefslogtreecommitdiffstats
path: root/meta-netboot/LICENSE.MIT
blob: a6919eb7e1fdbda5d53fd9d8e0f7114f2274457b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Note:
Individual files contain the following tag instead of the full license text.

    SPDX-License-Identifier: MIT

This enables machine processing of license information based on the SPDX
License Identifiers that are here available: http://spdx.org/licenses/
">LIC_FILES_CHKSUM = " \ file://COPYING;md5=55979d94ccbb973fdea772250e0c54d6 \ file://MIT-COPYING;md5=f932f6ad0feea4f97b6e8316e172070e \ " inherit module features_check REQUIRED_DISTRO_FEATURES = "adsp" FILESEXTRAPATHS_prepend := "${THISDIR}/xtensa-hifi:" SRC_URI = "file://RCG3AHPDL4101ZDO.tar.gz" S = "${WORKDIR}/RCG3AHPDL4101ZDO" # Define the extra config for using module.bbclass to build ADSP driver EXTRA_OEMAKE_append = " KDIR=${STAGING_KERNEL_DIR}" # Build ADSP kernel module without suffix KERNEL_MODULE_PACKAGE_SUFFIX = "" # Enable build target for E3 board do_configure_prepend_r8a77990(){ sed -i 's|-DTARGET_BOARD_E3=0|-DTARGET_BOARD_E3=1|g' ${S}/Kbuild } do_install_append(){ # Create install directories install -d ${D}/${includedir} install -d ${D}/${includedir}/sys/xt-shmem # Install shared header files install -m 644 ${S}/include/*.h ${D}/${includedir}/ install -m 644 ${S}/include/sys/xt-shmem/*.h ${D}/${includedir}/sys/xt-shmem/ } # The ADSP driver need adsp firmware for running RDEPENDS_${PN}_append = " adsp-fw-module"