diff options
author | Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com> | 2020-04-16 22:17:45 +0000 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-04-16 20:04:08 -0300 |
commit | 4ab569fb67b9499e4782071aec9ba92174184786 (patch) | |
tree | f89923cd3947f2761bd0119eeda58ebf95836eb6 /classes | |
parent | ccf7a0a99308611bff0241b021681507b6ee78cc (diff) | |
download | meta-freescale-4ab569fb67b9499e4782071aec9ba92174184786.tar.gz |
recipes-*: refine restrictions for NXP BSP
Certain packages are using linux-imx-headers, which enforces them to use
NXP BSP since headers are provided from the NXP kernel tree.
Those recipes, which requires NXP kernel headers, are now including the
use-imx-headers class to make sure the correct headers package is used.
Since the introduction of separation between NXP and Mainline BSP for
certain machines, recipes which are NXP-dependent are getting their
COMPATIBLE_HOST to be marked as (null) effectively making them
incompatible with mainline BSP which is expected behavior.
By extending this restriction into the use-imx-headers class, all
recipes which inherits is (because it is required) are getting
automatically restricted to NXP BSP, hence making package NXP-dependent
much easier.
linux-imx-headers is marked as "NXP-only" but it is done explicitly
inside the recipe in order to avoid confusion of inheriting the class.
Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Diffstat (limited to 'classes')
-rw-r--r-- | classes/use-imx-headers.bbclass | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/classes/use-imx-headers.bbclass b/classes/use-imx-headers.bbclass index 9dcd864d..d2214b6d 100644 --- a/classes/use-imx-headers.bbclass +++ b/classes/use-imx-headers.bbclass | |||
@@ -17,3 +17,15 @@ DEPENDS_append_imx = " linux-imx-headers" | |||
17 | PACKAGE_ARCH_imx ?= "${MACHINE_SOCARCH}" | 17 | PACKAGE_ARCH_imx ?= "${MACHINE_SOCARCH}" |
18 | 18 | ||
19 | STAGING_INCDIR_IMX = "${STAGING_INCDIR}/imx" | 19 | STAGING_INCDIR_IMX = "${STAGING_INCDIR}/imx" |
20 | |||
21 | # Recipes that inherit this class are contracted to use NXP BSP only. | ||
22 | # This is done by overriding the COMPATIBLE_HOST, as this would effectively | ||
23 | # cause recipes to be skipped in case if 'use-nxp-bsp' override is not | ||
24 | # defined for them. This effectively marks recipes that should only be | ||
25 | # built using NXP BSP, and gives an indication to mainline BSP creators | ||
26 | # that recipe is not compatible with mainline. | ||
27 | # | ||
28 | # Typical example here would be imx-vpu-hantro recipe, which requires NXP | ||
29 | # BSP and is not compatible with mainline. | ||
30 | COMPATIBLE_HOST = '(null)' | ||
31 | COMPATIBLE_HOST_use-nxp-bsp = '.*' | ||