kernel/scripts/pull-upstreams.sh
Roland McGrath 4a89409b13 Restore README.txt, scripts.
(cherry picked from commit 11487c5358)
2010-08-01 16:03:34 -04:00

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