summaryrefslogtreecommitdiffstats
path: root/initramfs
diff options
context:
space:
mode:
authorFelix Endres2007-06-01 18:10:08 +0200
committerFelix Endres2007-06-01 18:10:08 +0200
commit953ef6fe4363d5456cf8b211e1a033b88f93f2a6 (patch)
treef9619830c3ebab802adcb7f6e616e2a4290c15c7 /initramfs
parentCheck in same fixes as for the branch ... (diff)
downloadcore-953ef6fe4363d5456cf8b211e1a033b88f93f2a6.tar.gz
core-953ef6fe4363d5456cf8b211e1a033b88f93f2a6.tar.xz
core-953ef6fe4363d5456cf8b211e1a033b88f93f2a6.zip
For Ubuntu: Include missing libraries for dhclient into initrd.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1135 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs')
-rwxr-xr-xinitramfs/mkdxsinitrd5
1 files changed, 5 insertions, 0 deletions
diff --git a/initramfs/mkdxsinitrd b/initramfs/mkdxsinitrd
index 4fcfd9a3..157acb0f 100755
--- a/initramfs/mkdxsinitrd
+++ b/initramfs/mkdxsinitrd
@@ -455,6 +455,11 @@ fi
if [ -n "${use_dhclient}" ] ; then
if binfinder dhclient ; then
cobi dhclient bin
+ if [ "$DISTRO_NAME" = "ubuntu" ] ; then
+ #Dhclient auf Ubu 6.10 streikt ohne libnss_compat
+ echo "/lib/libnss_compat.so.2" >> ${INSTDIR}/tmp/libraries
+ echo "/lib/libnsl.so.1" >> ${INSTDIR}/tmp/libraries
+ fi
else
echo "dhclient is not available"
fi