mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-05 05:14:44 +02:00

The series [1] changed the way sources are fetched/unpacked and S needs to follow that. Additionally for git repos it moved away from having 'git/' as the checkout directory. This has been partly tested by building weston based image for imx6/imx6ull/imx7/imx8/imx8mm/imx8mp/imx95 based images. E.g. none of the recipes specific for qoriq is built time tested. As walnascar is no longer compatible with master/whinlatter drop it from LAYERSERIES_COMPAT. [1] https://lore.kernel.org/openembedded-core/20250616095000.2918921-1-alex.kanavin@gmail.com/ Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
75 lines
3.0 KiB
Plaintext
75 lines
3.0 KiB
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have a packages directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "freescale-layer"
|
|
BBFILE_PATTERN_freescale-layer := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_freescale-layer = "5"
|
|
LAYERSERIES_COMPAT_freescale-layer = "whinlatter"
|
|
LAYERDEPENDS_freescale-layer = "core"
|
|
|
|
# Add the Freescale-specific licenses into the metadata
|
|
LICENSE_PATH += "${LAYERDIR}/custom-licenses"
|
|
|
|
FSL_EULA_FILE = "${LAYERDIR}/EULA"
|
|
|
|
IMX_MIRROR ?= "https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/"
|
|
|
|
# FIXME: set this to avoid changing all the recipes that use it
|
|
FSL_MIRROR ?= "${IMX_MIRROR}"
|
|
|
|
MIRRORS += " \
|
|
${IMX_MIRROR} http://download.ossystems.com.br/bsp/freescale/source/ \n \
|
|
"
|
|
# Needs gbm_bo_create_with_modifiers2() API which is not
|
|
# implemented in imx GL driver implementation
|
|
COMPATIBLE_HOST:pn-xdg-desktop-portal-wlr:imxgpu = "(null)"
|
|
|
|
# For compatibility with layers before scarthgap
|
|
PROVIDES:pn-bmap-tools-native = "bmaptool-native"
|
|
RPROVIDES:pn-bmap-tools-native:bmap-tools-native = "bmaptool-native"
|
|
PROVIDES:pn-bmap-tools = "bmaptool"
|
|
RPROVIDES:pn-bmap-tools:bmap-tools = "bmaptool"
|
|
|
|
BBFILES_DYNAMIC += " \
|
|
aglprofilegraphical:${LAYERDIR}/dynamic-layers/aglprofilegraphical/*/*/*.bb \
|
|
aglprofilegraphical:${LAYERDIR}/dynamic-layers/aglprofilegraphical/*/*/*.bbappend \
|
|
\
|
|
chromium-browser-layer:${LAYERDIR}/dynamic-layers/chromium-browser-layer/*/*/*.bb \
|
|
chromium-browser-layer:${LAYERDIR}/dynamic-layers/chromium-browser-layer/*/*/*.bbappend \
|
|
\
|
|
filesystem-layer:${LAYERDIR}/dynamic-layers/filesystem-layer/*/*/*.bb \
|
|
filesystem-layer:${LAYERDIR}/dynamic-layers/filesystem-layer/*/*/*.bbappend \
|
|
\
|
|
gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/*/*/*.bb \
|
|
gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/*/*/*.bbappend \
|
|
\
|
|
ivi:${LAYERDIR}/dynamic-layers/ivi/*/*/*.bb \
|
|
ivi:${LAYERDIR}/dynamic-layers/ivi/*/*/*.bbappend \
|
|
\
|
|
meta-arm:${LAYERDIR}/dynamic-layers/meta-arm/*/*/*.bbappend \
|
|
\
|
|
arm-toolchain:${LAYERDIR}/dynamic-layers/arm-toolchain/*/*/*.bb \
|
|
\
|
|
multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bb \
|
|
multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bbappend \
|
|
\
|
|
openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \
|
|
openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \
|
|
\
|
|
qt4-layer:${LAYERDIR}/dynamic-layers/qt4-layer/*/*/*.bb \
|
|
qt4-layer:${LAYERDIR}/dynamic-layers/qt4-layer/*/*/*.bbappend \
|
|
\
|
|
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \
|
|
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
|
|
\
|
|
qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/*/*/*.bb \
|
|
qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/*/*/*.bbappend \
|
|
\
|
|
virtualization-layer:${LAYERDIR}/dynamic-layers/virtualization-layer/*/*/*.bb \
|
|
virtualization-layer:${LAYERDIR}/dynamic-layers/virtualization-layer/*/*/*.bbappend \
|
|
"
|