summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-03-18 00:10:37 +0100
committerOliver Tappe2007-03-18 00:10:37 +0100
commit23a7212a81b3ebe0541714b4c4ec1a2a27a38a46 (patch)
treecab019bd3bbe33c177ffda5524025bc3becf0b1e /installer/OpenSLX/OSSetup/Engine.pm
parent* added support for switch personality from 64-bit to 32-bit in (diff)
downloadcore-23a7212a81b3ebe0541714b4c4ec1a2a27a38a46.tar.gz
core-23a7212a81b3ebe0541714b4c4ec1a2a27a38a46.tar.xz
core-23a7212a81b3ebe0541714b4c4ec1a2a27a38a46.zip
* oops: fixed stupid naming problems (instead of ...-x86_64 we have to use ..._x86_64
in order to avoid being bitten by the vendor-OS-name parser (everything after the second dash would be interpreted as being the selection, tsk!). Now it is actually possible again to install 64-bit systems at all. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@786 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index 2f4551af..ff266e66 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -31,7 +31,7 @@ use vars qw(%supportedDistros);
=> { module => 'Debian_4_0', support => 'clone' },
'fedora-6'
=> { module => 'Fedora_6', support => 'clone,install' },
- 'fedora-6-x86_64'
+ 'fedora-6_x86_64'
=> { module => 'Fedora_6_x86_64', support => 'clone' },
'gentoo-2005.1'
=> { module => 'Gentoo_2005_1', support => 'clone' },
@@ -43,15 +43,15 @@ use vars qw(%supportedDistros);
=> { module => 'SUSE_9_3', support => 'clone' },
'suse-10.0'
=> { module => 'SUSE_10_0', support => 'clone' },
- 'suse-10.0-x86_64'
+ 'suse-10.0_x86_64'
=> { module => 'SUSE_10_0_x86_64', support => 'clone' },
'suse-10.1'
=> { module => 'SUSE_10_1', support => 'clone,install' },
- 'suse-10.1-x86_64'
+ 'suse-10.1_x86_64'
=> { module => 'SUSE_10_1_x86_64', support => 'clone' },
'suse-10.2'
=> { module => 'SUSE_10_2', support => 'clone,install' },
- 'suse-10.2-x86_64'
+ 'suse-10.2_x86_64'
=> { module => 'SUSE_10_2_x86_64', support => 'clone,install' },
'ubuntu-6.06'
=> { module => 'Ubuntu_6_06', support => 'clone' },
@@ -830,7 +830,7 @@ sub changePersonalityIfNeeded {
my $arch = `uname -m`;
if ($arch =~ m[64] && $distroName !~ m[_64]) {
- # trying to handle a 32-bit vendor-OS on a 64-bit machine, so we change
+ # trying to handle a 32-bit vendor-OS on a 64-bit machine, so we change
# the personality accordingly (from 64-bit to 32-bit):
require 'syscall.ph'
or die _tr("unable to load '%s'\n", 'syscall.ph');