diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-12-05 10:52:33 -0800 |
---|---|---|
committer | Tom Zanussi <tom.zanussi@intel.com> | 2012-12-06 15:19:52 -0600 |
commit | 7b3810ec5e4f3ee2fe5a66a8913eec1ed610e273 (patch) | |
tree | c4de8d3a8f8b5522d24c65a8d0ac1678b1fc6c8d | |
parent | 54816a1bbadfaf1a0e6974ec8bafb049e205fcd6 (diff) | |
download | meta-intel-7b3810ec5e4f3ee2fe5a66a8913eec1ed610e273.tar.gz |
emgd-driver-bin: avoid text relocation warnings
This commits avoids this build time warning:
WARNING: QA Issue: ELF binary '/home/lserban/work/poky/build/tmp/work/core2-poky-linux/emgd-driver-bin/1.14-r4/packages-split/emgd-driver-bin/usr/lib/dri/emgd_drv_video.so' has relocations in .text
Fixes this bug:
[YOCTO #3525]
No PR bump, because there is no change in the output.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
-rw-r--r-- | common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb b/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb index 0d874e09..a7384199 100644 --- a/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb +++ b/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.14.bb | |||
@@ -39,8 +39,8 @@ PKG_${PN}-dev = "emgd-driver-dev" | |||
39 | PKG_${PN}-dbg = "emgd-driver-dbg" | 39 | PKG_${PN}-dbg = "emgd-driver-dbg" |
40 | PKG_${PN}-doc = "emgd-driver-doc" | 40 | PKG_${PN}-doc = "emgd-driver-doc" |
41 | 41 | ||
42 | # These are closed binaries generated elsewhere so don't check ldflags | 42 | # These are closed binaries generated elsewhere so don't check ldflags & text relocations |
43 | INSANE_SKIP_${PN} = "ldflags" | 43 | INSANE_SKIP_${PN} = "ldflags textrel" |
44 | # Inhibit warnings about files being stripped, we can't do anything about it. | 44 | # Inhibit warnings about files being stripped, we can't do anything about it. |
45 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | 45 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" |
46 | 46 | ||