OBS User unknown 2008-09-12 16:07:45 +00:00 committed by Git OBS Bridge
parent 5733c0d2d8
commit c7716951ca
5 changed files with 38 additions and 6 deletions

View File

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

View File

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

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Fri Sep 12 13:38:11 CEST 2008 - jreidinger@suse.cz
- gfxmenu menu is removed from trustedgrub global section
- if type of kernel is changed, then correctly transfer default
(bnc #402789)
- if kernel params is not set in sysconfig, use old way to transfer
it (bnc #423613)
- fix root in chainloading (bnc #394319)
- don't change original name (bnc #397067)
- drop support xen-pae from metadata (kernel update still support
it) (bnc #400526)
- don't use uninitialized variable in elilo (bnc #252148)
- remove read-only flag from lilo, because it stop booting
(bnc #381669)
- 0.4.70
-------------------------------------------------------------------
Thu Aug 21 15:51:15 CEST 2008 - jreidinger@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package perl-Bootloader (Version 0.4.69)
# spec file for package perl-Bootloader (Version 0.4.70)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -19,7 +19,7 @@
Name: perl-Bootloader
Version: 0.4.69
Version: 0.4.70
Release: 1
Requires: perl-base = %{perl_version}
Requires: e2fsprogs
@ -74,6 +74,20 @@ install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/usr/lib/bootloader
/usr/lib/bootloader
%changelog
* Fri Sep 12 2008 jreidinger@suse.cz
- gfxmenu menu is removed from trustedgrub global section
- if type of kernel is changed, then correctly transfer default
(bnc #402789)
- if kernel params is not set in sysconfig, use old way to transfer
it (bnc #423613)
- fix root in chainloading (bnc #394319)
- don't change original name (bnc #397067)
- drop support xen-pae from metadata (kernel update still support
it) (bnc #400526)
- don't use uninitialized variable in elilo (bnc #252148)
- remove read-only flag from lilo, because it stop booting
(bnc #381669)
- 0.4.70
* Thu Aug 21 2008 jreidinger@suse.cz
- add support for trusted grub
- add support for reading console a trusted grub params from

View File

@ -284,6 +284,7 @@ if (defined $oper{add}) {
}
# only localize on grub and lilo
#FIXME jreidinger: I think this now doesn't work. because pbl get only version + type of kernel....maybe help translate strings like failsafe etc
if (($loader eq "grub" || $loader eq "lilo") && defined(test_gettext())) {
require Locale::gettext;
setlocale(LC_MESSAGES, Bootloader::Tools::GetSystemLanguage());
@ -354,7 +355,7 @@ if (defined $oper{add}) {
}
# Create short labels for all other loaders
else {
$opt_name = $flavor;
$opt_name = GetProduct();
$opt_failsafe = "Failsafe";
}
}