diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-26 11:07:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-26 11:07:26 +0000 |
commit | e7341d2e76655f2c7a8cf16374ca37cb66fba69c (patch) | |
tree | 7d1c81846c50fffd6a3a557b17f902ee6acc7a2b | |
parent | a6cfc61017da7e4d0d9dcb2c51ec755ef78732e6 (diff) | |
download | drakx-e7341d2e76655f2c7a8cf16374ca37cb66fba69c.tar drakx-e7341d2e76655f2c7a8cf16374ca37cb66fba69c.tar.gz drakx-e7341d2e76655f2c7a8cf16374ca37cb66fba69c.tar.bz2 drakx-e7341d2e76655f2c7a8cf16374ca37cb66fba69c.tar.xz drakx-e7341d2e76655f2c7a8cf16374ca37cb66fba69c.zip |
(method_choices) blacklist again Savage, they're broken again :-(
-rw-r--r-- | perl-install/bootloader.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 5f5d4384f..243f69708 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -662,9 +662,7 @@ sub method_choices { if_(arch() =~ /sparc/, 'silo' => N("SILO"), ), if_(arch() !~ /sparc|ppc/ && !isLoopback(fsedit::get_root($fstab)) && whereis_binary('lilo'), - if_(!(find { $_->{vendor} == 0x5333 && $_->{subid} == 0x8d03 } detect_devices::probeall()), - 'lilo-graphic' => N("LILO with graphical menu"), - ), + if_(!detect_devices::matching_desc('ProSavageDDR'), 'lilo-graphic' => N("LILO with graphical menu")), 'lilo-menu' => N("LILO with text menu"), ), if_(arch() !~ /sparc|ppc/ && !isRAID(fsedit::get_root($fstab)) && whereis_binary('grub'), 'grub' => N("Grub"), |