summaryrefslogtreecommitdiffstats
path: root/initramfs/OpenSLX/MakeInitRamFS/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2008-08-27 23:18:59 +0200
committerOliver Tappe2008-08-27 23:18:59 +0200
commit3a7e659fda90fe22bb636497548f2a7dee7261db (patch)
tree22fbde1b07436879c6ce5f6b37a99b88102e6bed /initramfs/OpenSLX/MakeInitRamFS/Engine.pm
parent* updated uClibc-busybox with a version that has a fixed udhcpc - please report (diff)
downloadcore-3a7e659fda90fe22bb636497548f2a7dee7261db.tar.gz
core-3a7e659fda90fe22bb636497548f2a7dee7261db.tar.xz
core-3a7e659fda90fe22bb636497548f2a7dee7261db.zip
* refactored more boot-environment-specific stuff out of slxconfig-demuxer into
the corresponding class (OpenSLX::BootEnvironment::PXE) - should not cause any functional changes yet git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2110 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/OpenSLX/MakeInitRamFS/Engine.pm')
-rw-r--r--initramfs/OpenSLX/MakeInitRamFS/Engine.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/initramfs/OpenSLX/MakeInitRamFS/Engine.pm b/initramfs/OpenSLX/MakeInitRamFS/Engine.pm
index fbcf35a0..42ee2398 100644
--- a/initramfs/OpenSLX/MakeInitRamFS/Engine.pm
+++ b/initramfs/OpenSLX/MakeInitRamFS/Engine.pm
@@ -29,7 +29,6 @@ use OpenSLX::Utils;
# TODO: implement support for the following (either here or as plugin):
# wlan
# tpm
-# cdboot (must be implemented here!)
################################################################################
### interface methods
@@ -378,9 +377,9 @@ sub _copyKernelModules
$self->addCMD("mkdir -p $targetPath");
$self->addCMD("cp -p $sourcePath/modules.* $targetPath/");
- # TODO: find out what's the story behing the supposedly required
- # modules 'af_packet', 'unix' and 'hid' (which seem to be
- # missing at least on some systems)
+ # add a couple of kernel modules that we expect to be used in stage3
+ # (some of these modules do not exist on all distros, so they will be
+ # filtered out again by the respective distro object):
my @kernelModules = qw(
af_packet unix hid usbhid uhci-hcd ohci-hcd
);