summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--lib/Xconfig/card.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 6bdcdb6..3879c34 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- XFdrake:
+ o fix selecting proprietary drivers with xdriver=DRIVER boot option
+
Version 0.71 - 2 April 2009
- XFdrake:
diff --git a/lib/Xconfig/card.pm b/lib/Xconfig/card.pm
index 08b5dfa..4575414 100644
--- a/lib/Xconfig/card.pm
+++ b/lib/Xconfig/card.pm
@@ -230,7 +230,7 @@ sub configure_auto_install {
VendorName => "Custom",
BoardName => "Set by boot parameter",
};
- if ($force_driver =~ /^(nvidia.|fglrx)/) {
+ if ($boot_xdriver =~ /^(nvidia.|fglrx)/) {
$card->{Driver} = "vesa";
$card->{Driver2} = $boot_xdriver;
}