[meta-freescale] [PATCH 2/2] recipes: Limit BSP specific recipes on relevant SOCs

Andreas Müller schnitzeltony at gmail.com
Mon Sep 24 23:32:08 PDT 2018


On Tue, Sep 25, 2018 at 3:01 AM, Khem Raj <raj.khem at gmail.com> wrote:
> This helps in using meta-freescale with other BSP layers in same
> projects, which is common usecase
>
> Signed-off-by: Khem Raj <raj.khem at gmail.com>
> ---
>  dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb  | 2 ++
>  recipes-bsp/firmware-imx/firmware-imx_7.6.bb                   | 3 +++
>  recipes-bsp/mxsldr/mxsldr_git.bb                               | 2 ++
>  recipes-bsp/u-boot/u-boot-fslc-common_2018.09.inc              | 3 +++
>  recipes-bsp/uefi/uefi_git.bb                                   | 2 ++
>  recipes-dpaa/fmlib/fmlib_git.bb                                | 2 ++
>  recipes-graphics/drm/libdrm-armada_git.bb                      | 3 +++
>  recipes-graphics/xorg-driver/xf86-video-armada_git.bb          | 3 +++
>  recipes-kernel/dtc/dtc-145_git.bb                              | 2 ++
>  .../kernel-module-imx-gpu-viv_6.2.4.p1.2+fslc.bb               | 2 ++
>  .../kernel-modules/kernel-module-imx-gpu-viv_6.2.4.p1.6.bb     | 2 ++
>  11 files changed, 26 insertions(+)
>
> diff --git a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb
> index 76ece625..96a0dc4f 100644
> --- a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb
> +++ b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb
> @@ -45,3 +45,5 @@ PARALLEL_MAKE = ""
>
>  PACKAGE_ARCH = "${MACHINE_SOCARCH}"
>
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
> diff --git a/recipes-bsp/firmware-imx/firmware-imx_7.6.bb b/recipes-bsp/firmware-imx/firmware-imx_7.6.bb
> index 6c5f73ce..1a257d16 100644
> --- a/recipes-bsp/firmware-imx/firmware-imx_7.6.bb
> +++ b/recipes-bsp/firmware-imx/firmware-imx_7.6.bb
> @@ -100,3 +100,6 @@ PACKAGES =+ "${PN}-epdc ${PN}-brcm"
>
>  FILES_${PN}-epdc = "${base_libdir}/firmware/imx/epdc/"
>  FILES_${PN}-brcm = "${base_libdir}/firmware/bcm/*/*.bin ${base_libdir}/firmware/bcm/*/*.cal ${sysconfdir}/firmware/"
> +
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
> diff --git a/recipes-bsp/mxsldr/mxsldr_git.bb b/recipes-bsp/mxsldr/mxsldr_git.bb
> index 5c4b874b..bb7ca857 100644
> --- a/recipes-bsp/mxsldr/mxsldr_git.bb
> +++ b/recipes-bsp/mxsldr/mxsldr_git.bb
> @@ -16,3 +16,5 @@ S = "${WORKDIR}/git"
>  inherit autotools-brokensep pkgconfig
>
>  BBCLASSEXTEND = "native nativesdk"
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
> diff --git a/recipes-bsp/u-boot/u-boot-fslc-common_2018.09.inc b/recipes-bsp/u-boot/u-boot-fslc-common_2018.09.inc
> index aaefd67f..b728d4ad 100644
> --- a/recipes-bsp/u-boot/u-boot-fslc-common_2018.09.inc
> +++ b/recipes-bsp/u-boot/u-boot-fslc-common_2018.09.inc
> @@ -14,3 +14,6 @@ SRCBRANCH = "2018.09+fslc"
>  PV = "v2018.09+git${SRCPV}"
>
>  S = "${WORKDIR}/git"
> +
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
> diff --git a/recipes-bsp/uefi/uefi_git.bb b/recipes-bsp/uefi/uefi_git.bb
> index f157d03d..c683ff46 100644
> --- a/recipes-bsp/uefi/uefi_git.bb
> +++ b/recipes-bsp/uefi/uefi_git.bb
> @@ -28,3 +28,5 @@ FILES_${PN}-image += "/uefi/*"
>
>  PACKAGE_ARCH = "${MACHINE_SOCARCH}"
>
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
> diff --git a/recipes-dpaa/fmlib/fmlib_git.bb b/recipes-dpaa/fmlib/fmlib_git.bb
> index bbe1e535..1d9ca761 100644
> --- a/recipes-dpaa/fmlib/fmlib_git.bb
> +++ b/recipes-dpaa/fmlib/fmlib_git.bb
> @@ -28,3 +28,5 @@ ALLOW_EMPTY_${PN} = "1"
>
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>
> +COMPATIBLE_MACHINE ?= "null"
> +COMPATIBLE_MACHINE_imx = "(.*)"
> diff --git a/recipes-graphics/drm/libdrm-armada_git.bb b/recipes-graphics/drm/libdrm-armada_git.bb
> index 937c68d7..990da398 100644
> --- a/recipes-graphics/drm/libdrm-armada_git.bb
> +++ b/recipes-graphics/drm/libdrm-armada_git.bb
> @@ -13,3 +13,6 @@ SRC_URI = "git://git.armlinux.org.uk/~rmk/libdrm-armada.git"
>  inherit autotools pkgconfig
>
>  S = "${WORKDIR}/git"
> +
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
^ I bet this breaks suse-mainline-bsp. Shhouldn't this be
COMPATIBLE_HOST_use_mainline_bsp?
> diff --git a/recipes-graphics/xorg-driver/xf86-video-armada_git.bb b/recipes-graphics/xorg-driver/xf86-video-armada_git.bb
> index 30e3ae47..a1e9ccdd 100644
> --- a/recipes-graphics/xorg-driver/xf86-video-armada_git.bb
> +++ b/recipes-graphics/xorg-driver/xf86-video-armada_git.bb
> @@ -44,3 +44,6 @@ EXTRA_OECONF = "--disable-etnaviv \
>                  --disable-vivante \
>                  --with-etnaviv-source=${WORKDIR}/etna_viv \
>                  "
> +
> +COMPATIBLE_HOST ?= "null"
> +COMPATIBLE_HOST_imx = "(.*)"
^ Same

As far as I know the 'armadas' are required for
mainline-kernel/etnaviv only. Did you test use_mainline_bsp override?

Andreas


More information about the meta-freescale mailing list