diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-03-02 13:35:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-03-02 13:35:00 +0000 |
commit | 952d99318b5370fc7eff9e0c7493c015b9f6d8eb (patch) | |
tree | 19acfd28de5153d35c9eb25fdffc37516e74e563 /perl-install/bootloader.pm | |
parent | 954b405c96c8ef47317bc9d80302c42bd29687db (diff) | |
download | drakx-952d99318b5370fc7eff9e0c7493c015b9f6d8eb.tar drakx-952d99318b5370fc7eff9e0c7493c015b9f6d8eb.tar.gz drakx-952d99318b5370fc7eff9e0c7493c015b9f6d8eb.tar.bz2 drakx-952d99318b5370fc7eff9e0c7493c015b9f6d8eb.tar.xz drakx-952d99318b5370fc7eff9e0c7493c015b9f6d8eb.zip |
bugzilla #8133 says "VT8751 [ProSavageDDR P4M266] VGA Controller" (0x5333,
0x8d04) has no pb with graphical lilo. So only keeping the restriction for
(0x5333, 0x8d03), hoping that's what fpons wanted.
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 869c48737..30a007cd2 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -673,7 +673,9 @@ sub method_choices { if_(arch() =~ /sparc/, 'silo' => N("SILO"), ), if_(arch() !~ /sparc|ppc/ && !isLoopback(fsedit::get_root($fstab)) && whereis_binary('lilo'), - if_(!detect_devices::matching_desc('ProSavageDDR'), 'lilo-graphic' => N("LILO with graphical menu")), + if_(!(find { $_->{vendor} == 0x5333 && $_->{subid} == 0x8d03 } detect_devices::probeall()), + '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"), |