Changes between Version 3 and Version 4 of ClickImage


Ignore:
Timestamp:
May 26, 2011 11:22:03 AM (13 years ago)
Author:
mikeryan
Comment:

building custom modules

Legend:

Unmodified
Added
Removed
Modified
  • ClickImage

    v3 v4  
    11= Ubuntu804-click =
     2
     3Ubuntu804-click is an OS image with support for [http://read.cs.ucla.edu/click The Click Modular Router].
    24
    35Ubuntu804-click is based on Ubuntu804-STD with the following modifications
     
    3032[66530.644618] chatter: ok:   40 | 45000028 00000000 401177c3 01000001 02000002 13691369
    3133}}}
     34
     35== Building custom modules ==
     36
     37The source for click is in {{{/usr/src/click-1.8.0}}}.
     38
     39You must always give configure the path to the kernel source (see below).
     40
     41Custom modules are typically built in the local elements folder. Copy your source files into {{{/usr/src/click-1.8.0/elements/local}}} and give configure the {{{--enable-local}}} flag.
     42
     43{{{
     44$ sudo -s
     45# cd /usr/src/click-1.8.0
     46# ./configure --with-linux=/usr/src/linux-2.6.24.7 --enable-local
     47}}}
     48
     49At this point building and installing is as simple as:
     50
     51{{{
     52# make && make install
     53}}}