Howot: pull ALSA CVS into kernel source
For all those who want to pull alsa CVS into their kernel for some reason, here is a working and clean howto. There are some in alsa-wiki too, but they leave waste in the kernel-source :P
cd ~/cvs cvs -q -f -z3 -d ":pserver:anonymous:@cvs.sourceforge.net:/cvsroot/alsa" co -P alsa-kernel cd alsa-kernel rm -rf oss rm -rf Documentation/CVS cp -a Documentation/* /usr/src/linux/Documentation rm -rf Documentation rm -rf include/CVS cp -a include/* /usr/src/linux/include/sound rm -rf include rm -rf CVS cp -a * /usr/src/linux/sound
That's it :)
Update: suddenly there are tons of other CVS dirs in kernel source now. A simple
find -name CVS* | xargs rm -dr helps.
|