1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
kernel-patch-openvz for Debian
==============================
Kernel builf configuration notes:
---------------------------------
As openvz implements its own security model you have to disable
the normal security functionality in the kernel build configuration file.
CONFIG_SECURITY=n
This means that all *SECURITY* kernel configurations should be
disabled.
For sparc and ppc architectures you also need to build it without the
checkpointing functionality as that is not implemented in those architectures.
CONFIG_VZ_CHECKPOINT=n
How to apply and build:
-----------------------
In your kernel source directory do the following:
cp kernel-config-file-from-some-where .config
export PATCH_THE_KERNEL=YES
make-kpkg --rootcmd fakeroot \
--revision custom01 \
--added-patches openvz \
--append-to-version +openvz \
--initrd \
binary-arch
OBS! For the 2.6.16 kernel patch you need a kernel that do not contain
any Debian patches.
Download prebuild kernels for Debian:
-------------------------------------
You can also download precompiled kernel images from:
http://download.openvz.org/kernel/debian
See http://wiki.openvz.org/Download_mirrors for a list of mirrors.
-- Ola Lundqvist <opal@debian.org>, Sat, 3 Mar 2006 16:42:45 +0200
|