Subject: Re: 3.0 Question
To: None <hubert@feyrer.de>
From: Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
List: port-cobalt
Date: 04/06/2006 21:10:05
In article <Pine.LNX.4.61.0604041934560.21754@m24s24.vlinux.de>
hubert@feyrer.de wrote:

> miyu% grep LKM /usr/cvs/src-3/sys/arch/cobalt/conf/GENERIC
> #options        LKM             # loadable kernel modules
> 
> => b.

How about adding more options to GENERIC since we no longer
have kernel size limitation?

---
Index: GENERIC
===================================================================
RCS file: /cvsroot/src/sys/arch/cobalt/conf/GENERIC,v
retrieving revision 1.92
diff -u -r1.92 GENERIC
--- GENERIC	5 Feb 2006 05:01:49 -0000	1.92
+++ GENERIC	6 Apr 2006 11:53:44 -0000
@@ -38,8 +38,8 @@
 options 	SYSVSHM		# System V shared memory
 #options 	SHMMAXPGS=1024	# 1024 pages is the default
 options 	P1003_1B_SEMAPHORE # p1003.1b semaphore support
-#options 	LKM		# loadable kernel modules
-#options 	NTP		# network time protocol
+options 	LKM		# loadable kernel modules
+options 	NTP		# network time protocol
 options 	USERCONF	# userconf(4) support
 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
 options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
@@ -77,20 +77,20 @@
 file-system	FFS		# Berkeley Fast Filesystem
 file-system 	EXT2FS		# second extended file system (linux)
 file-system	NFS		# Sun NFS-compatible filesystem client
-#file-system	KERNFS		# kernel data-structure filesystem
-#file-system	NULLFS		# NULL layered filesystem
+file-system	KERNFS		# kernel data-structure filesystem
+file-system	NULLFS		# NULL layered filesystem
 #file-system 	OVERLAY		# overlay file system
 file-system	MFS		# memory-based filesystem
 file-system	FDESC		# user file descriptor filesystem
 #file-system	UMAPFS		# uid/gid remapping filesystem
-#file-system	LFS		# Log-based filesystem (still experimental)
+file-system	LFS		# Log-based filesystem (still experimental)
 #file-system	PORTAL		# portal filesystem (still experimental)
-#file-system	PROCFS		# /proc
-#file-system	CD9660		# ISO 9660 + Rock Ridge file system
-#file-system	UNION		# union file system
-#file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
+file-system	PROCFS		# /proc
+file-system	CD9660		# ISO 9660 + Rock Ridge file system
+file-system	UNION		# union file system
+file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
 #file-system 	CODA		# Coda File System; also needs vcoda (below)
-#file-system	PTYFS		# /dev/pts/N support
+file-system	PTYFS		# /dev/pts/N support
 #file-system	TMPFS		# experimental - Efficient memory file-system
 #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
 
@@ -100,14 +100,14 @@
 #options 	FFS_EI		# FFS Endian Independant support
 options 	SOFTDEP		# FFS soft updates support.
 #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
-options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
+#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
 				# immutable) behave as system flags.
 
 # Networking options
 #options 	GATEWAY		# IP packet forwarding
 options 	INET		# Internet protocols
-#options 	INET6		# IPV6
+options 	INET6		# IPV6
 #options 	IPSEC		# IP security
 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
@@ -123,8 +123,8 @@
 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
 #options 	PPP_DEFLATE	# Deflate compression support for PPP
 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
-#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
-#options 	IPFILTER_LOG	# ipmon(8) log support
+options 	PFIL_HOOKS	# pfil(9) packet filter hooks
+options 	IPFILTER_LOG	# ipmon(8) log support
 #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
 
@@ -206,7 +206,7 @@
 # SCSI devices
 sd*		at scsibus? target ? lun ?	# SCSI disk drives
 st*		at scsibus? target ? lun ?	# SCSI tape drives
-#cd*		at scsibus? target ? lun ?	# SCSI CD-ROM drives
+cd*		at scsibus? target ? lun ?	# SCSI CD-ROM drives
 #ch*		at scsibus? target ? lun ?	# SCSI autochangers
 #ss*		at scsibus? target ? lun ?	# SCSI scanners
 #uk*		at scsibus? target ? lun ?	# SCSI unknown
@@ -319,12 +319,12 @@
 # options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
 pseudo-device	fss		4		# file system snapshot device
 #pseudo-device	md		1		# memory disk device (ramdisk)
-#pseudo-device	vnd				# disk-like interface to files
+pseudo-device	vnd				# disk-like interface to files
 #options 	VND_COMPRESSION		# compressed vnd(4)
 
 # Network pseudo-devices
 pseudo-device	bpfilter			# Berkeley packet filter
-#pseudo-device	ipfilter			# IP filter (firewall) and NAT
+pseudo-device	ipfilter			# IP filter (firewall) and NAT
 pseudo-device	loop				# network loopback
 #pseudo-device	ppp				# Point-to-Point Protocol
 #pseudo-device	pppoe				# PPP over Ethernet (RFC 2516)

---
Izumi Tsutsui