From c58a5d88a21613c9e4b031df9aa1e19392547f4d Mon Sep 17 00:00:00 2001 From: "Maupin, Chase" Date: Wed, 2 Jul 2014 19:04:31 +0000 Subject: [PATCH] vis: inhibit package strip for DSP binaries * These binaries are for the DSP and the strip command in the ARM compiler does not work on them. Without this the following error is seen: * ERROR: runstrip: ''arm-linux-gnueabihf-strip' --remove-section=.comment --remove-section=.note '/dra7-dsp1-fw-radio.xe66'' strip command failed Signed-off-by: Chase Maupin Signed-off-by: Denys Dmytriyenko --- recipes-bsp/vis-fw/vis_01.50.07.15.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/recipes-bsp/vis-fw/vis_01.50.07.15.bb b/recipes-bsp/vis-fw/vis_01.50.07.15.bb index 85d85397..dfd2f411 100644 --- a/recipes-bsp/vis-fw/vis_01.50.07.15.bb +++ b/recipes-bsp/vis-fw/vis_01.50.07.15.bb @@ -5,6 +5,8 @@ LIC_FILES_CHKSUM = "file://${S}/J6_VIS_DEMO_LINUX_BINARY_01.50.07.15-Manifest.ht COMPATIBLE_MACHINE = "dra7xx-evm" PACKAGE_ARCH = "${MACHINE_ARCH}" +PR = "r1" + SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/vis/01_50_07_15/exports/vis-${MACHINE}-01.50.07.15.tar.gz;protocol=http" SRC_URI[md5sum] = "fe8b00e398fb3b7ada0c15b601867acb" @@ -28,4 +30,5 @@ RDEPENDS_${PN} += "${PN}-fw" FILES_${PN}-fw += "${base_libdir}/firmware/${DSPAPP}" INSANE_SKIP_${PN}-fw = "arch" -INHIBIT_PACKAGE_DEBUG_SPLIT = "1" +INHIBIT_PACKAGE_DEBUG_SPLIT = "1" +INHIBIT_PACKAGE_STRIP = "1"