Home | History | Annotate | Line # | Download | only in conf
GENERIC.SKI revision 1.19
      1  1.19  simonb # $NetBSD: GENERIC.SKI,v 1.19 2022/07/23 11:49:58 simonb Exp $
      2   1.1  cherry #
      3   1.1  cherry # GENERIC machine description file
      4   1.1  cherry #
      5   1.1  cherry # This machine description file is used to generate the default NetBSD
      6   1.1  cherry # kernel.  The generic kernel does not include all options, subsystems
      7   1.1  cherry # and device drivers, but should be useful for most applications.
      8   1.1  cherry #
      9   1.1  cherry # The machine description file can be customised for your specific
     10   1.1  cherry # machine to reduce the kernel size and improve its performance.
     11   1.1  cherry #
     12   1.1  cherry # For further information on compiling NetBSD kernels, see the config(8)
     13   1.1  cherry # man page.
     14   1.1  cherry #
     15   1.1  cherry # For further information on hardware support for this architecture, see
     16   1.1  cherry # the intro(4) man page.  For further information about kernel options
     17   1.1  cherry # for this architecture, see the options(4) man page.  For an explanation
     18   1.1  cherry # of each device driver in this file see the section 4 man page for the
     19   1.1  cherry # device.
     20   1.1  cherry 
     21   1.1  cherry include 	"arch/ia64/conf/std.ia64"
     22   1.1  cherry 
     23   1.1  cherry options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24   1.1  cherry 
     25  1.19  simonb #ident 		"GENERIC-$Revision: 1.19 $"
     26   1.1  cherry 
     27   1.1  cherry maxusers	32		# estimated number of users
     28   1.1  cherry 
     29   1.1  cherry # CPU support.  At least one is REQUIRED.
     30   1.1  cherry #options	IA64_CPU
     31   1.1  cherry 
     32   1.1  cherry # CPU-related options.
     33   1.1  cherry 
     34   1.1  cherry # Standard system options
     35  1.13   scole options 	INSECURE	# disable kernel security levels - X needs this
     36  1.13   scole options 	NTP		# NTP phase/frequency locked loop
     37  1.13   scole 
     38  1.13   scole options 	KTRACE		# system call tracing via ktrace(1)
     39  1.13   scole 
     40  1.13   scole # Note: SysV IPC parameters can be changed dynamically; see sysctl(8).
     41  1.13   scole options 	SYSVMSG		# System V-like message queues
     42  1.13   scole options 	SYSVSEM		# System V-like semaphores
     43  1.13   scole options 	SYSVSHM		# System V-like memory sharing
     44  1.13   scole 
     45  1.13   scole #options 	MODULAR		# new style module(7) framework
     46  1.13   scole #options 	MODULAR_DEFAULT_AUTOLOAD
     47   1.1  cherry 
     48   1.1  cherry options 	USERCONF	# userconf(4) support
     49   1.1  cherry 
     50   1.1  cherry # Diagnostic/debugging support options
     51   1.1  cherry options 	DIAGNOSTIC	# expensive kernel consistency checks
     52   1.1  cherry options 	DEBUG		# expensive debugging checks/support
     53  1.13   scole #options 	LOCKDEBUG	# expensive locking checks/support
     54   1.1  cherry options 	DDB		# in-kernel debugger
     55  1.13   scole options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
     56   1.1  cherry #options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     57   1.1  cherry #options 	KGDB		# remote debugger
     58   1.1  cherry #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     59   1.1  cherry makeoptions	DEBUG="-g"	# compile full symbol table
     60   1.1  cherry 
     61  1.13   scole #options UVMHIST
     62  1.13   scole #options UVMHIST_PRINT
     63  1.13   scole 
     64   1.1  cherry # File systems
     65   1.2  cherry file-system	FFS		# UFS
     66  1.13   scole file-system	NFS		# Network File System client
     67  1.13   scole file-system 	MFS		# memory file system
     68  1.13   scole file-system	LFS		# log-structured file system
     69  1.13   scole #file-system	NTFS		# Windows/NT file system (experimental)
     70  1.13   scole file-system	CD9660		# ISO 9660 + Rock Ridge file system
     71  1.13   scole #file-system	MSDOSFS		# MS-DOS file system
     72  1.13   scole #file-system	FDESC		# /dev/fd
     73  1.13   scole file-system	KERNFS		# /kern
     74  1.13   scole file-system	NULLFS		# loopback file system
     75  1.13   scole #file-system	OVERLAY		# overlay file system
     76  1.13   scole #file-system	PROCFS		# /proc
     77  1.19  simonb file-system	TMPFS		# Efficient memory file-system
     78  1.19  simonb 
     79  1.19  simonb # File system options
     80  1.19  simonb options 	QUOTA		# legacy UFS quotas
     81  1.19  simonb options 	QUOTA2		# new, in-filesystem UFS quotas
     82  1.19  simonb #options 	FFS_EI		# FFS Endian Independent support
     83  1.19  simonb options 	WAPBL		# File system journaling support
     84  1.19  simonb options 	NFSSERVER	# Network File System server
     85  1.19  simonb #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     86  1.19  simonb #options 	UFS_DIRHASH	# UFS Large Directory Hashing
     87  1.19  simonb options 	UFS_EXTATTR	# Extended attribute support for UFS1
     88  1.19  simonb #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     89  1.19  simonb 				# immutable) behave as system flags.
     90  1.13   scole 
     91  1.13   scole #options 	GATEWAY		# packet forwarding
     92  1.13   scole options 	INET		# IP + ICMP + TCP + UDP
     93  1.13   scole #options 	INET6		# IPv6
     94  1.13   scole #options 	IPSEC		# IP security
     95   1.2  cherry 
     96  1.13   scole #options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
     97   1.1  cherry 
     98   1.1  cherry # Kernel root file system and dump configuration.
     99  1.13   scole config		netbsd	root on ? type ?
    100  1.13   scole #config		netbsd	root on md0a type ffs
    101   1.1  cherry #config		netbsd	root on sd0a type ffs
    102   1.1  cherry #config		netbsd	root on ? type nfs
    103   1.1  cherry 
    104   1.1  cherry #
    105   1.1  cherry # Device configuration
    106   1.1  cherry #
    107   1.1  cherry 
    108   1.1  cherry mainbus0 at root
    109   1.1  cherry 
    110   1.1  cherry cpu* at mainbus?
    111  1.13   scole 
    112  1.13   scole #options 	ACPI_SCANPCI	# find PCI roots using ACPI
    113  1.13   scole 
    114   1.9  martin acpi0 at mainbus?
    115   1.1  cherry 
    116   1.1  cherry 
    117   1.1  cherry # Pull in optional local configuration
    118   1.4    jmmv cinclude "arch/ia64/conf/GENERIC.local"
    119   1.1  cherry 
    120   1.1  cherry # Console Devices
    121   1.1  cherry #ssccons*	at mainbus0		# Ski console interface driver
    122   1.1  cherry #wsdisplay*	at ssccons0 console ?
    123   1.1  cherry #wskbd*		at ssccons0 console ?
    124   1.1  cherry 
    125  1.13   scole # Pseudo-Devices
    126  1.13   scole 
    127   1.3  cherry # Enable the hooks used for initializing the root memory-disk.
    128  1.13   scole pseudo-device	md			# memory disk device (ramdisk)
    129  1.13   scole #options 	MEMORY_DISK_DYNAMIC	# loaded via kernel module(7)
    130  1.13   scole ##options 	MEMORY_DISK_HOOKS	# enable root ramdisk
    131  1.13   scole ##options		MEMORY_DISK_IS_ROOT	# force md RAM disk to be the root device
    132   1.3  cherry #options    MEMORY_DISK_ROOT_SIZE=2880  # 1.44M, same as a floppy
    133  1.13   scole ##options     MEMORY_DISK_ROOT_SIZE=8192  # 4Meg
    134  1.13   scole ##options     MEMORY_DISK_SERVER=1        # make the ramdisk writeable
    135   1.3  cherry 
    136  1.13   scole #pseudo-device	vnd			# disk-like interface to files
    137  1.13   scole #options 	VND_COMPRESSION		# compressed vnd(4)
    138   1.1  cherry 
    139   1.1  cherry pseudo-device	ssccons			# Ski emulator console
    140   1.1  cherry #pseudo-device	wsmux			# mouse & keyboard multiplexor
    141   1.1  cherry #pseudo-device	wsfont
    142   1.1  cherry pseudo-device	ksyms			# /dev/ksyms
    143   1.2  cherry 
    144  1.13   scole # network pseudo-devices
    145  1.13   scole #pseudo-device	bpfilter		# Berkeley packet filter
    146  1.13   scole #pseudo-device	carp			# Common Address Redundancy Protocol
    147  1.13   scole pseudo-device	loop			# network loopback
    148  1.13   scole #pseudo-device	ifmpls			# MPLS pseudo-interface
    149  1.13   scole #pseudo-device	ppp			# Point-to-Point Protocol
    150  1.13   scole #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    151  1.13   scole #options 	PPPOE_SERVER		# Enable PPPoE server via link0
    152  1.13   scole #pseudo-device	sl			# Serial Line IP
    153  1.13   scole #pseudo-device	irframetty		# IrDA frame line discipline
    154  1.13   scole #pseudo-device	tap			# virtual Ethernet
    155  1.13   scole #pseudo-device	tun			# network tunneling over tty
    156  1.13   scole #pseudo-device	gre			# generic L3 over IP tunnel
    157  1.13   scole #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC 1933)
    158  1.13   scole #pseudo-device	faith			# IPv[46] TCP relay translation i/f
    159  1.13   scole #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    160  1.13   scole #pseudo-device	vlan			# IEEE 802.1q encapsulation
    161  1.13   scole #pseudo-device	bridge			# simple inter-network bridging
    162  1.18     roy #pseudo-device	vether			# Virtual Ethernet for bridge
    163  1.13   scole #pseudo-device	agr			# IEEE 802.3ad link aggregation
    164  1.13   scole #pseudo-device	npf			# NPF packet filter
    165  1.15    maxv #pseudo-device	l2tp			# L2TPv3 interface
    166  1.13   scole # srt is EXPERIMENTAL
    167  1.13   scole #pseudo-device	srt			# source-address-based routing
    168  1.13   scole 
    169  1.13   scole # miscellaneous pseudo-devices
    170  1.13   scole pseudo-device	pty			# pseudo-terminals
    171