summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/FileSystem
diff options
context:
space:
mode:
authorOliver Tappe2008-01-22 21:03:00 +0100
committerOliver Tappe2008-01-22 21:03:00 +0100
commitb8d2bb380eb4df30287af4c41e9f0dd2cb67be1c (patch)
treec5dfa41f4805c082e8a9b3f47b4ac0bd69b50e24 /installer/OpenSLX/OSExport/FileSystem
parent* extract debug-level from kernel_params and add pass it (diff)
downloadcore-b8d2bb380eb4df30287af4c41e9f0dd2cb67be1c.tar.gz
core-b8d2bb380eb4df30287af4c41e9f0dd2cb67be1c.tar.xz
core-b8d2bb380eb4df30287af4c41e9f0dd2cb67be1c.zip
* added support to the OSExport engine for determining the
required tools, too (not only the kernel modules) - such that MakeInitRamFS::Engine can now find out which tools are *required* by a specific system and can copy those (and bail if they are not available) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1485 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSExport/FileSystem')
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/Base.pm4
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/SquashFS.pm7
2 files changed, 11 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSExport/FileSystem/Base.pm b/installer/OpenSLX/OSExport/FileSystem/Base.pm
index 009ec87d..a59cc944 100644
--- a/installer/OpenSLX/OSExport/FileSystem/Base.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/Base.pm
@@ -65,6 +65,10 @@ sub requiredFSMods
{
}
+sub requiredFSTools
+{
+}
+
sub showExportConfigInfo
{
}
diff --git a/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm b/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
index f0618808..87407ca3 100644
--- a/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
@@ -163,6 +163,13 @@ sub requiredFSMods
return @mods;
}
+sub requiredFSTools
+{
+ my $self = shift;
+
+ return $self->{'block-device'}->requiredBlockDeviceTools();
+}
+
sub showExportConfigInfo
{
my $self = shift;