From 952d99318b5370fc7eff9e0c7493c015b9f6d8eb Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 2 Mar 2004 13:35:00 +0000 Subject: 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. --- perl-install/bootloader.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install/bootloader.pm') 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"), -- cgit v1.2.1