Hello community, here is the log from the commit of package syslinux for openSUSE:Factory checked in at 2018-12-03 10:03:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/syslinux (Old) and /work/SRC/openSUSE:Factory/.syslinux.new.19453 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "syslinux" Mon Dec 3 10:03:12 2018 rev:65 rq:652611 version:4.04 Changes: -------- --- /work/SRC/openSUSE:Factory/syslinux/syslinux.changes 2018-11-08 09:41:32.837586702 +0100 +++ /work/SRC/openSUSE:Factory/.syslinux.new.19453/syslinux.changes 2018-12-03 10:03:13.636103374 +0100 @@ -1,0 +2,6 @@ +Wed Nov 28 09:03:05 UTC 2018 - Martin Liška <[email protected]> + +- Add remove-note-gnu-section.patch: strip a newly added section + in order to fulfil ELF size limits expected. + +------------------------------------------------------------------- New: ---- remove-note-gnu-section.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ syslinux.spec ++++++ --- /var/tmp/diff_new_pack.sRsQzW/_old 2018-12-03 10:03:15.880101329 +0100 +++ /var/tmp/diff_new_pack.sRsQzW/_new 2018-12-03 10:03:15.884101325 +0100 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -60,6 +60,7 @@ Patch19: syslinux-4.04-reproducible.patch Patch20: %{name}-%{version}-python3.diff Patch21: sysmacros.patch +Patch22: remove-note-gnu-section.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -97,6 +98,7 @@ %patch19 -p1 %patch20 -p0 %patch21 -p1 +%patch22 -p1 %build cp %{SOURCE2} . ++++++ remove-note-gnu-section.patch ++++++ diff --git a/mbr/Makefile b/mbr/Makefile index be2bded7..59e06915 100644 --- a/mbr/Makefile +++ b/mbr/Makefile @@ -36,7 +36,7 @@ $(LD) $(LDFLAGS) -T mbr.ld -e _start -o $@ $< %.bin: %.elf checksize.pl - $(OBJCOPY) -O binary $< $@ + $(OBJCOPY) -O binary --remove-section .note.gnu.property $< $@ $(PERL) checksize.pl $@ $(CHMOD) -x $@
