summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Tappe2007-04-30 19:15:47 +0200
committerOliver Tappe2007-04-30 19:15:47 +0200
commit6fc6f9753b7089d4679393d1425e04c111b3267f (patch)
treeab2573e0f2c3505a6f792c4c0f963eee3eed3e49
parentProblem with mkdxsinitrd and option (-d) for using dhclient instead of (diff)
downloadcore-6fc6f9753b7089d4679393d1425e04c111b3267f.tar.gz
core-6fc6f9753b7089d4679393d1425e04c111b3267f.tar.xz
core-6fc6f9753b7089d4679393d1425e04c111b3267f.zip
* changed numbering scheme of initramfs from letters to numbers, in order to
avoid confusion with export/systems (which already make use of letters). This closes ticket #84. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@969 95ad53e4-c205-0410-b2fa-d234c58c8868
-rwxr-xr-xconfig-db/slxconfig-demuxer4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer
index a26a5f10..aebcbf25 100755
--- a/config-db/slxconfig-demuxer
+++ b/config-db/slxconfig-demuxer
@@ -376,8 +376,8 @@ sub writeSystemPXEFiles
}
$vendorOSInitramfsMap{$info->{'vendor-os'}->{id}}++;
$info->{'initramfs-name'}
- = sprintf "initramfs-%c",
- 64+$vendorOSInitramfsMap{$info->{'vendor-os'}->{id}};
+ = sprintf "initramfs-%d",
+ $vendorOSInitramfsMap{$info->{'vendor-os'}->{id}};
generateInitalRamFS($info, $pxeVendorOSPath);
}