- 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)
51 lines
1.3 KiB
BlitzBasic
51 lines
1.3 KiB
BlitzBasic
# Copyright (C) 2012-2016 Freescale Semiconductor
|
|
# Copyright (C) 2012-2018 O.S. Systems Software LTDA.
|
|
# Copyright 2017 NXP
|
|
|
|
DESCRIPTION = "Platform specific libraries for imx platform"
|
|
LICENSE = "LGPL-2.1-only"
|
|
SECTION = "multimedia"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fbc093901857fcd118f065f900982c24"
|
|
|
|
PE = "1"
|
|
|
|
PV = "5.9+${SRCPV}"
|
|
|
|
SRC_URI = "git://github.com/nxp-imx/imx-lib.git;protocol=https;branch=${SRCBRANCH}"
|
|
SRCBRANCH = "lf-6.6.36_2.1.0"
|
|
SRCREV = "8f124c3914d82019849fb697baeb730e4cb1b547"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit use-imx-headers
|
|
|
|
PLATFORM:mx6q-nxp-bsp = "IMX6Q"
|
|
PLATFORM:mx6dl-nxp-bsp = "IMX6Q"
|
|
PLATFORM:mx6sl-nxp-bsp = "IMX6S"
|
|
PLATFORM:mx6sll-nxp-bsp = "IMX6UL"
|
|
PLATFORM:mx6sx-nxp-bsp = "IMX6S"
|
|
PLATFORM:mx6ul-nxp-bsp = "IMX6UL"
|
|
PLATFORM:mx6ull-nxp-bsp = "IMX6UL"
|
|
PLATFORM:mx7d-nxp-bsp = "IMX7"
|
|
PLATFORM:mx7ulp-nxp-bsp = "IMX7"
|
|
PLATFORM:mx8ulp-nxp-bsp = "IMX8ULP"
|
|
PLATFORM:mx9-nxp-bsp = "IMX8ULP"
|
|
|
|
PARALLEL_MAKE="-j 1"
|
|
EXTRA_OEMAKE = ""
|
|
|
|
do_compile () {
|
|
INCLUDE_DIR="-I${STAGING_INCDIR_IMX}"
|
|
oe_runmake CROSS_COMPILE="${HOST_PREFIX}" PLATFORM="${PLATFORM}" INCLUDE="${INCLUDE_DIR}" all
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake PLATFORM="${PLATFORM}" DEST_DIR="${D}" install
|
|
|
|
# Remove .go file for Android
|
|
find ${D}/ -name *.go -exec rm {} \;
|
|
}
|
|
|
|
COMPATIBLE_MACHINE = "(mx6-nxp-bsp|mx7-nxp-bsp|mx8ulp-nxp-bsp|mx9-nxp-bsp)"
|