summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2014-04-19 10:42:11 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2014-04-19 10:53:07 -0300
commitbf431b06a27c2be728c93fedb0e9d2eb4d29ec85 (patch)
tree363077379a4b50526a8b4519b8aed5db11ce1d1d
parent97d7c52061548e7ddebe8b880d1b070210a4c6f0 (diff)
downloadmeta-fsl-arm-bf431b06a27c2be728c93fedb0e9d2eb4d29ec85.tar.gz
u-boot-fslc: Fix native contamination for libssl
In case host does not have libssl available, mkimage will fail to run as the linking flags where not complete. Fixes [YOCTO: #6098] Change-Id: Ia7bd80b500ac6e60357f1e61d304bee4e3cb6832 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-bsp/u-boot/u-boot-fslc.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot-fslc.inc b/recipes-bsp/u-boot/u-boot-fslc.inc
index 485c252..4ed19d6 100644
--- a/recipes-bsp/u-boot/u-boot-fslc.inc
+++ b/recipes-bsp/u-boot/u-boot-fslc.inc
@@ -1,4 +1,4 @@
1# Copyright (C) 2012, 2013 O.S. Systems Software LTDA. 1# Copyright (C) 2012-2014 O.S. Systems Software LTDA.
2# Released under the MIT license (see COPYING.MIT for the terms) 2# Released under the MIT license (see COPYING.MIT for the terms)
3 3
4require recipes-bsp/u-boot/u-boot.inc 4require recipes-bsp/u-boot/u-boot.inc
@@ -22,7 +22,7 @@ S = "${WORKDIR}/git"
22# used for generating the boot logo and other tools used 22# used for generating the boot logo and other tools used
23# during the build process. 23# during the build process.
24EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CPPFLAGS}" \ 24EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CPPFLAGS}" \
25 HOSTLDFLAGS="-L${STAGING_BASE_LIBDIR_NATIVE} -L${STAGING_LIBDIR_NATIVE}" \ 25 HOSTLDFLAGS="${BUILD_LDFLAGS}" \
26 HOSTSTRIP=true' 26 HOSTSTRIP=true'
27 27
28PACKAGE_ARCH = "${MACHINE_ARCH}" 28PACKAGE_ARCH = "${MACHINE_ARCH}"