From: Koen Kooi Date: Mon, 14 Apr 2014 08:03:37 +0000 (+0200) Subject: grub git: workaround debugedit problems X-Git-Tag: 2015-4~3061 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f95c7611007ddda3fe36db90168c7d5de096f9cd;p=openembedded-core.git grub git: workaround debugedit problems Debugedit errors out on bare metal binaries. The first version of this patch limited it to 64 bit targets, but the problem now shows up on 32 bit targets (minnowboard) as well. Signed-off-by: Koen Kooi Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-bsp/grub/grub_git.bb b/meta/recipes-bsp/grub/grub_git.bb index 9b5d9bbd7d..114cf77de9 100644 --- a/meta/recipes-bsp/grub/grub_git.bb +++ b/meta/recipes-bsp/grub/grub_git.bb @@ -53,8 +53,12 @@ do_configure_prepend() { do_install_append () { install -d ${D}${sysconfdir}/grub.d install -m 0755 ${WORKDIR}/40_custom ${D}${sysconfdir}/grub.d/40_custom + } +# debugedit chokes on bare metal binaries +INHIBIT_PACKAGE_DEBUG_SPLIT = "1" + RDEPENDS_${PN} = "diffutils freetype" FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug"