diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-10-04 00:30:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-10-04 00:30:29 +0000 |
commit | 1237406e5ee90da9dbdfec9fce21d603f75c80a6 (patch) | |
tree | f9b071d99afeccf9ef1c029cd08724b24919d91f /perl-install/bootloader.pm | |
parent | a8fff3fb88fd5d727ab14812673dbed47541593e (diff) | |
download | drakx-1237406e5ee90da9dbdfec9fce21d603f75c80a6.tar drakx-1237406e5ee90da9dbdfec9fce21d603f75c80a6.tar.gz drakx-1237406e5ee90da9dbdfec9fce21d603f75c80a6.tar.bz2 drakx-1237406e5ee90da9dbdfec9fce21d603f75c80a6.tar.xz drakx-1237406e5ee90da9dbdfec9fce21d603f75c80a6.zip |
no_comment
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 694b06d60..e20a6a270 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -316,7 +316,7 @@ wait %d seconds for default boot. my %l = ( silo => bool(arch() =~ /sparc/), lilo => bool(arch() !~ /sparc/) && !isLoopback(fsedit::get_root($fstab)), - grub => bool(arch() !~ /sparc/), #!isReiserfs(fsedit::get_root($fstab, 'boot')), + grub => bool(arch() !~ /sparc/ && availableRamMB() < 800), #- don't use grub if more than 800MB loadlin => bool(arch() !~ /sparc/) && -e "/initrd/loopfs/lnx4win", ); $lilo->{methods} ||= { map { $_ => 1 } grep { $l{$_} } keys %l }; @@ -582,7 +582,6 @@ sub install_grub { } } } - my $fd = first(detect_devices::floppies()); my $hd = fsedit::get_root($fstab, 'boot')->{rootDevice}; my $dev = dev2grub($lilo->{boot}, \%dev2bios); |