From 9e5d8a3ca8cdc0f45361355420cedd84ef3ba63e Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Tue, 12 Mar 2002 14:30:54 +0000 Subject: avoid Utah GLX only if > 800MB, not if <= 800MB (!) --- perl-install/Xconfigurator.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 875823a3c..5c063668f 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -303,7 +303,7 @@ What do you want to do?"), sub { translate($_[0]{text}) }, \@choices) or return; $_->{memory} = 4096, delete $_->{depth} if $_->{driver} eq 'i810'; $_->{memory} = 16384, delete $_->{depth} if $_->{chipset} =~ /PERMEDIA/ && $_->{memory} <= 1024; } - if (availableRamMB() <= 800 || arch() =~ /ppc/) { + if (availableRamMB() > 800 || arch() =~ /ppc/) { #- No 3D XFree 3.3 for PPC #- and no Utah GLX if more than 800 Mb (server, or kernel-enterprise, Utha GLX does not work with latest). $card->{Utah_glx} = $card->{Utah_glx_EXPERIMENTAL} = ''; -- cgit v1.2.1