summaryrefslogtreecommitdiffstats
path: root/boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm
diff options
context:
space:
mode:
authorMichael Janczyk2010-04-08 21:12:10 +0200
committerMichael Janczyk2010-04-08 21:12:10 +0200
commit8d36684e70cb0e83133f9e671039de2c48461478 (patch)
tree58a04937e405d0a8b225d1ae616d6df08f5c6529 /boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm
parentchanged name of init-hook, qemukvm tun/tap config (diff)
downloadcore-8d36684e70cb0e83133f9e671039de2c48461478.tar.gz
core-8d36684e70cb0e83133f9e671039de2c48461478.tar.xz
core-8d36684e70cb0e83133f9e671039de2c48461478.zip
annoying warning from demuxer removed, has to be solved otherwise
virtualization plugin refurbished virtualbox can boot now 64 bit guests on 32 bit hosts
Diffstat (limited to 'boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm')
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm b/boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm
index cac92b37..6de0a4fe 100644
--- a/boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm
+++ b/boot-env/OpenSLX/MakeInitRamFS/Engine/Base.pm
@@ -383,17 +383,17 @@ sub _writeSlxSystemConf
# check if default directories available and copy them to /etc
my $defaultDirConfig = "$self->{'root-path'}/etc/opt/openslx/openslx.conf";
my $configTargetPath = "$self->{'build-path'}/etc";
- my $defaultConfVer = slurpFile("$defaultDirConfig");
- my $actConfVer = "Version 0.2";
+ #my $defaultConfVer = slurpFile("$defaultDirConfig");
+ #my $actConfVer = "Version 0.2";
if (-r $defaultDirConfig) {
$self->addCMD("cp -p $defaultDirConfig $configTargetPath/");
- if ($defaultConfVer =~ m{$actConfVer}) {
- warn _tr(
- "Your version of default dir file (openslx.conf) is to old!\n".
- "Eventually the system won't work.\n" .
- "Please run install, update or clone of this system again!\n");
- }
+# if ($defaultConfVer =~ m{$actConfVer}) {
+# warn _tr(
+# "Your version of default dir file (openslx.conf) is to old!\n".
+# "Eventually the system won't work.\n" .
+# "Please run install, update or clone of this system again!\n");
+# }
} else {
die _tr(
"No default directories defined!\n" .