mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 12:59:04 +02:00
45 lines
1.0 KiB
BlitzBasic
45 lines
1.0 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 = "LGPLv2.1"
|
|
SECTION = "multimedia"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING-LGPL-2.1;md5=fbc093901857fcd118f065f900982c24"
|
|
|
|
PE = "1"
|
|
|
|
PV = "5.8+${SRCPV}"
|
|
|
|
SRCBRANCH = "master"
|
|
SRC_URI = "git://github.com/nxp-imx/imx-lib.git;protocol=https;branch=${SRCBRANCH}"
|
|
SRCREV = "3f777974c0c146817e2ff5cb0340ca66a1f99e57"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit use-imx-headers
|
|
|
|
PLATFORM_mx6q = "IMX6Q"
|
|
PLATFORM_mx6dl = "IMX6Q"
|
|
PLATFORM_mx6sl = "IMX6S"
|
|
PLATFORM_mx6sll = "IMX6UL"
|
|
PLATFORM_mx6sx = "IMX6S"
|
|
PLATFORM_mx6ul = "IMX6UL"
|
|
PLATFORM_mx7d = "IMX7"
|
|
PLATFORM_mx7ulp = "IMX7"
|
|
|
|
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
|
|
}
|
|
|
|
COMPATIBLE_MACHINE = "(mx6|mx7)"
|