source: trunk/packages/xen-3.1/xen-3.1/tools/vnet/vnet-module/00README @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 897 bytes
Line 
1Vnet module for network virtualization.
2Mike Wray <mike.wray@hp.com>
3
4*) Compiling
5The vnet module can be compiled for 2.4 or 2.6 series kernels.
6The makefiles  use the following variables, which
7can be set in your env or on the make command line:
8
9LINUX_SERIES:   linux release to compile for: 2.4, or 2.6 (default).
10XEN_ROOT:       root of the xen tree containing kernel source.
11KERNEL_VERSION: kernel version, default got from XEN_ROOT.
12KERNEL_SRC:     path to kernel source, default build-linux-<VERSION>
13                under XEN_ROOT.
14
15*) For 2.4 kernel
16
17To compile from scratch:
18
19make clean
20make LINUX_SERIES=2.4
21
22This will build vnet_module.o in the current directory.
23To install the module use
24
25make LINUX_SERIES=2.4 install
26
27*) For 2.6 kernel
28
29To compile from scratch:
30
31make clean
32make
33
34This will build vnet_module.ko in the current directory.
35To install the module use
36
37make install
38
39
Note: See TracBrowser for help on using the repository browser.