From 92abb7e97ca141972124782d1b9b25a2c242c347 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Fri, 1 Feb 2008 19:35:23 +0000 Subject: * 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 --- initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm | 35 ++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm (limited to 'initramfs/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm') 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 -- cgit v1.2.3-55-g7522