summaryrefslogtreecommitdiff
path: root/recipes/nslu2-binary-only/unslung-rootfs/mkfs.ext3
diff options
context:
space:
mode:
authorGraeme Gregory <dp@xora.org.uk>2009-05-01 20:22:54 +0100
committerGraeme Gregory <dp@xora.org.uk>2009-05-01 20:22:54 +0100
commitc9c54dff2274b232ffb294eb112a707bdb08979c (patch)
tree491591b1eaf400935befe1a8892e8ffdd6c6157d /recipes/nslu2-binary-only/unslung-rootfs/mkfs.ext3
parent7c5721fde04a54c72d55c202440d07241b554d87 (diff)
parentaed989bee84635625b1af33907fe082df6de163f (diff)
Merge branch 'org.openembedded.dev' of git+ssh://git@git.openembedded.net/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/nslu2-binary-only/unslung-rootfs/mkfs.ext3')
-rwxr-xr-xrecipes/nslu2-binary-only/unslung-rootfs/mkfs.ext313
1 files changed, 0 insertions, 13 deletions
diff --git a/recipes/nslu2-binary-only/unslung-rootfs/mkfs.ext3 b/recipes/nslu2-binary-only/unslung-rootfs/mkfs.ext3
deleted file mode 100755
index 49a88c0e06..0000000000
--- a/recipes/nslu2-binary-only/unslung-rootfs/mkfs.ext3
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# Fix obscure problem - redirect stdout iff mkfs.ext3
-# is being invoked by the Linksys GUI format utility.
-#
-u=`/bin/pidof utility.cgi`
-if [ ! -f "/tmp/Preparing" -o "x${u}" = "x" -o \
- "y${1}" != "y-m" -o "z${2}" != "z1" ]
-then
- /usr/bin/mke2fs -j $@
-else
- /usr/bin/mke2fs -j $@ >/tmp/mkfs.$$.log
-fi