svn commit: r301120 - head/sys/riscv/conf

Ruslan Bukin br at FreeBSD.org
Wed Jun 1 12:19:01 UTC 2016


Author: br
Date: Wed Jun  1 12:19:00 2016
New Revision: 301120
URL: https://svnweb.freebsd.org/changeset/base/301120

Log:
  * Enable KDTRACE options as we support DTrace now.
  * Add bpf device to kernel config.

Modified:
  head/sys/riscv/conf/GENERIC

Modified: head/sys/riscv/conf/GENERIC
==============================================================================
--- head/sys/riscv/conf/GENERIC	Wed Jun  1 12:04:04 2016	(r301119)
+++ head/sys/riscv/conf/GENERIC	Wed Jun  1 12:19:00 2016	(r301120)
@@ -64,8 +64,8 @@ options 	AUDIT			# Security event auditi
 options 	CAPABILITY_MODE		# Capsicum capability mode
 options 	CAPABILITIES		# Capsicum capabilities
 options 	MAC			# TrustedBSD MAC Framework
-# options 	KDTRACE_FRAME		# Ensure frames are compiled in
-# options 	KDTRACE_HOOKS		# Kernel DTrace hooks
+options 	KDTRACE_FRAME		# Ensure frames are compiled in
+options 	KDTRACE_HOOKS		# Kernel DTrace hooks
 # options 	VFP			# Floating-point support
 options 	RACCT			# Resource accounting framework
 options 	RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
@@ -102,4 +102,9 @@ device		md		# Memory "disks"
 device		gif		# IPv6 and IPv4 tunneling
 device		firmware	# firmware assist module
 
+# The `bpf' device enables the Berkeley Packet Filter.
+# Be aware of the administrative consequences of enabling this!
+# Note that 'bpf' is required for DHCP.
+device		bpf		# Berkeley packet filter
+
 options 	FDT


More information about the svn-src-head mailing list