summaryrefslogtreecommitdiffstats
path: root/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm
diff options
context:
space:
mode:
authorDirk von Suchodoletz2009-03-29 23:54:38 +0200
committerDirk von Suchodoletz2009-03-29 23:54:38 +0200
commitbfd88a0b6c724ad64acead7661f970aeeb510956 (patch)
tree9a58fba1e74310661e09ef6333b37dc93f4975a0 /boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm
parentUbuntu 9.04 "support" (inital to check for the howto/documentation, (diff)
downloadcore-bfd88a0b6c724ad64acead7661f970aeeb510956.tar.gz
core-bfd88a0b6c724ad64acead7661f970aeeb510956.tar.xz
core-bfd88a0b6c724ad64acead7661f970aeeb510956.zip
Trying to add Ubuntu-9.04 (for the sake of documentation in the wiki),
but some problems here ... git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2770 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm')
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm36
1 files changed, 36 insertions, 0 deletions
diff --git a/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm b/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm
new file mode 100644
index 00000000..033ff644
--- /dev/null
+++ b/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu_9.pm
@@ -0,0 +1,36 @@
+# Copyright (c) 2009 - OpenSLX GmbH
+#
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
+#
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
+#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# MakeInitRamFS::Distro::Ubuntu_9.pm
+# - provides Ubuntu-9.X-specific overrides of the MakeInitRamFS::Distro API.
+# -----------------------------------------------------------------------------
+package OpenSLX::MakeInitRamFS::Distro::Ubuntu_9;
+
+use strict;
+use warnings;
+
+use base qw(OpenSLX::MakeInitRamFS::Distro::Ubuntu);
+
+use OpenSLX::Basics;
+
+################################################################################
+### implementation
+################################################################################
+sub applyChanges
+{
+ my $self = shift;
+ my $engine = shift;
+
+ $engine->_addFilteredKernelModules( qw( af_packet unix hid ));
+
+ return;
+}
+
+1;