diff options
author | Koen Kooi <koen.kooi@linaro.org> | 2014-04-14 10:03:37 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-23 11:43:27 +0100 |
commit | edb5f34b79d2a3781dbe3d9d15287d067c731701 (patch) | |
tree | a83e98b3bc1e0d7f584279eb7bbcbc87e325b224 /meta/recipes-bsp/grub | |
parent | bb3f5ce741d99ea98a0613d67515447d04ea9362 (diff) | |
download | poky-edb5f34b79d2a3781dbe3d9d15287d067c731701.tar.gz |
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.
(From OE-Core rev: f95c7611007ddda3fe36db90168c7d5de096f9cd)
Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub')
-rw-r--r-- | meta/recipes-bsp/grub/grub_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
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() { | |||
53 | do_install_append () { | 53 | do_install_append () { |
54 | install -d ${D}${sysconfdir}/grub.d | 54 | install -d ${D}${sysconfdir}/grub.d |
55 | install -m 0755 ${WORKDIR}/40_custom ${D}${sysconfdir}/grub.d/40_custom | 55 | install -m 0755 ${WORKDIR}/40_custom ${D}${sysconfdir}/grub.d/40_custom |
56 | |||
56 | } | 57 | } |
57 | 58 | ||
59 | # debugedit chokes on bare metal binaries | ||
60 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | ||
61 | |||
58 | RDEPENDS_${PN} = "diffutils freetype" | 62 | RDEPENDS_${PN} = "diffutils freetype" |
59 | FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug" | 63 | FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug" |
60 | 64 | ||