From 59f9a21b8acc9cf7f58504c6c6402e77c49d78fd Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 7 Apr 2005 10:30:51 +0000 Subject: *** empty log message *** --- perl-install/patch/patch-stage2-updatemodules.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 perl-install/patch/patch-stage2-updatemodules.pl diff --git a/perl-install/patch/patch-stage2-updatemodules.pl b/perl-install/patch/patch-stage2-updatemodules.pl new file mode 100644 index 000000000..a62e83e46 --- /dev/null +++ b/perl-install/patch/patch-stage2-updatemodules.pl @@ -0,0 +1,12 @@ +# 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); +} -- cgit v1.2.1