summaryrefslogtreecommitdiffstats
path: root/perl-install/patch/patch-stage2-updatemodules.pl
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/patch/patch-stage2-updatemodules.pl')
-rw-r--r--perl-install/patch/patch-stage2-updatemodules.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/perl-install/patch/patch-stage2-updatemodules.pl b/perl-install/patch/patch-stage2-updatemodules.pl
deleted file mode 100644
index a62e83e46..000000000
--- a/perl-install/patch/patch-stage2-updatemodules.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-# put this file in install/patch.pl, and boot with auto_install=install/patch.pl
-# put modules in install/modules and list them below
-
-my @modules = map { "install/modules/$_.ko" } 'tg3';
-
-foreach my $remote (@modules) {
- my $local = '/tmp/' . basename($remote);
-
- install_any::getAndSaveFile($remote, $local);
-
- run_program::run(["/usr/bin/insmod_", "insmod"], "-f", $local);
-}