Next Previous Contents

2. distrib: Distribution

2.1 distrib_getlatest: How can I get the latest isdn4linux?

There are different ways, depending on your kernel. Unless you are an experienced user of Linux, you should use a recent kernel (=first option).

2.2 distrib_cvs: How can I access the source from the current development/what is the CVS tree all about?

CVS - Concurrent Version System:

This is a multiuser/server extension to RCS (Revision Control System). The I4L drivers are developed under CVS, and there is a server (cvs.isdn4linux.de) with a CVS tree to which all developers have access. In addition, Fritz has configured anonymous read-only access to the CVS tree . If you must have the very latest versions, you can get them there, however they may contain more bugs than the released versions!!!

Here is how to get the latest version:

  1. Create and go to the directory where you want to store i4l
    mkdir ~/cvs; cd ~/cvs
    cvs -d :pserver:guest@cvs.isdn4linux.de:/i4ldev login
    

  2. Log in (asks for a password, enter readonly)
  3. Get the isdn kernel driver stuff (same hierarchy as in the linux source)
    cvs -d :pserver:guest@cvs.isdn4linux.de:/i4ldev checkout isdn
    

  4. Get the utility package into the current directory
    cvs -d :pserver:guest@cvs.isdn4linux.de:/i4ldev checkout isdn4k-utils
    

    If you want to get the latest version for kernel 2.0.x rather than for the latest kernel, then you have to give the additional option `-r':
    cvs -d :pserver:guest@cvs.isdn4linux.de:/i4ldev checkout -r isdn4kernel_2_0 isdn
    

  5. After having checked out, further updates can be done by first changing into isdn or isdn4k-utils subdirectory and running
    cvs update -P -d
    

    Tip: since cvs stores the password on your first login, you don't need to login again when updating.

WARNING!! THE NEWEST STUFF SOMETIMES IS VERY INSTABLE OR MAY NOT EVEN COMPILE WITHOUT PROGRAMMING KNOWLEDGE - No newbie questions on this PLEASE! Use the source, Luke!

People who want to continuously help develop isdn4linux by writing new drivers etc. can get a real account for full access. In this case write an email to Fritz Elfert fritz@isdn4linux.de


Next Previous Contents