Enable DDB and INET6, remove use of md(4).
This commit is contained in:
parent
f703bee5ef
commit
89df53fa8e
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.30 2007/10/17 19:55:00 garbled Exp $
|
||||
# $NetBSD: GENERIC,v 1.31 2008/05/15 23:36:47 rjs Exp $
|
||||
#
|
||||
#
|
||||
|
||||
|
@ -13,14 +13,9 @@ options CONSOLE="\"com\""
|
|||
options CONSOLE_SPEED=9600
|
||||
options CONSOLE_ADDR=0x3f8
|
||||
|
||||
# Enable the hooks used for initializing the ram-disk.
|
||||
options MEMORY_DISK_HOOKS
|
||||
options MEMORY_DISK_IS_ROOT # Force root on ram-disk
|
||||
options MEMORY_DISK_ROOT_SIZE=4096 # 2 Megabytes
|
||||
|
||||
maxusers 8
|
||||
|
||||
#options DDB
|
||||
options DDB
|
||||
|
||||
# Compatibility options
|
||||
#options COMPAT_13 # NetBSD 1.3,
|
||||
|
@ -31,14 +26,16 @@ options COMPAT_16 # NetBSD 1.6,
|
|||
options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
|
||||
|
||||
# File systems
|
||||
file-system FFS # UFS
|
||||
#file-system FFS # UFS
|
||||
#file-system EXT2FS # second extended file system (linux)
|
||||
file-system MFS # memory file system
|
||||
#file-system MFS # memory file system
|
||||
file-system NFS # Network File System client
|
||||
#file-system CD9660 # ISO 9660 + Rock Ridge file system
|
||||
#file-system MSDOSFS # MS-DOS file system
|
||||
file-system PTYFS # /dev/pts/N support
|
||||
#file-system TMPFS # Efficient memory file-system
|
||||
file-system KERNFS # kernel data-structure filesystem
|
||||
file-system PROCFS # /proc
|
||||
#file-system PTYFS # /dev/pts/N support
|
||||
file-system TMPFS # Efficient memory file-system
|
||||
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
|
||||
|
||||
# File system options
|
||||
|
@ -53,6 +50,7 @@ options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
|
|||
|
||||
# Networking options
|
||||
options INET # IP + ICMP + TCP + UDP
|
||||
options INET6
|
||||
|
||||
#options ALTQ # Manipulate network interfaces' output queues
|
||||
#options ALTQ_BLUE # Stochastic Fair Blue
|
||||
|
@ -85,7 +83,7 @@ options NFS_BOOT_DHCP
|
|||
#options PCDISPLAY_SOFTCURSOR
|
||||
|
||||
# Kernel root file system and dump configuration.
|
||||
config netbsd root on ? type ?
|
||||
config netbsd root on pcn0 type nfs
|
||||
|
||||
|
||||
#
|
||||
|
@ -266,7 +264,7 @@ audio* at audiobus?
|
|||
# Pseudo-Devices
|
||||
|
||||
# disk/mass storage pseudo-devices
|
||||
pseudo-device md 1 # memory disk device (ramdisk)
|
||||
#pseudo-device md 1 # memory disk device (ramdisk)
|
||||
|
||||
# network pseudo-devices
|
||||
pseudo-device bpfilter # network tap
|
||||
|
|
Loading…
Reference in New Issue