Howto:DragonFlyBSD custom release kernel

From Wiki

Jump to: navigation, search
HOWTOS edit

L2TP/IPSEC Linux-iPhoneGentoo LVM LUKSUser level Firewalling (PF, iptables)build a custom DragonFlyBSD-RELEASEĀ kernelVirtual Networking in FreeBSD Jail (bridge + nat)Roadwarrior IPSec on FreeBSDBind9 DLZ with LDAPĀ driver

Contents

Get the source tree

cd /usr && make src-create

Switch to the release Tag

Exemple with the v2.6.3 TAG :

cd /usr/src
git checkout -b 263 v2.6.3

Build the world

cd /usr/src
make buildworld

Make your own Kernel config

cd /usr/src/sys/config/
cp GENERIC MYKERNEL

Edit /usr/src/sys/config/MYKERNEL (All available options are in the /usr/src/sys/config/LINT file)

Build and install the Kernel

cd /usr/src
make buildkernel KERNCONF=MYKERNEL
make installkernel KERNCONF=MYKERNEL

Install world

cd /usr/src
make installworld
Personal tools