summaryrefslogtreecommitdiffstats
path: root/initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm
diff options
context:
space:
mode:
authorOliver Tappe2008-02-01 20:35:23 +0100
committerOliver Tappe2008-02-01 20:35:23 +0100
commit92abb7e97ca141972124782d1b9b25a2c242c347 (patch)
treee45fc39e1e64258b542315a5301e05bf1f0b66d5 /initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm
parent* slurpFile now supports returning the file as an array of lines (diff)
downloadcore-92abb7e97ca141972124782d1b9b25a2c242c347.tar.gz
core-92abb7e97ca141972124782d1b9b25a2c242c347.tar.xz
core-92abb7e97ca141972124782d1b9b25a2c242c347.zip
* finished initial re-implementation of mkdxsinitrd in perl -
there's still stuff missing and it has not been tested, either git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1508 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm')
-rw-r--r--initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm35
1 files changed, 35 insertions, 0 deletions
diff --git a/initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm b/initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm
new file mode 100644
index 00000000..25d0b6f7
--- /dev/null
+++ b/initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm
@@ -0,0 +1,35 @@
+# Copyright (c) 2006, 2007 - 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::Ubuntu.pm
+# - provides Ubuntu-specific overrides of the OpenSLX MakeInitRamFS API.
+# -----------------------------------------------------------------------------
+package OpenSLX::MakeInitRamFS::Distro::Ubuntu;
+
+use strict;
+use warnings;
+
+use base qw(OpenSLX::MakeInitRamFS::Distro::Debian);
+
+use OpenSLX::Basics;
+
+################################################################################
+### implementation
+################################################################################
+sub new
+{
+ my $class = shift;
+ my $self = {
+ 'base-name' => 'ubuntu',
+ };
+ return bless $self, $class;
+}
+
+1; \ No newline at end of file