We use microwindows for the fbtest application. The recipe is imported
from openembedded classic and modified to work in yocto.
The configuration file has been modified to match the one in DEL legacy.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
We need to split the EXTRA_OEMAKE flags as the do_make_scripts stage
fails if we pass a "M=" argument.
We override module_do_compile and module_do_install to add the extra
make flags as I have not found a working way of overriding EXTRA_OEMAKE.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
The mx5 GPU libraries provide OpenGL ES1, OpenEGL and OpenGL ES2 only
so we need to ajust the PREFERRED_PROVIDER.
There is an equivalent commit in FSL layer.
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This is needed to use SOC_FAMILY data and was the reason why imx-lib was
not compiling correctly (see commit cec37f0).
Thus revert also commit cec37f0 because that workaround is not needed
anymore.
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This is based on the recipe found in the openembedded layer.
http://cgit.openembedded.org/openembedded/log/recipes/crda/crda_1.1.1.bb
It needs to compile with libnl 2.0, so we set a distro preferred version
for it.
Also, we make the recipe configurable to compile without gcrypt. The
Makefile is patched to compile without gcrypt.
Compiling with gcrypt would need the addition of the python-m2crypto-native
recipe which is not done so it is currently broken.
The compilation without gcrypt is how DEL is currently doing it so this
should be enough for our needs.
Also, the device manager is configurable and set to busybox-mdev by
default.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
We have been using ${PN}-${PV}, change to use only the package name and
leave ${PN}-${PV} for actual recipes.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This included the recipe where the driver is cloned from git and compiled
from source.
The recipe also copies the firmware files and the if-pre-up scrip.
Pending is the recipe to link from precompiled objects in a .tar.gz file.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
To successfully compile mplayer we need to append the meta-oe recipe
not to use X, live555 or fontconfig.
They way it's done X can be added back in the distro features, and both
live555 and fontconfig through virtual runtime package configuration.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
The SRC_URI is broken, and in the new git repository the same SRCREV does
not exist.
We can't currently test libdvdread functionality, but it's enough to
compile mplayer successfully.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
When building del-image-minimal we are seeing the following errors:
NOTE: Running noexec task 1211 of 1214 (ID: 220, /home/alex/Projects/
meta-fsl-arm/recipes-multimedia/fsl-mm-core/fsl-mm-codeclib_2.0.3.bb,
do_package_write)
ERROR: QA Issue: gst-fsl-plugin rdepends on fsl-mm-codeclib-dev
ERROR: QA run found fatal errors. Please consider fixing them.
NOTE: Running task 853 of 1214 (ID: 221, /home/alex/Projects/
meta-fsl-arm/recipes-multimedia/fsl-mm-core/fsl-mm-codeclib_2.0.3.bb,
do_package)
NOTE: package fsl-mm-codeclib-2.0.3-r2.0digi.0: task do_package: Started
ERROR: QA Issue: fsl-mm-codeclib rdepends on fsl-mm-codeclib-dev
The error means that fsl-mm-codeclib and gst-fsl-plugin are including
libraries which should only be included on the dev version, typically
.so files.
This is only a workaround, the patch should come from those packages.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
WARNING: For recipe fsl-mm-codeclib, the following files/directories were installed but not shipped in any package:
WARNING: /usr/lib/lib_ogg_parser_arm9_elinux.3.0.1.07.00
WARNING: /usr/lib/lib_ogg_parser_arm11_elinux.3.0.1.07.00
Not sure why these aren't .so.x.y.z though.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
Doing it in the layer configuration means we don't have to do it in
each recipe that requires it.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
Now that all code is our own as we are not copying recipes into the
layer but overriden the ones in meta-fsl-arm, the prefix to comments
have no use.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
In this way the layer should still be able to compile the default
machines supported by meta-fsl-arm.
Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>