OBS User unknown 2007-04-03 18:49:21 +00:00 committed by Git OBS Bridge
parent 26f1b9d19c
commit 132c96e3cc
5 changed files with 68 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3d39033d1ed4cb2d41cf78ea0c574e984c05a959932c4d417d7cab781b84fee5
size 43280

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:59ea21fab644311da677a23744c949bc937a6a92a867cbe3198b336d80763354
size 44221

View File

@ -1,3 +1,43 @@
-------------------------------------------------------------------
Tue Apr 3 17:26:31 CEST 2007 - aosthof@suse.de
- Cosmetic correction in Tools.pm
-------------------------------------------------------------------
Tue Apr 3 16:36:29 CEST 2007 - aosthof@suse.de
- Improved error handling in Tools.pm
-------------------------------------------------------------------
Mon Apr 2 19:22:20 CEST 2007 - aosthof@suse.de
- Fixed 'uname' call in Tools.pm due to return of false
architectures (e.g. i586 instead of i386)
-------------------------------------------------------------------
Mon Apr 2 14:07:55 CEST 2007 - aosthof@suse.de
- Fixed typo in GRUB.pm
-------------------------------------------------------------------
Mon Apr 2 11:38:57 CEST 2007 - aosthof@suse.de
- Added function GrubDev2MountPoint() to GRUB.pm to be able to
retrieve mountpoints of grub devices
- Fixed functions GrubDev2UnixDev(), UnixDev2GrubDev(),
GrubPath2UnixPath() and ParseLines() in GRUB.pm
- Added wrapper for GrubDev2UnixDev() to Library.pm to be able to
call it from Tools.pm
- Fixed functions ReadDMRaidPartitions(), IsDMRaidSlave(),
Udev2MajMin() and AddSection() in Tools.pm
- Commented out obsolete code in GetSectionList() and
RemoveSections() in Tools.pm
- Fixed 'uname' call in update-bootloader due to return of false
architectures (e.g. i586 instead of i386)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 26 19:06:17 CEST 2007 - aosthof@suse.de Mon Mar 26 19:06:17 CEST 2007 - aosthof@suse.de

View File

@ -1,5 +1,5 @@
# #
# spec file for package perl-Bootloader (Version 0.4.13) # spec file for package perl-Bootloader (Version 0.4.14)
# #
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
@ -11,7 +11,7 @@
# norootforbuild # norootforbuild
Name: perl-Bootloader Name: perl-Bootloader
Version: 0.4.13 Version: 0.4.14
Release: 1 Release: 1
Requires: perl >= %{perl_version} Requires: perl >= %{perl_version}
Requires: perl-gettext Requires: perl-gettext
@ -63,6 +63,28 @@ install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/usr/lib/bootloader
/usr/lib/bootloader /usr/lib/bootloader
%changelog %changelog
* Tue Apr 03 2007 - aosthof@suse.de
- Cosmetic correction in Tools.pm
* Tue Apr 03 2007 - aosthof@suse.de
- Improved error handling in Tools.pm
* Mon Apr 02 2007 - aosthof@suse.de
- Fixed 'uname' call in Tools.pm due to return of false
architectures (e.g. i586 instead of i386)
* Mon Apr 02 2007 - aosthof@suse.de
- Fixed typo in GRUB.pm
* Mon Apr 02 2007 - aosthof@suse.de
- Added function GrubDev2MountPoint() to GRUB.pm to be able to
retrieve mountpoints of grub devices
- Fixed functions GrubDev2UnixDev(), UnixDev2GrubDev(),
GrubPath2UnixPath() and ParseLines() in GRUB.pm
- Added wrapper for GrubDev2UnixDev() to Library.pm to be able to
call it from Tools.pm
- Fixed functions ReadDMRaidPartitions(), IsDMRaidSlave(),
Udev2MajMin() and AddSection() in Tools.pm
- Commented out obsolete code in GetSectionList() and
RemoveSections() in Tools.pm
- Fixed 'uname' call in update-bootloader due to return of false
architectures (e.g. i586 instead of i386)
* Mon Mar 26 2007 - aosthof@suse.de * Mon Mar 26 2007 - aosthof@suse.de
- Corrected mechanism for removal of sections in Tools.pm - part 2 - Corrected mechanism for removal of sections in Tools.pm - part 2
* Mon Mar 26 2007 - aosthof@suse.de * Mon Mar 26 2007 - aosthof@suse.de

View File

@ -319,7 +319,7 @@ if (defined $oper{add}) {
AddSection($opt_name, @params); AddSection($opt_name, @params);
} }
my $arch = `uname --machine`; my $arch = `uname --hardware-platform`;
chomp ($arch); chomp ($arch);
# Add a "Failsafe" section # Add a "Failsafe" section