From 003e1de5b4eeae5affaa7ce90c62ac8d900ccefa Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Fri, 31 Aug 2012 23:00:35 +0200 Subject: [PATCH] Add CARP support to the GENERIC kernels. http://leaf.dragonflybsd.org/mailarchive/users/2012-08/msg00086.html Suggested-by: Charles Rapenne Approved-by: sephe --- sys/config/GENERIC | 4 ++++ sys/config/X86_64_GENERIC | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/sys/config/GENERIC b/sys/config/GENERIC index e9717f9..7e92bca 100644 --- a/sys/config/GENERIC +++ b/sys/config/GENERIC @@ -315,6 +315,10 @@ pseudo-device md # Memory "disks" pseudo-device gif # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) +# CARP support +options CARP +pseudo-device carp + # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter diff --git a/sys/config/X86_64_GENERIC b/sys/config/X86_64_GENERIC index 5b52b62..69c804b 100644 --- a/sys/config/X86_64_GENERIC +++ b/sys/config/X86_64_GENERIC @@ -294,6 +294,10 @@ pseudo-device md # Memory "disks" pseudo-device gif # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) +# CARP support +options CARP +pseudo-device carp + # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter -- 1.7.7.2