summaryrefslogtreecommitdiffstats
path: root/boot-env/OpenSLX/MakeInitRamFS
diff options
context:
space:
mode:
authorOliver Tappe2009-01-28 22:28:19 +0100
committerOliver Tappe2009-01-28 22:28:19 +0100
commit72c3246919419358a21083abf5bdf8c6b0995644 (patch)
tree99e3e0baabd044f48b33439b0cbcab114586cd1c /boot-env/OpenSLX/MakeInitRamFS
parent* added invocation of w3m in preboot environment (not doing anything useful (diff)
downloadcore-72c3246919419358a21083abf5bdf8c6b0995644.tar.gz
core-72c3246919419358a21083abf5bdf8c6b0995644.tar.xz
core-72c3246919419358a21083abf5bdf8c6b0995644.zip
* a little cleanup (no need for specific PrebootCD.pm in MakeInitRamFS)
* added copying of secondary uclib-rootfs layer for preboot environment git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2552 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'boot-env/OpenSLX/MakeInitRamFS')
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm14
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Engine/PrebootCD.pm38
2 files changed, 13 insertions, 39 deletions
diff --git a/boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm b/boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm
index 6de04314..3c012ce2 100644
--- a/boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm
+++ b/boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm
@@ -37,7 +37,7 @@ sub _collectCMDs
$self->_writeSlxSystemConf();
$self->_copyUclibcRootfs();
- $self->_copyVariantSpecificFiles();
+ $self->_copyPrebootSpecificFiles();
$self->{distro}->applyChanges($self);
@@ -127,4 +127,16 @@ sub _copyUclibcRootfs
return 1;
}
+sub _copyPrebootSpecificFiles
+{
+ my $self = shift;
+
+ # write secondary rootfs-layer (including init) on top of base layer
+ my $prebootRootfs
+ = "$openslxConfig{'base-path'}/share/boot-env/preboot/uclib-rootfs";
+ $self->addCMD("rsync -rlpt $prebootRootfs/ $self->{'build-path'}");
+
+ return 1;
+}
+
1;
diff --git a/boot-env/OpenSLX/MakeInitRamFS/Engine/PrebootCD.pm b/boot-env/OpenSLX/MakeInitRamFS/Engine/PrebootCD.pm
deleted file mode 100644
index b447177c..00000000
--- a/boot-env/OpenSLX/MakeInitRamFS/Engine/PrebootCD.pm
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (c) 2006-2008 - 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/
-# -----------------------------------------------------------------------------
-# MakeInitialRamFS::Engine::PrebootCD.pm
-# - provides driver engine for MakeInitialRamFS API, implementing the
-# preboot behaviour that is specific for CDs.
-# -----------------------------------------------------------------------------
-package OpenSLX::MakeInitRamFS::Engine::PrebootCD;
-
-use strict;
-use warnings;
-
-use base qw(OpenSLX::MakeInitRamFS::Engine::Preboot);
-
-use OpenSLX::Basics;
-use OpenSLX::Utils;
-
-################################################################################
-### implementation methods
-################################################################################
-sub _copyVariantSpecificFiles
-{
- my $self = shift;
-
- my $dataDir = "$openslxConfig{'base-path'}/share/boot-env/preboot";
- $self->addCMD("cp $dataDir/init $self->{'build-path'}/");
-
- return 1;
-}
-
-1;