summaryrefslogtreecommitdiffstats
path: root/rescue/drvinst
diff options
context:
space:
mode:
authorMystery Man 535 <uid535@mandriva.org>2001-02-12 14:31:10 +0000
committerMystery Man 535 <uid535@mandriva.org>2001-02-12 14:31:10 +0000
commite04140f5b5d52f5a487804ba352b3f181fe40e75 (patch)
tree85d935df4599cff96d48a26c9cbdc62d93189810 /rescue/drvinst
parenta4187a6f8070adda23d665cc1e4bd237518d70a9 (diff)
downloaddrakx-backup-do-not-use-e04140f5b5d52f5a487804ba352b3f181fe40e75.tar
drakx-backup-do-not-use-e04140f5b5d52f5a487804ba352b3f181fe40e75.tar.gz
drakx-backup-do-not-use-e04140f5b5d52f5a487804ba352b3f181fe40e75.tar.bz2
drakx-backup-do-not-use-e04140f5b5d52f5a487804ba352b3f181fe40e75.tar.xz
drakx-backup-do-not-use-e04140f5b5d52f5a487804ba352b3f181fe40e75.zip
- add lspci, lspcidrake, vim-minimal
- better /etc/issue - better PS1 - write embryonic tool (installation of detected drivers according to pci cards)
Diffstat (limited to 'rescue/drvinst')
-rwxr-xr-xrescue/drvinst73
1 files changed, 73 insertions, 0 deletions
diff --git a/rescue/drvinst b/rescue/drvinst
new file mode 100755
index 000000000..5abd220b1
--- /dev/null
+++ b/rescue/drvinst
@@ -0,0 +1,73 @@
+#!/usr/bin/perl
+
+#
+# Guillaume Cottenceau (gc@mandrakesoft.com)
+#
+# Copyright 2000 MandrakeSoft
+#
+# This software may be freely redistributed under the terms of the GNU
+# public license.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+local $_ = join '', @ARGV;
+
+"@ARGV" =~ /-h/ and die "usage: drivers_install [drivertype1 drivertype2..]\n";
+
+
+sub pci_probe {
+ my @pci;
+ foreach (`/usr/bin/lspcidrake`) {
+ my %pci_entry;
+ if (/^(\S+)\s*: (.+) \[([^\]]+)/) {
+ $pci_entry{driver} = $1;
+ $pci_entry{description} = $2;
+ $pci_entry{type} = $3;
+ } elsif (/^(\S+)\s*: (.+)/) {
+ $pci_entry{driver} = $1;
+ $pci_entry{description} = $2;
+ $pci_entry{type} = "NOT_DEFINED";
+ } else {
+ next;
+ }
+ push @pci, \%pci_entry;
+ }
+ \@pci;
+}
+
+sub install_module($$) {
+ my ($driver, $descr) = @_;
+ print "Installing driver $driver (for \"$descr\")\n";
+ system("/sbin/modprobe $driver") and print "\tfailed\n";
+}
+
+
+#- start
+
+my $pci = pci_probe();
+
+foreach $pci_card (@$pci) {
+
+ $pci_card->{type} eq "DISPLAY_VGA" and next;
+ $pci_card->{driver} eq "unknown" and next;
+
+ if ($#ARGV != -1) {
+ $pci_card->{type} =~ /$_/i and install_module($pci_card->{driver}, $pci_card->{description}) foreach (@ARGV);
+ } else {
+ install_module($pci_card->{driver}, $pci_card->{description});
+ }
+}
+
+
+
+#-------------------------------------------------
+#- $Log$
+#- Revision 1.1 2001/02/12 14:31:10 uid535
+#- - add lspci, lspcidrake, vim-minimal
+#- - better /etc/issue
+#- - better PS1
+#- - write embryonic tool (installation of detected drivers according to pci cards)
+#-