summaryrefslogtreecommitdiffstats
path: root/trunk/tools/partition.sh
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/tools/partition.sh')
-rwxr-xr-xtrunk/tools/partition.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/trunk/tools/partition.sh b/trunk/tools/partition.sh
deleted file mode 100755
index 2637797..0000000
--- a/trunk/tools/partition.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-DEVICE=$1
-LABEL=Share
-if [ -z "$DEVICE" ]; then
- echo "No device"
- exit 1
-fi
-
-# FT
-#END1=780
-#END2=1950
-
-#END1=380
-#END2=1022
-
-END1=25000
-END2=60869
-
-fdisk $DEVICE <<EOF
-o
-n
-p
-1
-
-$END1
-n
-p
-2
-
-$END2
-t
-1
-b
-t
-2
-b
-w
-EOF
-
-mkdosfs -n $LABEL ${DEVICE}1