13cbc19d00
(cherry picked from commit 11487c5358
)
14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#!/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
|