summaryrefslogtreecommitdiffstats
path: root/scripts/pull-upstreams.sh
blob: e94fcfd48d8cce5840d59916a6eb93e4ef4c52f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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