Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#! /bin/sh
# mk-card.sh - copyright - Xavier Boudet

should_I_stay()
{
  DEFLT="N";
  echo "Do you want to continue (y/n)? [${DEFLT}]: $C"
        RDVAR=$DEFLT
        read RDVAR

  case $RDVAR in
                "") RDVAR=$DEFLT;;
  esac

  ANSWER=$RDVAR
  case $ANSWER in
           Y|y) ;;
           *)   echo "Script ended, no action performed."
           exit 0 ;;
  esac
}

usage ()
{
  echo "Usage: $0 <drive>"
  echo "E.g: $0 /dev/mmcblk0"
}

check_if_mounted ()
{
  mount | grep "^$DRIVE"
  [ "$?" = "0" ] && echo "++ ERROR: Umount any partition on $DRIVE ++" && exit 1
}

check_if_main_drive ()
{
  mount | grep " on / type " > /dev/null
  if [ "$?" != "0" ] 
  then
    echo "-- WARNING: not able to determine current filesystem device"
  else
    main_dev=`mount | grep " on / type " | awk '{print $1}'`
    echo "-- Main device is: $main_dev"
    echo $main_dev | grep "$DRIVE" > /dev/null
    [ "$?" = "0" ] && echo "++ ERROR: $DRIVE seems to be current main drive ++" && exit 1
  fi

}


export LC_ALL=C

# Check if the script was started as root or with sudo
user=`id -u`
[ "$user" != "0" ] && echo "++ Must be root/sudo ++" && exit

if [ $# -ne 1 ]; then
  echo "Need one parameter"
  usage
  exit 1;
fi

DRIVE=$1

[ ! -b $DRIVE ] && echo "++ ERROR: $DRIVE is not a block device" && usage && exit 1

check_if_main_drive
check_if_mounted

echo "The drive $DRIVE will be erased and re-formated"
should_I_stay

dd if=/dev/zero of=$DRIVE bs=1024 count=1024

sync

cat << END | fdisk $DRIVE
n
p
1

+62M
n
p
2


t
1
c
a
1
w
END

sync
# handle various device names.

PARTITION1=${DRIVE}1
if [ ! -b ${PARTITION1} ]; then
  PARTITION1=${DRIVE}p1
fi

PARTITION2=${DRIVE}2
if [ ! -b ${PARTITION2} ]; then
  PARTITION2=${DRIVE}p2
fi

# now make partitions.
if [ -b ${PARTITION1} ]; then
  mkfs.vfat -F 32 -n "boot" ${PARTITION1}
else
  echo "Cant find boot partition in /dev"
fi

if [ -b ${PARITION2} ]; then
  mkfs.ext4 -L "rootfs" ${PARTITION2}
else
  echo "Cant find rootfs partition in /dev"
fi

exit 0