diff host-tools.sh @ 340:595332f94fea

Add timeout to wget, and add another mirror (impactlinux.com) so there's a place to get toybox if landley.net is down. Busybox 1.2.2 wget doesn't support timeouts so yank that and add it to the host-tools blacklist (which doubles as the todo list for toybox). Also, the sha1sum I was using didn't match the toybox _release_ tarball (probably some handrolled one I did).
author Rob Landley <rob@landley.net>
date Sat, 31 May 2008 19:09:43 -0500
parents 65b7f7a6ddf4
children 1782b77fae15
line wrap: on
line diff
--- a/host-tools.sh	Sat May 31 18:16:56 2008 -0500
+++ b/host-tools.sh	Sat May 31 19:09:43 2008 -0500
@@ -21,7 +21,7 @@
 # The last six need to be added to toybox.  (The build breaks if we use
 # the busybox-1.2.2 versions.)
 
-for i in ar as nm cc gcc make ld   bzip2 find install od sort diff
+for i in ar as nm cc gcc make ld   bzip2 find install od sort diff wget
 do
   [ ! -f "${HOSTTOOLS}/$i" ] && (ln -s `which $i` "${HOSTTOOLS}/$i" || dienow)
 done