OBS User unknown 2008-08-21 23:53:53 +00:00 committed by Git OBS Bridge
parent 089b0ce759
commit 5733c0d2d8
5 changed files with 28 additions and 5 deletions

View File

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

View File

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

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Aug 21 15:51:15 CEST 2008 - jreidinger@suse.cz
- add support for trusted grub
- add support for reading console a trusted grub params from
sysconfig (except measures)
- split metadata and internal information about possible keys in
local/global sections
- fix duplicating configfile line (bnc #389891)
- fix selecting failsafe as default (bnc #413280)
- 0.4.69
-------------------------------------------------------------------
Fri Aug 15 15:03:52 CEST 2008 - jreidinger@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package perl-Bootloader (Version 0.4.68)
# spec file for package perl-Bootloader (Version 0.4.69)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -19,7 +19,7 @@
Name: perl-Bootloader
Version: 0.4.68
Version: 0.4.69
Release: 1
Requires: perl-base = %{perl_version}
Requires: e2fsprogs
@ -74,6 +74,15 @@ install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/usr/lib/bootloader
/usr/lib/bootloader
%changelog
* Thu Aug 21 2008 jreidinger@suse.cz
- add support for trusted grub
- add support for reading console a trusted grub params from
sysconfig (except measures)
- split metadata and internal information about possible keys in
local/global sections
- fix duplicating configfile line (bnc #389891)
- fix selecting failsafe as default (bnc #413280)
- 0.4.69
* Fri Aug 15 2008 jreidinger@suse.cz
- added testsuite - now contains reading config files for grub,
elilo and powerlilo (fate #303444)

View File

@ -350,10 +350,12 @@ if (defined $oper{add}) {
$version =~ s/-[^-]*$//;
$opt_name = $flavor . " -- " . GetProduct() . " - " . $version;
$opt_failsafe = "Failsafe -- " . GetProduct() . " - " . $version;
}
# Create short labels for all other loaders
else {
$opt_name = $flavor;
$opt_failsafe = "Failsafe";
}
}
}