Hello community, here is the log from the commit of package lilo checked in at Wed May 2 10:38:47 CEST 2007. -------- --- arch/ppc/lilo/lilo.changes 2007-04-30 10:51:26.000000000 +0200 +++ /mounts/work_src_done/STABLE/lilo/lilo.changes 2007-05-02 10:03:56.000000000 +0200 @@ -1,0 +2,6 @@ +Wed May 2 10:01:57 CEST 2007 - olh@suse.de + +- if the ELF sections in the linker script get renamed, the ld calls + must be updated as well. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lilo.spec ++++++ --- /var/tmp/diff_new_pack.P16432/_old 2007-05-02 10:38:41.000000000 +0200 +++ /var/tmp/diff_new_pack.P16432/_new 2007-05-02 10:38:41.000000000 +0200 @@ -24,7 +24,7 @@ Requires: binutils Requires: parted Version: 10.1.22 -Release: 30 +Release: 32 Source0: lilo-%{version}.tar.bz2 Source1: http://penguinppc.org/projects/yaboot/yaboot-%{yaboot_vers}.tar.bz2 # $Id: lilo.spec 870 2006-11-07 12:31:45Z olh $ @@ -157,6 +157,9 @@ %doc %{_mandir}/*/* %changelog +* Wed May 02 2007 - olh@suse.de +- if the ELF sections in the linker script get renamed, the ld calls + must be updated as well. * Mon Apr 30 2007 - olh@suse.de - rename the ELF sections for kernel to match the mainline section names ++++++ lilo-10.1.22.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/lilo-10.1.22/bootheader/chrp/ld.script new/lilo-10.1.22/bootheader/chrp/ld.script --- old/lilo-10.1.22/bootheader/chrp/ld.script 2007-04-30 10:51:26.000000000 +0200 +++ new/lilo-10.1.22/bootheader/chrp/ld.script 2007-05-02 10:03:56.000000000 +0200 @@ -1,4 +1,4 @@ -/* $Id: ld.script 960 2007-04-30 08:51:26Z olh $ */ +/* $Id: ld.script 961 2007-05-02 08:03:56Z olh $ */ OUTPUT_ARCH(powerpc) SECTIONS { @@ -26,12 +26,14 @@ _uts_string_end = .; } + /* if this sections gets renamed, update also the mkzimage scripts */ .kernel:vmlinux.strip : { _vmlinuz_start = .; *(.kernel:vmlinux.strip) _vmlinuz_end = .; } + /* if this sections gets renamed, update also the mkzimage scripts */ .kernel:initrd : { _initrd_start = .; diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/lilo-10.1.22/bootheader/chrp/ld.script.coff new/lilo-10.1.22/bootheader/chrp/ld.script.coff --- old/lilo-10.1.22/bootheader/chrp/ld.script.coff 2007-04-25 11:45:23.000000000 +0200 +++ new/lilo-10.1.22/bootheader/chrp/ld.script.coff 2007-05-02 10:03:56.000000000 +0200 @@ -1,4 +1,4 @@ -/* $Id: ld.script.coff 956 2007-04-25 09:45:23Z olh $ */ +/* $Id: ld.script.coff 961 2007-05-02 08:03:56Z olh $ */ OUTPUT_ARCH(powerpc) SECTIONS { @@ -30,11 +30,13 @@ _uts_string_end = .; _vmlinuz_start = .; - *(.vmlinuz) + /* if this sections gets renamed, update also the mkzimage scripts */ + *(.kernel:vmlinux.strip) _vmlinuz_end = .; _initrd_start = .; - *(.initrd) + /* if this sections gets renamed, update also the mkzimage scripts */ + *(.kernel:initrd) _initrd_end = .; } _edata = .; diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/lilo-10.1.22/bootheader/scripts/make_zimage_chrp.sh new/lilo-10.1.22/bootheader/scripts/make_zimage_chrp.sh --- old/lilo-10.1.22/bootheader/scripts/make_zimage_chrp.sh 2006-02-07 15:38:07.000000000 +0100 +++ new/lilo-10.1.22/bootheader/scripts/make_zimage_chrp.sh 2007-05-02 10:03:56.000000000 +0200 @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: make_zimage_chrp.sh 590 2006-02-07 14:38:07Z jplack $ +# $Id: make_zimage_chrp.sh 961 2007-05-02 08:03:56Z olh $ set -e # set -x @@ -101,13 +101,13 @@ --set-section-flags=.uts_string=contents,alloc,load,readonly,data # objcopy $tmp/empty.o \ - --add-section=.vmlinuz=$tmp/vmlinux.gz \ - --set-section-flags=.vmlinuz=contents,alloc,load,readonly,data + --add-section=.kernel:vmlinux.strip=$tmp/vmlinux.gz \ + --set-section-flags=.kernel:vmlinux.strip=contents,alloc,load,readonly,data # if [ ! -z "$initrd" ] ; then objcopy $tmp/empty.o \ - --add-section=.initrd=$initrd \ - --set-section-flags=.initrd=contents,alloc,load,readonly,data + --add-section=.kernel:initrd=$initrd \ + --set-section-flags=.kernel:initrd=contents,alloc,load,readonly,data fi # rm -f $tmp/output diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_newworld.sh new/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_newworld.sh --- old/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_newworld.sh 2006-02-07 15:38:07.000000000 +0100 +++ new/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_newworld.sh 2007-05-02 10:03:56.000000000 +0200 @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: make_zimage_pmac_newworld.sh 590 2006-02-07 14:38:07Z jplack $ +# $Id: make_zimage_pmac_newworld.sh 961 2007-05-02 08:03:56Z olh $ set -e # set -x @@ -97,13 +97,13 @@ --set-section-flags=.uts_string=contents,alloc,load,readonly,data # objcopy $tmp/empty.o \ - --add-section=.vmlinuz=$tmp/vmlinux.gz \ - --set-section-flags=.vmlinuz=contents,alloc,load,readonly,data + --add-section=.kernel:vmlinux.strip=$tmp/vmlinux.gz \ + --set-section-flags=.kernel:vmlinux.strip=contents,alloc,load,readonly,data # if [ ! -z "$initrd" ] ; then objcopy $tmp/empty.o \ - --add-section=.initrd=$initrd \ - --set-section-flags=.initrd=contents,alloc,load,readonly,data + --add-section=.kernel:initrd=$initrd \ + --set-section-flags=.kernel:initrd=contents,alloc,load,readonly,data fi # rm -f $tmp/output diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_oldworld_coff.sh new/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_oldworld_coff.sh --- old/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_oldworld_coff.sh 2007-04-25 11:45:23.000000000 +0200 +++ new/lilo-10.1.22/bootheader/scripts/make_zimage_pmac_oldworld_coff.sh 2007-05-02 10:03:56.000000000 +0200 @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: make_zimage_pmac_oldworld_coff.sh 956 2007-04-25 09:45:23Z olh $ +# $Id: make_zimage_pmac_oldworld_coff.sh 961 2007-05-02 08:03:56Z olh $ set -e # set -x @@ -97,13 +97,13 @@ --set-section-flags=.uts_string=contents,alloc,load,readonly,data # objcopy $tmp/empty.o \ - --add-section=.vmlinuz=$tmp/vmlinux.gz \ - --set-section-flags=.vmlinuz=contents,alloc,load,readonly,data + --add-section=.kernel:vmlinux.strip=$tmp/vmlinux.gz \ + --set-section-flags=.kernel:vmlinux.strip=contents,alloc,load,readonly,data # if [ ! -z "$initrd" ] ; then objcopy $tmp/empty.o \ - --add-section=.initrd=$initrd \ - --set-section-flags=.initrd=contents,alloc,load,readonly,data + --add-section=.kernel:initrd=$initrd \ + --set-section-flags=.kernel:initrd=contents,alloc,load,readonly,data fi # rm -f $tmp/output diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/lilo-10.1.22/bootheader/scripts/make_zimage_prep.sh new/lilo-10.1.22/bootheader/scripts/make_zimage_prep.sh --- old/lilo-10.1.22/bootheader/scripts/make_zimage_prep.sh 2006-02-07 15:38:07.000000000 +0100 +++ new/lilo-10.1.22/bootheader/scripts/make_zimage_prep.sh 2007-05-02 10:03:56.000000000 +0200 @@ -95,13 +95,13 @@ --set-section-flags=.uts_string=contents,alloc,load,readonly,data # objcopy $tmp/empty.o \ - --add-section=.vmlinuz=$tmp/vmlinux.bin.gz \ - --set-section-flags=.vmlinuz=contents,alloc,load,readonly,data + --add-section=.kernel:vmlinux.strip=$tmp/vmlinux.bin.gz \ + --set-section-flags=.kernel:vmlinux.strip=contents,alloc,load,readonly,data # if [ ! -z "$initrd" ] ; then objcopy $tmp/empty.o \ - --add-section=.initrd=$initrd \ - --set-section-flags=.initrd=contents,alloc,load,readonly,data + --add-section=.kernel:initrd=$initrd \ + --set-section-flags=.kernel:initrd=contents,alloc,load,readonly,data fi ld \ ++++++ yaboot-10.1.22-r948.tar.bz2 ++++++ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de