summaryrefslogtreecommitdiffstats
path: root/os-plugins/OpenSLX/OSPlugin/Base.pm
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/OpenSLX/OSPlugin/Base.pm')
-rw-r--r--os-plugins/OpenSLX/OSPlugin/Base.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/os-plugins/OpenSLX/OSPlugin/Base.pm b/os-plugins/OpenSLX/OSPlugin/Base.pm
index 34b551d9..4b370375 100644
--- a/os-plugins/OpenSLX/OSPlugin/Base.pm
+++ b/os-plugins/OpenSLX/OSPlugin/Base.pm
@@ -128,3 +128,15 @@ sub postRemovalPhase
my $pluginRepositoryPath = shift;
my $pluginTempPath = shift;
}
+
+sub copyRequiredFilesIntoInitramfs
+{ # called by config-demuxer in order to give the plugin a chance to copy
+ # all required files from the vendor-OS into the initramfs.
+ # N.B.: Only files that are indeed required by the initramfs should be
+ # copied here, i.e. files that are needed *before* the root-fs
+ # has been mounted!
+ my $self = shift;
+ my $targetPath = shift;
+ my $attrs = shift;
+ my $makeInitRamFSEngine = shift;
+}