summaryrefslogtreecommitdiffstats
path: root/initramfs/mkdxsinitrd
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-12-15 23:29:56 +0100
committerDirk von Suchodoletz2006-12-15 23:29:56 +0100
commit1cbb2ddde2cb09e2735ab372551945d17c3187b8 (patch)
tree77f3aad1fe4394984b22c82f9a65373a4cd16018 /initramfs/mkdxsinitrd
parentRemove bogus extra " in front of the file name. (diff)
downloadcore-1cbb2ddde2cb09e2735ab372551945d17c3187b8.tar.gz
core-1cbb2ddde2cb09e2735ab372551945d17c3187b8.tar.xz
core-1cbb2ddde2cb09e2735ab372551945d17c3187b8.zip
Busybox had broken killall - fixed. Fixed replacement bug for udhcpc
script, nameserver in resolv.conf is set properly now. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@549 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/mkdxsinitrd')
-rwxr-xr-xinitramfs/mkdxsinitrd8
1 files changed, 8 insertions, 0 deletions
diff --git a/initramfs/mkdxsinitrd b/initramfs/mkdxsinitrd
index 245e9fb8..df3a5eec 100755
--- a/initramfs/mkdxsinitrd
+++ b/initramfs/mkdxsinitrd
@@ -513,6 +513,14 @@ if [ -n "$use_busybox" ] ; then
# fake the sh link in busybox environment
echo -e "#!/bin/ash\n/bin/ash \$@" > ${INSTDIR}/bin/sh
chmod a+x ${INSTDIR}/bin/sh
+ # binaries useful for debugging purposes
+ if [ $IRFSDEBUG -gt 2 ] ; then
+ for bbins in \
+ strace
+ do
+ cobi ${bbins} bin || echo "Program ${bbins} not found"
+ done
+ fi
else
# find and copy a shell to be used within initialramfs
for bbins in bash ash sh; do