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>
66 lines
3.0 KiB
Plaintext
66 lines
3.0 KiB
Plaintext
# Automatically set PACKAGE_ARCH for MACHINE_SOCARCH
|
|
#
|
|
# This allow to easy reuse of binary packages among similar SoCs. The
|
|
# usual use for this is to share SoC specific packages among different
|
|
# boards.
|
|
#
|
|
# MACHINE_SOCARCH_FILTER list all packages associated with
|
|
# MACHINE_SOCARCH and, when match, will set PACKAGE_ARCH as MACHINE_SOCARCH
|
|
#
|
|
# MACHINE_ARCH_FILTER list all packages associated with
|
|
# MACHINE_ARCH and, when match, will set PACKAGE_ARCH as MACHINE_ARCH
|
|
#
|
|
# For example, in meta-fsl-arm, this is used to share GPU packages for
|
|
# i.MX53 boards (as all them share the AMD GPU) and i.MX6 based boards
|
|
# (as all them share Vivante GPU).
|
|
#
|
|
# To use the class, specify, for example:
|
|
#
|
|
# MACHINE_SOCARCH_SUFFIX_soc = "-soc"
|
|
#
|
|
# and the need filters, as:
|
|
#
|
|
# MACHINE_ARCH_FILTER = "virtual/kernel"
|
|
# MACHINE_SOCARCH_FILTER_soc = "virtual/libgles1 ... virtual/libgl"
|
|
#
|
|
# Copyright 2013-2015 (C) O.S. Systems Software LTDA.
|
|
|
|
python __anonymous () {
|
|
machine_arch_filter = set((d.getVar("MACHINE_ARCH_FILTER", True) or "").split())
|
|
machine_socarch_filter = set((d.getVar("MACHINE_SOCARCH_FILTER", True) or "").split())
|
|
if machine_socarch_filter or machine_arch_filter:
|
|
provides = set((d.getVar("PROVIDES", True) or "").split())
|
|
depends = set((d.getVar("DEPENDS", True) or "").split())
|
|
PN = d.getVar("PN", True)
|
|
|
|
package_arch = None
|
|
if list(machine_arch_filter & (provides | depends)):
|
|
package_arch = d.getVar("MACHINE_ARCH", True)
|
|
elif list(machine_socarch_filter & (provides | depends)):
|
|
package_arch = d.getVar("MACHINE_SOCARCH", True)
|
|
if not package_arch:
|
|
raise bb.parse.SkipPackage("You must set MACHINE_SOCARCH as MACHINE_SOCARCH_FILTER is set for this SoC.")
|
|
|
|
machine_socarch_suffix = d.getVar("MACHINE_SOCARCH_SUFFIX", True)
|
|
if not machine_socarch_suffix:
|
|
raise bb.parse.SkipPackage("You must set MACHINE_SOCARCH_SUFFIX as MACHINE_SOCARCH_FILTER is set for this SoC.")
|
|
|
|
if package_arch:
|
|
bb.debug(1, "Use '%s' as package archictecture for '%s'" % (package_arch, PN))
|
|
d.setVar("PACKAGE_ARCH", package_arch)
|
|
|
|
cur_package_archs = (d.getVar("PACKAGE_ARCHS", True) or "").split()
|
|
arch_extra_socarch = (d.getVar("ARM_EXTRA_SOCARCH", True) or "")
|
|
thumb_extra_socarch = (d.getVar("THUMB_EXTRA_SOCARCH", True) or "")
|
|
if not arch_extra_socarch in cur_package_archs:
|
|
d.appendVar("PACKAGE_EXTRA_ARCHS", " %s" % arch_extra_socarch)
|
|
|
|
if not thumb_extra_socarch in cur_package_archs:
|
|
d.appendVar("PACKAGE_EXTRA_ARCHS", " %s" % thumb_extra_socarch)
|
|
}
|
|
|
|
ARM_EXTRA_SOCARCH = "${ARMPKGARCH}${ARMPKGSFX_DSP}${ARMPKGSFX_EABI}${ARMPKGSFX_ENDIAN}${ARMPKGSFX_FPU}${MACHINE_SOCARCH_SUFFIX}"
|
|
THUMB_EXTRA_SOCARCH = "${ARMPKGARCH}${ARM_THUMB_SUFFIX}${ARMPKGSFX_DSP}${ARMPKGSFX_EABI}${ARMPKGSFX_ENDIAN}${ARMPKGSFX_FPU}${MACHINE_SOCARCH_SUFFIX}"
|
|
|
|
MACHINE_SOCARCH = "${@bb.utils.contains('ARM_INSTRUCTION_SET', 'thumb', '${THUMB_EXTRA_SOCARCH}', '${ARM_EXTRA_SOCARCH}', d)}"
|