summaryrefslogtreecommitdiffstats
path: root/po/nl.po
diff options
context:
space:
mode:
authorReinout van Schouwen <reinouts@mandriva.com>2007-08-27 23:00:34 +0000
committerReinout van Schouwen <reinouts@mandriva.com>2007-08-27 23:00:34 +0000
commit562c7a5adc6c2d961cc71df2f53c9c6ed6da13b9 (patch)
treec2b0b6f71271f154e36df3357dad9acf4d90826c /po/nl.po
parent54597acfae6a3e314ef7f5b94ae07d529238ab89 (diff)
downloaddrakx-net-562c7a5adc6c2d961cc71df2f53c9c6ed6da13b9.tar
drakx-net-562c7a5adc6c2d961cc71df2f53c9c6ed6da13b9.tar.gz
drakx-net-562c7a5adc6c2d961cc71df2f53c9c6ed6da13b9.tar.bz2
drakx-net-562c7a5adc6c2d961cc71df2f53c9c6ed6da13b9.tar.xz
drakx-net-562c7a5adc6c2d961cc71df2f53c9c6ed6da13b9.zip
Updated Dutch translation
ue='reload'/>
authorThierry Vignaud <tvignaud@mandriva.org>2004-06-14 13:23:16 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-06-14 13:23:16 +0000
commit039f5aedf08fdd08fcf28559886e9ec252601268 (patch)
treee2143b9ae7362f0165701f0500f39d155e8c3888 /perl-install
parent659d048cbb258c2440b79712244f07bd3804a483 (diff)
downloaddrakx-039f5aedf08fdd08fcf28559886e9ec252601268.tar
drakx-039f5aedf08fdd08fcf28559886e9ec252601268.tar.gz
drakx-039f5aedf08fdd08fcf28559886e9ec252601268.tar.bz2
drakx-039f5aedf08fdd08fcf28559886e9ec252601268.tar.xz
drakx-039f5aedf08fdd08fcf28559886e9ec252601268.zip
do not automatically switch from nv to nvidia (in order to handle
cases where nvidia module crashes the system)
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/service_harddrake4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index 5c4ac6811..2f5a4eb4b 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -23,8 +23,8 @@ modules::mergein_conf('/etc/modules.conf');
if (find { $_->{driver} =~ /Card:NVIDIA/ } detect_devices::probeall()) {
if (find { -e join('', "/lib/modules/", c::kernel_version(), "/kernel/drivers/$_") } map { ("video/$_", "char/$_") } qw(NVdriver nvidia.o nvidia.o.gz nvidia.ko nvidia.ko.gz)) {
- log::explanations("switch XFree86 driver from nv to nvidia");
- substInFile { s!Driver "nv.*"!Driver "nvidia"!g; s!#*( Load.*glx)!\1!g } $_ foreach "/etc/X11/XF86Config-4", "/etc/X11/XF86Config";
+ #log::explanations("switch XFree86 driver from nv to nvidia");
+ #substInFile { s!Driver "nv.*"!Driver "nvidia"!g; s!#*( Load.*glx)!\1!g } $_ foreach "/etc/X11/XF86Config-4", "/etc/X11/XF86Config";
} else {
log::explanations("switch XFree86 driver from nvidia to nv");
substInFile { s!Driver "nv.*"!Driver "nv"!g; s!([^#]Load.*glx)!#\1!g } $_ foreach "/etc/X11/XF86Config-4", "/etc/X11/XF86Config";