Difference between revisions of "CVS"
(There is no module named linux in this repository.) |
|||
Line 21: | Line 21: | ||
== CVS copy via Rsync == | == CVS copy via Rsync == | ||
The CVS repository can also be fetched using rsync: | The CVS repository can also be fetched using rsync like this: | ||
<pre> | <pre> | ||
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/ | rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/<module> /local/directory | ||
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/CVSROOT /local/directory | rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/CVSROOT /local/directory | ||
</pre> | </pre> |
Revision as of 19:04, 29 May 2009
Anonymous CVS
For those who always want to stay on the bleeding edge, and want to avoid having to download patch files or full tarballs, we also have an anonymous CVS server. There are currently three amateur radio relevant modules in CVS archive, libax25, ax25-apps and ax25-tools.
cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/ax25-cvs login (Only needed the first time you use anonymous CVS, the password is "cvs") cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/ax25-cvs co <module>
Web CVS
Browse the changes
Via cvsweb, you have direct access to the new AX.25 sources, and a few other projects hosted in the same CVS archive. The intuitive interface allows you to follow the development at the click of your mouse.
Download as tar archive
CVS copy via Rsync
The CVS repository can also be fetched using rsync like this:
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/<module> /local/directory rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/CVSROOT /local/directory
You can then check it out using:
cvs -d/local/directory co <module>
Quarterly snapshots
We plan to automaticaly generate snapshots quarterly, downloadable as tar archives.
Compilation notes
Predependencies
install autoconf automake1.9 libtool libncurses-dev
At least automake1.4 on debian sarge and etch is known to be incompatible in preconfigureing the hdlcutil FL-Widgets tree.
Bootstrap (aclocal, autoconf and make)
for dir in libax25 ax25-apps ax25-tools; do cd $dir && sh bootstrap && make && make install && cd .. done
On a new fresh installation, you should do "make installconf" in the libax25 ax25-apps ax25-tools directories, too. But be aware, that make installconf overwrites existing configuration files in /etc/ax25/.
Maintainers
Maintainers for ax25-apps/-tools and libax25 are Ralf Baechle DL5RB <ralf@linux-mips.org> and Thomas Osterried DL9SAU <ax25@x-berg.in-berlin.de>.
Please feel free to contact us in case of problems, bugs or fixes, patches, enhancements, feature requests, our just for your personal success story.
Way Out
Back to the LinuxAX25 Project Homepage