summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2007-05-03 14:38:37 +0200
committerOliver Tappe2007-05-03 14:38:37 +0200
commit6ec952d1a11fc8a2a9a04a1b103cbf66ab81c4ab (patch)
tree4b2496f3929ee7be19af2c86e3859b51dd3fbb2d /config-db
parent* renamed 'ossetup-max-retry-count' to 'ossetup-max-try-count' and started to... (diff)
downloadcore-6ec952d1a11fc8a2a9a04a1b103cbf66ab81c4ab.tar.gz
core-6ec952d1a11fc8a2a9a04a1b103cbf66ab81c4ab.tar.xz
core-6ec952d1a11fc8a2a9a04a1b103cbf66ab81c4ab.zip
* now always passed '-d' to mkdxsinitrd in order to avoid using the busybox-provided
DHCP-client and use dhclient instead (as only the latter can fetch NIS-stuff). Note: We should improve udhcpcd in order to be able to drop dhclient at a later stage. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@990 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxconfig-demuxer8
1 files changed, 4 insertions, 4 deletions
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer
index 093a2920..7d041e40 100755
--- a/config-db/slxconfig-demuxer
+++ b/config-db/slxconfig-demuxer
@@ -324,10 +324,6 @@ sub generateInitalRamFS
vlog 1, _tr('generating initialramfs %s/initramfs', $pxeVendorOSPath);
my $cmd = "$openslxConfig{'bin-path'}/mkdxsinitrd ";
- my $debugLevel = $info->{ramfs_debug_level};
- if ($debugLevel) {
- $cmd .= qq[-d $debugLevel ];
- }
if (length($info->{ramfs_nicmods}) > 0) {
$cmd .= qq[-n "$info->{ramfs_nicmods}" ];
}
@@ -338,6 +334,10 @@ sub generateInitalRamFS
= "$openslxConfig{'stage1-path'}/$vendorOS->{name}";
$cmd .= "-i $pxeVendorOSPath/$info->{'initramfs-name'} -r $rootPath ";
$cmd .= "-s openslx ";
+ # use theme 'openslx'
+ $cmd .= "-d ";
+ # always use dhclient instead of the busybox-provided dhcp-client
+ # (since the latter is unable to fetch NIS-stuff).
# ...set kernel version...
my $kernelFile = readlink($info->{'kernel-file'});