blob: 36ef91cc733df770fee3edb6a13c4b6b122cbdf8 (
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
|
#!/bin/bash
OWN_ADDR=${OWN_ADDR:-192.168.0.1}
PORT=8080
IMAGE=${IMAGE:-openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin}
cd $(dirname $(readlink -f $0))
if [ x"${1:-}" == x ];then
echo "usage: $0 ADDRESS"
echo
echo "ENVIRONMENT:"
echo " OWN_ADDR (currently $OWN_ADDR)"
echo " IMAGE (currently $IMAGE)"
echo " PORT (currently $PORT)"
exit 1
fi
IP=$1
cd builder/bin/ar71xx/
if [ -e "$IMAGE" ];then
python2 -m SimpleHTTPServer $PORT &
sleep 1
SERVER_PID=$!
ssh root@$IP "wget -O /tmp/firmware.bin http://${OWN_ADDR}:${PORT}/${IMAGE} \
&& /sbin/mtd write /tmp/firmware.bin firmware \
&& /sbin/reboot"
kill $SERVER_PID
else
echo "cannot find ar71xx build, aborting"
exit 1
fi
|