Since the last upgrade of skales recipes, it now loads libfdt.so directly (from
python using ctypes), so we need to set LD_LIBRARY_PATH so that it will find the
library in the relevant sysroot.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
dtbtool has been improved to work directly from compatible string, and no
longer requires msm-id and board-id.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
(cherry picked from commit fb34dca197960086fe81dd5b0bcf32580dd24412)
This 32-bit machine is not intended to build 32-bit linux kernel,
so it uses "linux-dummy" for virtual/kernel provider, and doesn't
include the kernel into the rootfs image.
Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
into a single do_deploy_append for all targets, and move
the machine-/SoC-specific bootimg creation settings into
the relevant configuration files.
Signed-off-by: Matt Madison <matt@madison.systems>
[nicolas.dechesne@linaro.org: move dt image symlink creation]
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
and KERNEL_IMAGE_SYMLINK_NAME as the base for the
deployed dt and boot image names, to reduce redundancy.
Signed-off-by: Matt Madison <matt@madison.systems>
This kernel recipe was orginally used on IFC6410 and uses the Qualcomm CAF 3.4
Android kernel. It is not being used anymore.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
version -4 comes with a new patch, so update recipe as well to take its patches
from the debian source folder, to avoid duplication of patches.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
KERNEL_OUTPUT used to be set in kernel.bbclass as the kernel output file, and it
was used for convenience here. However in OE-core commit
849b67b2e4820564b5e5c9bd4bb293c44351c5f3 the definition of KERNEL_OUTPUT was
removed (for legit reasons), and our recipe no longer works. Since we use
KERNEL_OUTPUT in the do_compile() step it is actually fine (and even simpler) to
directly use the kernel binary anyways.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
The fixup.bin was a workaround for a specific issue on very old kernel, and is
no longer needed.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
If meta-qcom is used in a configuration without meta-oe, bitbake will fail to
parse with this error:
ERROR: No recipes available for:
../build-nodistro/conf/../../layers/meta-qcom/recipes-navigation/gpsd/gpsd-machine-conf_%.bbappend
The layer.conf file has logic to selectively add .bb and .bbappend from layer
specific folders, so let's move this bbappend into the 'openembedded-layer', so
that it will be parsed only if 'openembedded-layer' (e.g. meta-oe) is being used.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>