1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-22 00:20:36 +02:00

bin/fk: add option -u to force usbboot, even if SSH is/seems available

This commit is contained in:
Werner Almesberger 2013-04-27 20:00:56 -03:00
parent 8eee093a34
commit 040911f8b9

8
bin/fk
View File

@ -1,13 +1,17 @@
#!/bin/sh -e #!/bin/sh -e
if [ "${1#usb}" = "$1" ]; then if [ "$1" = -u ]; then
NN=
else
if [ "${1#usb}" = "$1" ]; then
if ! ping -c 1 -w 1 "$1" >/dev/null; then if ! ping -c 1 -w 1 "$1" >/dev/null; then
echo "no ping response from $1" 1>&2 echo "no ping response from $1" 1>&2
exit 1 exit 1
fi fi
NN=$1 NN=$1
else else
NN=`ifconfig ${1:-usb0} | NN=`ifconfig ${1:-usb0} |
sed '/.*inet addr:\([^ ]*\).*/{s//\1/;s/100$/101/;s/200$/202/;p;};d'` sed '/.*inet addr:\([^ ]*\).*/{s//\1/;s/100$/101/;s/200$/202/;p;};d'`
fi
fi fi
if [ "$NN" ]; then if [ "$NN" ]; then
echo "SCP to $NN" 1>&2 echo "SCP to $NN" 1>&2