diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/Xconfig/resolution_and_depth.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- default to 24bit with QXL driver (16 bit doesn't work) - do not offer to try KMS drivers during installation (mga#3711) - display_driver_helper: use the new modprobe --resolve-alias instead of manually parsing --dry-run output diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm index f4c1ca8..3d54996 100644 --- a/lib/Xconfig/resolution_and_depth.pm +++ b/lib/Xconfig/resolution_and_depth.pm @@ -85,7 +85,7 @@ sub allowed { @resolution_and_depth = grep { $_->{Depth} == 16 } @bios_vga_modes; } else { my @depths; - if (member($card->{Driver}, qw(fglrx savage))) { + if (member($card->{Driver}, qw(fglrx qxl savage))) { @depths = 24; } elsif ($card->{BoardName} eq 'NVIDIA RIVA 128') { @depths = qw(8 15 24); |