summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/etc/functions
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-10-03 23:21:47 +0200
committerDirk von Suchodoletz2006-10-03 23:21:47 +0200
commit8b6272ebfe3d3d2c415b64fe4c14cea8baffff62 (patch)
tree608d26c2a9fbaf95fa2d8e1c11deb74d0a4a6138 /initramfs/initrd-stuff/etc/functions
parentnow /w grouptest. checks machine-setup in which slxgrp a clinet is, and (diff)
downloadcore-8b6272ebfe3d3d2c415b64fe4c14cea8baffff62.tar.gz
core-8b6272ebfe3d3d2c415b64fe4c14cea8baffff62.tar.xz
core-8b6272ebfe3d3d2c415b64fe4c14cea8baffff62.zip
Naming in mkdxsinitrd and slxmkramfs (temporary directory where pre-cpio
initialramfs stuff could be found -> /tmp/slx-tmpramfs), see MkinitrdHowto too ... (matched to documentation too) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@436 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/initrd-stuff/etc/functions')
-rw-r--r--initramfs/initrd-stuff/etc/functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/initramfs/initrd-stuff/etc/functions b/initramfs/initrd-stuff/etc/functions
index f241ebe1..6784c27e 100644
--- a/initramfs/initrd-stuff/etc/functions
+++ b/initramfs/initrd-stuff/etc/functions
@@ -401,14 +401,14 @@ local dst=/tmp/$(basename $1)
# tftp get part
case "$tftp" in
*/atftp)
- atftp -g -r $1 -l $dst $2 2>/dev/null
+ atftp -g -r $1 -l $dst $2 2>&1>/dev/null
;;
*/tftp)
# distinguish between busybox tftp and standalone (in.tftp) client
if [ -x /bin/busybox ] ; then
tftp -g -r $1 -l $dst $2 2>/dev/null
else
- echo "get $1 $dst" | tftp $2 2>/dev/null
+ echo "get $1 $dst" | tftp $2 2>&1>/dev/null
fi
;;
esac