diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-03-21 12:12:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-21 14:06:54 +0000 |
commit | 90bf61226d1bebd846ad9dc028affc334862e794 (patch) | |
tree | 608cd11e71df75d037cc7c1d6ecaa2b0634bfadb /meta/recipes-devtools/syslinux/files/no-strip.patch | |
parent | 678b895fba610c71fcbb13555bf96322dcb15aea (diff) | |
download | openembedded-core-90bf61226d1bebd846ad9dc028affc334862e794.tar.gz openembedded-core-90bf61226d1bebd846ad9dc028affc334862e794.tar.bz2 openembedded-core-90bf61226d1bebd846ad9dc028affc334862e794.zip |
syslinux: fix stripped file warnings
Fix the following package warnings:
WARNING: File '/usr/bin/memdiskfind' from syslinux was already stripped, this will prevent future debugging!
WARNING: File '/usr/bin/syslinux' from syslinux was already stripped, this will prevent future debugging!
WARNING: File '/usr/bin/gethostip' from syslinux was already stripped, this will prevent future debugging!
WARNING: File '/usr/bin/isohybrid' from syslinux was already stripped, this will prevent future debugging!
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/syslinux/files/no-strip.patch')
-rw-r--r-- | meta/recipes-devtools/syslinux/files/no-strip.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/syslinux/files/no-strip.patch b/meta/recipes-devtools/syslinux/files/no-strip.patch new file mode 100644 index 0000000000..775851a75d --- /dev/null +++ b/meta/recipes-devtools/syslinux/files/no-strip.patch @@ -0,0 +1,31 @@ +Disable stripping of binaries + +We don't want to strip these as this is handled separately at package +time. + +Upstream-Status: Inappropriate [configuration] + +Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> + +--- syslinux-4.03.orig/mtools/Makefile ++++ syslinux-4.03/mtools/Makefile +@@ -4,7 +4,7 @@ include $(topdir)/MCONFIG + OPTFLAGS = -g -Os + INCLUDES = -I. -I.. -I../libfat -I../libinstaller + CFLAGS = $(GCCWARN) -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) +-LDFLAGS = -s ++LDFLAGS = + + SRCS = syslinux.c \ + ../libinstaller/fat.c \ +--- syslinux-4.03.orig/utils/Makefile ++++ syslinux-4.03/utils/Makefile +@@ -18,7 +18,7 @@ topdir = .. + include $(topdir)/MCONFIG + + CFLAGS = $(GCCWARN) -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 +-LDFLAGS = -O2 -s ++LDFLAGS = -O2 + + TARGETS = mkdiskimage isohybrid gethostip memdiskfind + TARGETS += isohybrid.pl # about to be obsoleted |