summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/XFdrake
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-09-17 19:22:55 +0000
committerFrancois Pons <fpons@mandriva.com>2001-09-17 19:22:55 +0000
commit12fb679f46cdf48f5ca69cef1d8175f921e6954f (patch)
tree33a489fc33d8a2e0ce535816e0927190f9d63efe /perl-install/standalone/XFdrake
parent41ee4eb8a31f9dccdbf5b4087f841607933bbe56 (diff)
downloaddrakx-backup-do-not-use-12fb679f46cdf48f5ca69cef1d8175f921e6954f.tar
drakx-backup-do-not-use-12fb679f46cdf48f5ca69cef1d8175f921e6954f.tar.gz
drakx-backup-do-not-use-12fb679f46cdf48f5ca69cef1d8175f921e6954f.tar.bz2
drakx-backup-do-not-use-12fb679f46cdf48f5ca69cef1d8175f921e6954f.tar.xz
drakx-backup-do-not-use-12fb679f46cdf48f5ca69cef1d8175f921e6954f.zip
added support to configure NVIDIA driver if everything is correctly installed.
Diffstat (limited to 'perl-install/standalone/XFdrake')
-rwxr-xr-xperl-install/standalone/XFdrake31
1 files changed, 20 insertions, 11 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake
index b76be2162..621dc0cfb 100755
--- a/perl-install/standalone/XFdrake
+++ b/perl-install/standalone/XFdrake
@@ -59,15 +59,15 @@ Xconfig::getinfo($i);
Xconfig::getinfoFromXF86Config($i); #- take default from here at least.
my $allowNVIDIA_rpms;
-eval {
- my (%list, %select);
- local *F;
- open F, "grep NVIDIA /var/lib/urpmi/depslist.ordered |";
- while (<F>) {
- /(.*)-([^-]*)-([^-]*)\s+/ and $list{$1} = 1;
- }
- close F;
- if ($list{NVIDIA_GLX}) {
+my (%list, %select);
+local *F;
+open F, "/var/lib/urpmi/depslist.ordered";
+while (<F>) {
+ /(.*NVIDIA.*)-([^-]*)-([^-]*)\s+/ and $list{$1} = 1;
+}
+close F;
+if ($list{NVIDIA_GLX}) {
+ eval {
my ($version, $release, $ext) = `uname -r` =~ /([^-]*)-([^-]*mdk)(\S*)/;
$ext and $ext = "-$ext";
$list{"NVIDIA_kernel-$version-$release$ext"} or die "no NVIDIA kernel for current kernel";
@@ -78,8 +78,17 @@ eval {
}
$allowNVIDIA_rpms = [ keys(%select), "NVIDIA_GLX" ];
}
-};
-
+}
+if (!$allowNVIDIA_rpms) {
+ my ($uname_r) = `uname -r` =~ /(\S+)/;
+ $allowNVIDIA_rpms = ((-e "/lib/modules/$uname_r/kernel/drivers/char/NVdriver.o.gz" ||
+ -e "/lib/modules/$uname_r/kernel/drivers/char/NVdriver.o") &&
+ -e "/usr/X11R6/lib/modules/drivers/nvidia_drv.o" &&
+ -e "/usr/X11R6/lib/modules/extensions/libglx.so") && []; #- empty list but true.
+}
+
+$allowNVIDIA_rpms and print STDERR "using NVIDIA\n";
+$allowNVIDIA_rpms or print STDERR "NOT using NVIDIA\n";
$::isEmbedded and kill USR2, $::CCPID;
Xconfigurator::main('', $i, $in, $in->do_pkgs,
{ allowFB => $::expert,