mirror of
https://github.com/nxp-imx/meta-imx.git
synced 2025-10-22 15:22:15 +02:00

- Add PACKAGECONFIG to capture the build differences - Replace the Vivante-specific version with 'git' - Add -mali to the binary package name and to the SRC_URI name Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
12 lines
709 B
Plaintext
12 lines
709 B
Plaintext
# fsl-eula-graphics.bbclass extends the naming scheme in fsl-eula.bbclass
|
|
# to allow for graphics-backend-specific archives.
|
|
IMX_PACKAGE_NAME:append:class-target = "${IMX_PACKAGE_NAME_APPEND}${IMX_PACKAGE_NAME_APPEND_MALI}"
|
|
SRC_URI_NAME:append:class-target = "${IMX_PACKAGE_NAME_APPEND}${IMX_PACKAGE_NAME_APPEND_MALI}"
|
|
IMX_PACKAGE_NAME_APPEND = ""
|
|
IMX_PACKAGE_NAME_APPEND:class-target = \
|
|
"${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '-wayland', \
|
|
bb.utils.contains('DISTRO_FEATURES', 'x11', '-x11', \
|
|
'-fb', d), d)}"
|
|
IMX_PACKAGE_NAME_APPEND_MALI = ""
|
|
IMX_PACKAGE_NAME_APPEND_MALI:mx95-nxp-bsp = "-mali"
|