diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-16 17:46:05 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-16 17:46:05 +0000 |
commit | 2d04b4acee688022bb15c7a26e4e016ded622046 (patch) | |
tree | b5fad7800a3b7a461f1d2c5d6fb55ff11bf72bb7 | |
parent | 21291891a7c1bbd0125415987fbfb3d6cfbe6f77 (diff) | |
download | drakx-2d04b4acee688022bb15c7a26e4e016ded622046.tar drakx-2d04b4acee688022bb15c7a26e4e016ded622046.tar.gz drakx-2d04b4acee688022bb15c7a26e4e016ded622046.tar.bz2 drakx-2d04b4acee688022bb15c7a26e4e016ded622046.tar.xz drakx-2d04b4acee688022bb15c7a26e4e016ded622046.zip |
fix dropping line macos in yaboot.conf (bugzilla #14642)
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 602a888d9..1dc311adc 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -279,7 +279,7 @@ sub read_lilo() { next if /^\s*#/ || /^\s*$/; ($_, $v) = /^\s*([^=\s]+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in $file: $_"), next; - if (/^(image|other)$/) { + if (/^(image|other|macos|macosx|bsd|darwin)$/) { $v = yaboot2file($v) if arch() =~ /ppc/; push @{$b{entries}}, $e = { type => $_, kernel_or_dev => $v }; $global = 0; |