Restore README.txt, scripts.

(cherry picked from commit 11487c5358)
This commit is contained in:
Roland McGrath 2010-07-29 19:24:43 -07:00 committed by Chuck Ebbert
commit 13cbc19d00
26 changed files with 986 additions and 0 deletions

13
scripts/pull-upstreams.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
utrace_base=2.6-current
utrace_base=2.6.34
url=http://people.redhat.com/roland/utrace/${1:-$utrace_base}
wget -q -O /dev/stdout $url/series | grep 'patch$' |
while read i
do
rm -f linux-2.6-$i
wget -nv -O linux-2.6-$i $url/$i
done