sharkcz / rpms / kernel

Forked from rpms/kernel 6 years ago
Clone
Blob Blame History Raw
#!/bin/bash

utrace_base=2.6.37

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