On Sun, 2007-08-12 at 20:47 +0200, Michael Buesch wrote: > Here are some patches that port the pci bridge > code of b43 to ssb. So with these patches it is > possible to run b43 and your yet-to-be-ported > b43legacy in parallel. The bridge code in ssb > would always probe the correct driver. > > http://bu3sch.de/patches/wireless-dev/20070812-1186943700/
you need the attached script ;) johannes
#!/bin/dash
digits=auto
mindigits=3
if [ "$digits" = "auto" ] ; then
num=$(quilt series | wc -l)
digits=$(expr length "$num")
fi
if [ $digits -le $mindigits ] ; then
digits=$mindigits
fi
quilt series | (
num=0
while read pname ; do
num=$(expr $num + 1)
bpname=$(echo "$pname" | sed 's/^[0-9]\+-\(.*\)/\1/')
if [ $digits = 0 ] ; then
npname="$bpname"
else
npname="$(printf "%.${digits}d-%s" $num "$bpname")"
fi
if [ "$pname" != "$npname" ] ; then
quilt rename -P "$pname" "$npname"
fi
done
)
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Bcm43xx-dev mailing list [email protected] https://lists.berlios.de/mailman/listinfo/bcm43xx-dev
