summaryrefslogtreecommitdiffstats
path: root/os-plugins
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins')
-rw-r--r--os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm b/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm
index 441254b3..cc01f07c 100644
--- a/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm
+++ b/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm
@@ -18,6 +18,8 @@ use warnings;
use base qw(OpenSLX::OSPlugin::Base);
+use File::Path;
+
use OpenSLX::Basics;
use OpenSLX::Utils;
@@ -105,7 +107,7 @@ sub copyRequiredFilesIntoInitramfs
my $targetPath = shift;
my $attrs = shift;
my $makeInitRamFSEngine = shift;
- my $pluginRepoPath = $info->{'plugin-repo-path'};
+ my $pluginRepoPath = "$openslxConfig{'base-path'}/lib/plugins/wlanboot";
$makeInitRamFSEngine->addCMD(
"cp -p $pluginRepoPath/files/bin/* $targetPath/bin/"
@@ -113,6 +115,9 @@ sub copyRequiredFilesIntoInitramfs
$makeInitRamFSEngine->addCMD(
"cp -a $pluginRepoPath/files/firmware $targetPath/lib"
);
+ vlog(1, _tr("wlanboot-plugin: ..."));
+
+ return;
}
1;