summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--lib/Xconfig/resolution_and_depth.pm2
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 515941c..5948f8c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
- display_driver_helper:
o prevent dkms autoload of display driver on Live system before xorg.conf
exists (mga#19520)
+- XFdrake:
+ o forbid 24bit for geode (mga#19927)
Version 1.18 - 12 November 2016
diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm
index 50b89a4..05a61e5 100644
--- a/lib/Xconfig/resolution_and_depth.pm
+++ b/lib/Xconfig/resolution_and_depth.pm
@@ -64,6 +64,8 @@ sub allowed {
my @depths;
if (member($card->{Driver}, qw(fglrx qxl savage))) {
@depths = 24;
+ } elsif ($card->{Driver} eq 'geode') {
+ @depths = qw(16);
} elsif ($card->{BoardName} eq 'NVIDIA RIVA 128') {
@depths = qw(8 15 24);
} elsif ($card->{use_DRI_GLX}) {