Author Login
Post Reply
anssi <svn-commit@(protected):
> Log:
> - XFdrake:
> o use nvidia-current default settings for nvidia173 as well
maybe should we add a comment in the code.
I fear we won't remember what we're doing next time (at least I won't).
> Modified: drakx-kbd-mouse-x11/trunk/lib/Xconfig/proprietary.pm
> ==============================================================================
> --- drakx-kbd-mouse-x11/trunk/lib/Xconfig/proprietary.pm (original)
> +++ drakx-kbd-mouse-x11/trunk/lib/Xconfig/proprietary.pm Thu Jun 19 02:36:22 2008
> @@(protected) @@
>
> log::explanations("Using specific NVIDIA driver and GLX extensions");
> $card2->{DRI_GLX_SPECIAL} = 1;
> - $card2->{Options}{IgnoreEDID} = 1 if $card2->{DriverVersion} ne '-current';
> + $card2->{Options}{IgnoreEDID} = 1 if member($card2->{DriverVersion}, qw(71xx 96xx));
> $card2;
> } elsif ($card2->{Driver} eq 'fglrx') {
> $check_drv->('fglrx_drv', "fglrx$card2->{DriverVersion}") or return;
>
> Modified: drakx-kbd-mouse-x11/trunk/lib/Xconfig/various.pm
> ==============================================================================
> --- drakx-kbd-mouse-x11/trunk/lib/Xconfig/various.pm (original)
> +++ drakx-kbd-mouse-x11/trunk/lib/Xconfig/various.pm Thu Jun 19 02:36:22 2008
> @@(protected) @@
> isLaptop => $isLaptop,
> xdm => 1,
> Composite => !($card->{Driver} eq 'fglrx' || $card->{Driver} eq 'nvidia' && $card->{DriverVersion} eq '71xx'),
> - if_($card->{Driver} eq 'nvidia', RenderAccel => $card->{DriverVersion} eq '-current',
> + if_($card->{Driver} eq 'nvidia', RenderAccel => !member($card->{DriverVersion}, qw(71xx 96xx)),
> Clone => 0, ForceModeDVI => 0),
> if_($card->{Driver} eq 'savage', HWCursor => 1),
> if_($card->{Driver} eq 'intel' && $isLaptop, Clone => 0),