summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/boards/ipe337/env/bin/_update
blob: 5419ece6a7ba7befed96db34c3cce4bebde390e2 (plain)
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
#!/bin/sh

if [ $# = 1 ]; then
	image=$1
fi

if [ -z "$part" -o -z "$image" ]; then
	echo "define \$part and \$image"
	exit 1
fi

if [ ! -e "$part" ]; then
	echo "Partition $part does not exist"
	exit 1
fi

if [ x$ip = xdhcp ]; then
	dhcp
fi

ping $eth0.serverip
if [ $? -ne 0 ] ; then
	echo "update aborted"
	exit 1
fi

unprotect $part

echo
echo "Erasing partition $part"
erase $part

echo
echo "Flashing $image to $part"
tftp $image $part

protect $part