2010-07-30 02:24:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2011-01-22 18:43:13 +00:00
|
|
|
utrace_base=2.6.37
|
2010-07-30 02:24:43 +00:00
|
|
|
|
|
|
|
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
|