summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--lib/Xconfig/resolution_and_depth.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8180de8..b1d94e4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- allow to select depth other than 16bit on Poulsbo (mga#5695)
+
Version 0.102 - 30 April 2012
- do not install bootloader when configuring X during install.
diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm
index be7a40d..f443f3e 100644
--- a/lib/Xconfig/resolution_and_depth.pm
+++ b/lib/Xconfig/resolution_and_depth.pm
@@ -82,7 +82,7 @@ sub allowed {
my ($prefered_depth, @resolution_and_depth);
- if ($card->{Driver} eq 'fbdev') {
+ if ($card->{Driver} eq 'fbdev' && $card->{BoardName} !~ /Poulsbo/) {
@resolution_and_depth = grep { $_->{Depth} == 16 } @bios_vga_modes;
} else {
my @depths;