This commit is contained in:
parent
d4137e779d
commit
b1566d23a7
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:50eace5c69833cd5d178387441aa51f82b9984714d1b02aa3986c481c1251e56
|
||||
size 50686
|
3
perl-Bootloader-0.4.61.tar.bz2
Normal file
3
perl-Bootloader-0.4.61.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1592f4bebbdd71e88727d6592bcd7d489bc2256dad13a07504fb4d2c8e698086
|
||||
size 50638
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 26 17:07:46 CEST 2008 - aosthof@suse.de
|
||||
|
||||
- Create failsafe sections also for pae kernels (former bigsmp)
|
||||
(bnc#372168)
|
||||
- Version bump to 0.4.61
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 26 16:51:59 CEST 2008 - aosthof@suse.de
|
||||
|
||||
- Omit warning when dm_mod is not available (bnc#393229)
|
||||
- Version bump to 0.4.60
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 20 10:44:02 CEST 2008 - aosthof@suse.de
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package perl-Bootloader (Version 0.4.59)
|
||||
# spec file for package perl-Bootloader (Version 0.4.61)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -12,7 +12,7 @@
|
||||
|
||||
|
||||
Name: perl-Bootloader
|
||||
Version: 0.4.59
|
||||
Version: 0.4.61
|
||||
Release: 1
|
||||
Requires: perl >= %{perl_version}
|
||||
Requires: perl-gettext
|
||||
@ -67,6 +67,13 @@ install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/usr/lib/bootloader
|
||||
/usr/lib/bootloader
|
||||
|
||||
%changelog
|
||||
* Mon May 26 2008 aosthof@suse.de
|
||||
- Create failsafe sections also for pae kernels (former bigsmp)
|
||||
(bnc#372168)
|
||||
- Version bump to 0.4.61
|
||||
* Mon May 26 2008 aosthof@suse.de
|
||||
- Omit warning when dm_mod is not available (bnc#393229)
|
||||
- Version bump to 0.4.60
|
||||
* Tue May 20 2008 aosthof@suse.de
|
||||
- Remove duplicate configfile lines (bnc#389891)
|
||||
- Version bump to 0.4.59
|
||||
|
@ -412,13 +412,14 @@ if (defined $oper{add}) {
|
||||
|
||||
# Add a "Failsafe" section, but only if the underlying architecture is
|
||||
# one of i386, x86_84 or ia64 and the kernel flavor is either default,
|
||||
# smp or bigsmp and not a xen kernel.
|
||||
# smp, bigsmp or pae and not a xen kernel.
|
||||
if ((($arch eq "i386") ||
|
||||
($arch eq "x86_64") ||
|
||||
($arch eq "ia64")) &&
|
||||
(($opt_image =~ /-default/) ||
|
||||
($opt_image =~ /-smp/) ||
|
||||
($opt_image =~ /-bigsmp/)) &&
|
||||
($opt_image =~ /-bigsmp/) ||
|
||||
($opt_image =~ /-pae/)) &&
|
||||
($opt_xen != 1)) {
|
||||
# Add original_name to params to be able to create comment line
|
||||
push @params, original_name => "failsafe";
|
||||
|
Loading…
Reference in New Issue
Block a user