OBS User unknown 2007-08-23 23:55:26 +00:00 committed by Git OBS Bridge
parent c124e87150
commit c3c3c9c4e4
4 changed files with 29 additions and 9 deletions

View File

@ -68,12 +68,12 @@ function update_bootloader()
function add_entry()
{
# Set up the new kernel
#if [ "$YAST_IS_RUNNING" != instsys ]; then
if [ -f /boot/grub/menu.lst -o \
-f /etc/lilo.conf -o \
-f /etc/elilo.conf -o \
-f /etc/zipl.conf ]; then
case $flavor in
if [ -f /etc/sysconfig/bootloader ] &&
[ -f /boot/grub/menu.lst -o \
-f /etc/lilo.conf -o \
-f /etc/elilo.conf -o \
-f /etc/zipl.conf ]; then
case $flavor in
(kdump|um)
;;
(xen*)

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dea5c2264822676b0d52ba4f23182b8b7945bacf6c66af7354dc67ff7bfdc382
size 48291
oid sha256:c15e7a25188213ed7b2a9013c911859a9f3ac12e1065a8d4209ef31e3a0ac1ce
size 48342

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Aug 23 12:48:58 CEST 2007 - aosthof@suse.de
- Added check for /etc/sysconfig/bootloader in bootloader_entry
preventing installation errors in case of shared boot partitions
(#303734)
-------------------------------------------------------------------
Wed Aug 22 15:16:33 CEST 2007 - aosthof@suse.de
- Check for defined types in GRUB.pm to prevent perl warnings
(#302174)
-------------------------------------------------------------------
Tue Aug 21 18:16:41 CEST 2007 - aosthof@suse.de

View File

@ -12,7 +12,7 @@
Name: perl-Bootloader
Version: 0.4.23
Release: 3
Release: 5
Requires: perl >= %{perl_version}
Requires: perl-gettext
Requires: e2fsprogs
@ -66,6 +66,13 @@ install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/usr/lib/bootloader
/usr/lib/bootloader
%changelog
* Thu Aug 23 2007 - aosthof@suse.de
- Added check for /etc/sysconfig/bootloader in bootloader_entry
preventing installation errors in case of shared boot partitions
(#303734)
* Wed Aug 22 2007 - aosthof@suse.de
- Check for defined types in GRUB.pm to prevent perl warnings
(#302174)
* Tue Aug 21 2007 - aosthof@suse.de
- Check for defined keys in GRUB.pm to prevent perl warnings
(#302174)