summaryrefslogtreecommitdiffstats
path: root/boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm
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/Engine/Preboot.pm
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/Engine/Preboot.pm')
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Engine/Preboot.pm14
1 files changed, 13 insertions, 1 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;