diff options
| author | Jun Zhu <junzhu@nxp.com> | 2017-10-13 00:15:42 +0800 | 
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2017-10-16 14:27:29 -0200 | 
| commit | e9e9109a2544545c3ac3456ec18227d96e56a70f (patch) | |
| tree | 21ac404c956069b6ba66b21b6ce545faf6fa7cd1 /recipes-bsp/imx-lib/imx-lib_git.bb | |
| parent | 26800c9b52ae1bfc73e2ae9b600cd3bb76fa697e (diff) | |
| download | meta-freescale-e9e9109a2544545c3ac3456ec18227d96e56a70f.tar.gz | |
imx-lib: Add git recipe
- As the imx-lib git repository is public as git.freescale.com/imx/imx-lib.git,
build it from the git.
- Add support to i.MX 6SLL and 7ULP.
- Set PV as 5.8+${SRCPV}
Add the options to support i.MX 6SLL and 7ULP
Signed-off-by: Jun Zhu <junzhu@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-bsp/imx-lib/imx-lib_git.bb')
| -rw-r--r-- | recipes-bsp/imx-lib/imx-lib_git.bb | 43 | 
1 files changed, 43 insertions, 0 deletions
| diff --git a/recipes-bsp/imx-lib/imx-lib_git.bb b/recipes-bsp/imx-lib/imx-lib_git.bb new file mode 100644 index 000000000..d48ff5a56 --- /dev/null +++ b/recipes-bsp/imx-lib/imx-lib_git.bb | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | # Copyright (C) 2012-2016 Freescale Semiconductor | ||
| 2 | # Copyright (C) 2012-2016 O.S. Systems Software LTDA. | ||
| 3 | # Copyright 2017 NXP | ||
| 4 | |||
| 5 | DESCRIPTION = "Platform specific libraries for imx platform" | ||
| 6 | LICENSE = "LGPLv2.1" | ||
| 7 | SECTION = "multimedia" | ||
| 8 | DEPENDS = "virtual/kernel" | ||
| 9 | |||
| 10 | LIC_FILES_CHKSUM = "file://COPYING-LGPL-2.1;md5=fbc093901857fcd118f065f900982c24" | ||
| 11 | |||
| 12 | PE = "1" | ||
| 13 | |||
| 14 | PV = "5.8+${SRCPV}" | ||
| 15 | |||
| 16 | SRCBRANCH = "imx_4.9.11_1.0.0_ga" | ||
| 17 | SRC_URI = "git://git.freescale.com/imx/imx-lib.git;protocol=git;branch=${SRCBRANCH}" | ||
| 18 | SRCREV = "f5f14fc24581e5d6e689f42a56b5f2992f978ef4" | ||
| 19 | |||
| 20 | S = "${WORKDIR}/git" | ||
| 21 | |||
| 22 | PLATFORM_mx6q = "IMX6Q" | ||
| 23 | PLATFORM_mx6dl = "IMX6Q" | ||
| 24 | PLATFORM_mx6sl = "IMX6S" | ||
| 25 | PLATFORM_mx6sll = "IMX6UL" | ||
| 26 | PLATFORM_mx6sx = "IMX6S" | ||
| 27 | PLATFORM_mx6ul = "IMX6UL" | ||
| 28 | PLATFORM_mx7d = "IMX7" | ||
| 29 | PLATFORM_mx7ulp = "IMX7" | ||
| 30 | |||
| 31 | PARALLEL_MAKE="-j 1" | ||
| 32 | EXTRA_OEMAKE = "" | ||
| 33 | |||
| 34 | do_compile () { | ||
| 35 | INCLUDE_DIR="-I${STAGING_KERNEL_DIR}/include/uapi -I${STAGING_KERNEL_DIR}/include" | ||
| 36 | oe_runmake CROSS_COMPILE="${HOST_PREFIX}" PLATFORM="${PLATFORM}" INCLUDE="${INCLUDE_DIR}" all | ||
| 37 | } | ||
| 38 | |||
| 39 | do_install () { | ||
| 40 | oe_runmake PLATFORM="${PLATFORM}" DEST_DIR="${D}" install | ||
| 41 | } | ||
| 42 | |||
| 43 | COMPATIBLE_MACHINE = "(mx6|mx7)" | ||
