mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 12:59:04 +02:00

The meta-fsl-arm is going to be used as the base for this layer. It contains a clean history and allowing a more granullar set of changes. This commit is just a rename of all contents of meta-fsl-arm subdirectory to this layer's root, subsequent changes are based on top of that. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
31 lines
908 B
HTML
31 lines
908 B
HTML
# Copyright (C) 2012-2013 Freescale Semiconductor
|
|
|
|
DESCRIPTION = "Platform specific libraries for imx platform"
|
|
LICENSE = "LGPLv2.1"
|
|
SECTION = "multimedia"
|
|
DEPENDS = "virtual/kernel"
|
|
|
|
LIC_FILES_CHKSUM = "file://ipu/mxc_ipu_hl_lib.h;endline=13;md5=6c7486b21a8524b1879fa159578da31e"
|
|
|
|
PLATFORM_mx6 = "IMX6Q"
|
|
PLATFORM_mx5 = "IMX51"
|
|
PLATFORM_mx6sl = "IMX6S"
|
|
PLATFORM_mx6sx = "IMX6S"
|
|
|
|
PARALLEL_MAKE="-j 1"
|
|
EXTRA_OEMAKE = ""
|
|
|
|
SRC_URI = "${FSL_MIRROR}/imx-lib-${PV}.tar.gz"
|
|
|
|
do_compile () {
|
|
INCLUDE_DIR="-I${STAGING_KERNEL_DIR}/include/uapi -I${STAGING_KERNEL_DIR}/include \
|
|
-I${STAGING_KERNEL_DIR}/drivers/mxc/security/rng/include \
|
|
-I${STAGING_KERNEL_DIR}/drivers/mxc/security/sahara2/include"
|
|
|
|
oe_runmake CROSS_COMPILE="${HOST_PREFIX}" PLATFORM="${PLATFORM}" INCLUDE="${INCLUDE_DIR}" all
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake PLATFORM="${PLATFORM}" DEST_DIR="${D}" install
|
|
}
|