summaryrefslogtreecommitdiffstats
path: root/src/boot-env
diff options
context:
space:
mode:
authorMichael Janczyk2012-11-22 12:37:46 +0100
committerMichael Janczyk2012-11-22 12:37:46 +0100
commit2ddbcd32c1262791ff9a8a0367063e2332aea903 (patch)
treed9ff88a148fffd98cece078fbf791e07661b40f0 /src/boot-env
parentleave dir tree in /var but delete the files, see comment (diff)
downloadcore-2ddbcd32c1262791ff9a8a0367063e2332aea903.tar.gz
core-2ddbcd32c1262791ff9a8a0367063e2332aea903.tar.xz
core-2ddbcd32c1262791ff9a8a0367063e2332aea903.zip
change config structure:
- old config, which was based only on stage3 wasn't modified. Only the directory has changed to <private-path>/config/stage3 - stage1 config, which wasn't possible this way before, can be done now in <private-path>/config/stage1 - the default/rootfs directory will be used for every vendor-OS - <private-path>/config/stage1/<vendorOSName>/rootfs will be used for the corresponding vendor-OS - so after a clone/install/update of stage1 the dafault config will be rsynced and after that the vendor-OS specific config will be rsynced. At the end the plugins will be installed. - This is all part of slxos-setup. '
Diffstat (limited to 'src/boot-env')
-rw-r--r--src/boot-env/OpenSLX/MakeInitRamFS/Engine/SlxBoot.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot-env/OpenSLX/MakeInitRamFS/Engine/SlxBoot.pm b/src/boot-env/OpenSLX/MakeInitRamFS/Engine/SlxBoot.pm
index 82f46103..a0c24edb 100644
--- a/src/boot-env/OpenSLX/MakeInitRamFS/Engine/SlxBoot.pm
+++ b/src/boot-env/OpenSLX/MakeInitRamFS/Engine/SlxBoot.pm
@@ -239,7 +239,7 @@ sub _copyPreAndPostinitFiles
'default/initramfs/postinit.local',
"$self->{'system-name'}/initramfs/postinit.local"
) {
- my $cfgPath = "$openslxConfig{'private-path'}/config/$cfg";
+ my $cfgPath = "$openslxConfig{'private-path'}/config/stage3/$cfg";
next if !-f $cfgPath;
$self->addCMD("cp -p $cfgPath $self->{'build-path'}/bin/");
}