diff options
-rw-r--r-- | meta/recipes-devtools/syslinux/files/no-strip.patch | 31 | ||||
-rw-r--r-- | meta/recipes-devtools/syslinux/syslinux_4.03.bb | 5 |
2 files changed, 34 insertions, 2 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 @@ | |||
1 | Disable stripping of binaries | ||
2 | |||
3 | We don't want to strip these as this is handled separately at package | ||
4 | time. | ||
5 | |||
6 | Upstream-Status: Inappropriate [configuration] | ||
7 | |||
8 | Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> | ||
9 | |||
10 | --- syslinux-4.03.orig/mtools/Makefile | ||
11 | +++ syslinux-4.03/mtools/Makefile | ||
12 | @@ -4,7 +4,7 @@ include $(topdir)/MCONFIG | ||
13 | OPTFLAGS = -g -Os | ||
14 | INCLUDES = -I. -I.. -I../libfat -I../libinstaller | ||
15 | CFLAGS = $(GCCWARN) -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) | ||
16 | -LDFLAGS = -s | ||
17 | +LDFLAGS = | ||
18 | |||
19 | SRCS = syslinux.c \ | ||
20 | ../libinstaller/fat.c \ | ||
21 | --- syslinux-4.03.orig/utils/Makefile | ||
22 | +++ syslinux-4.03/utils/Makefile | ||
23 | @@ -18,7 +18,7 @@ topdir = .. | ||
24 | include $(topdir)/MCONFIG | ||
25 | |||
26 | CFLAGS = $(GCCWARN) -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 | ||
27 | -LDFLAGS = -O2 -s | ||
28 | +LDFLAGS = -O2 | ||
29 | |||
30 | TARGETS = mkdiskimage isohybrid gethostip memdiskfind | ||
31 | TARGETS += isohybrid.pl # about to be obsoleted | ||
diff --git a/meta/recipes-devtools/syslinux/syslinux_4.03.bb b/meta/recipes-devtools/syslinux/syslinux_4.03.bb index 2ab6878c4d..a8a1f9475e 100644 --- a/meta/recipes-devtools/syslinux/syslinux_4.03.bb +++ b/meta/recipes-devtools/syslinux/syslinux_4.03.bb | |||
@@ -7,10 +7,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | |||
7 | # If you really want to run syslinux, you need mtools. We just want the | 7 | # If you really want to run syslinux, you need mtools. We just want the |
8 | # ldlinux.* stuff for now, so skip mtools-native | 8 | # ldlinux.* stuff for now, so skip mtools-native |
9 | DEPENDS = "nasm-native" | 9 | DEPENDS = "nasm-native" |
10 | PR = "r6" | 10 | PR = "r7" |
11 | 11 | ||
12 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/4.xx/syslinux-${PV}.tar.bz2 \ | 12 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/4.xx/syslinux-${PV}.tar.bz2 \ |
13 | file://cross-build.patch" | 13 | file://cross-build.patch \ |
14 | file://no-strip.patch" | ||
14 | 15 | ||
15 | SRC_URI[md5sum] = "a7ca38a0a5786b6efae8fb01a1ae8070" | 16 | SRC_URI[md5sum] = "a7ca38a0a5786b6efae8fb01a1ae8070" |
16 | SRC_URI[sha256sum] = "c65567e324f9d1f7f794ae8f9578a0292bbd47d7b8d895a004d2f0152d0bda38" | 17 | SRC_URI[sha256sum] = "c65567e324f9d1f7f794ae8f9578a0292bbd47d7b8d895a004d2f0152d0bda38" |