From b028f5d9a8d9df8ebbfe776115b3e4f7b8c735a5 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sat, 19 Apr 2014 10:42:11 -0300 Subject: [PATCH] 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 --- meta-fsl-arm/recipes-bsp/u-boot/u-boot-fslc.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-fsl-arm/recipes-bsp/u-boot/u-boot-fslc.inc b/meta-fsl-arm/recipes-bsp/u-boot/u-boot-fslc.inc index 485c252e..4ed19d64 100644 --- a/meta-fsl-arm/recipes-bsp/u-boot/u-boot-fslc.inc +++ b/meta-fsl-arm/recipes-bsp/u-boot/u-boot-fslc.inc @@ -1,4 +1,4 @@ -# Copyright (C) 2012, 2013 O.S. Systems Software LTDA. +# Copyright (C) 2012-2014 O.S. Systems Software LTDA. # Released under the MIT license (see COPYING.MIT for the terms) require recipes-bsp/u-boot/u-boot.inc @@ -22,7 +22,7 @@ S = "${WORKDIR}/git" # used for generating the boot logo and other tools used # during the build process. EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CPPFLAGS}" \ - HOSTLDFLAGS="-L${STAGING_BASE_LIBDIR_NATIVE} -L${STAGING_LIBDIR_NATIVE}" \ + HOSTLDFLAGS="${BUILD_LDFLAGS}" \ HOSTSTRIP=true' PACKAGE_ARCH = "${MACHINE_ARCH}" -- 2.40.1