Howto:DragonFlyBSD custom release kernel
From Wiki
| ||
|---|---|---|
|
L2TP/IPSEC Linux-iPhone • Gentoo LVM LUKS • User level Firewalling (PF, iptables) • build a custom DragonFlyBSD-RELEASEĀ kernel • Virtual Networking in FreeBSD Jail (bridge + nat) • Roadwarrior IPSec on FreeBSD • Bind9 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


