From patchwork Sat Jan 21 06:25:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/4] ltp: disable elf binary stripping Date: Sat, 21 Jan 2012 06:25:21 -0000 From: Nitin A Kamble X-Patchwork-Id: 19921 Message-Id: To: openembedded-core@lists.openembedded.org From: Nitin A Kamble Otherwise the ltp tests ldd01 & nm01 fail due to missing stripped information. This Fixes these bugs: [YOCTO #1922] [YOCTO #1923] Signed-off-by: Nitin A Kamble --- meta/recipes-extended/ltp/ltp_20110915.bb | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20110915.bb b/meta/recipes-extended/ltp/ltp_20110915.bb index dabc0f0..fd0510e 100644 --- a/meta/recipes-extended/ltp/ltp_20110915.bb +++ b/meta/recipes-extended/ltp/ltp_20110915.bb @@ -3,7 +3,7 @@ DESCRIPTION = "The Linux Test Project is a joint project with SGI, IBM, OSDL, an HOMEPAGE = "http://ltp.sourceforge.net" SECTION = "console/utils" -PR = "r0" +PR = "r1" LICENSE = "GPLv2 & GPLv2+ & LGPLv2+ & LGPLv2.1+ & BSD-2-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ @@ -66,3 +66,7 @@ do_install(){ # We will add expect for enhancement in future find ${D} -type f -print | xargs grep "\!.*\/usr\/bin\/expect" | awk -F":" '{print $1}' | xargs rm -f } + +# Avoid geenrated binaries stripping. Otherwise some of the ltp tests such as ldd01 & nm fails +INHIBIT_PACKAGE_STRIP = "1" +