Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Oct 2002 11:24:32 -0700 (PDT)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 19980 for review
Message-ID:  <200210231824.g9NIOWv8019674@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=19980

Change 19980 by jhb@jhb_laptop on 2002/10/23 11:24:10

	Catch up to SPARC64 GENERIC.

Affected files ...

.. //depot/projects/smpng/sys/sparc64/conf/SPARC64#8 edit

Differences ...

==== //depot/projects/smpng/sys/sparc64/conf/SPARC64#8 (text+ko) ====

@@ -1,69 +1,110 @@
+# baldwin.cx sparc64 SMP test machines
+
 machine		sparc64
 cpu		SUN4U
 ident		SPARC64
 maxusers	0
 
-makeoptions	DEBUG=-g
-makeoptions 	KERNEL=smpng
+#To statically compile in device wiring instead of /boot/device.hints
+#hints		"GENERIC.hints"		#Default places to look for devices.
+
+makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
+makeoptions 	NO_MODULES=yes
+makeoptions	KERNEL=smpng
+
+# Platforms supported
+#	At this time all platforms are supported, as-is.
 
-options		INET
-options		FFS
-options		SOFTUPDATES
-options		NFSCLIENT
-options		NFSSERVER
-options		CD9660
-options		PROCFS
-options		PSEUDOFS
-options		SYSVSHM
-options		SYSVMSG
-options		SYSVSEM
+options 	INET			#InterNETworking
+options 	INET6			#IPv6 communications protocols
+options 	FFS			#Berkeley Fast Filesystem
+options 	SOFTUPDATES		#Enable FFS soft updates support
+options 	UFS_ACL			#Support for access control lists
+options 	UFS_DIRHASH		#Improve performance on big directories
+options 	NFSCLIENT		#Network Filesystem Client
+options 	NFSSERVER		#Network Filesystem Server
+options 	NFS_ROOT		#NFS usable as root device
+#options 	MSDOSFS			#MSDOS Filesystem
+options 	CD9660			#ISO 9660 Filesystem
+options 	PROCFS			#Process filesystem (requires PSEUDOFS)
+options 	PSEUDOFS		#Pseudo-filesystem framework
+options 	COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
+options 	KTRACE			#ktrace(1) syscall trace support
+options 	SYSVSHM			#SYSV-style shared memory
+options 	SYSVMSG			#SYSV-style message queues
+options 	SYSVSEM			#SYSV-style semaphores
+#options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
 
-options		DDB
-options		BREAK_TO_DEBUGGER
-options		INVARIANTS
-options		INVARIANT_SUPPORT
-options 	WITNESS
+# Debugging for use in -current
+options 	DDB			#Enable the kernel debugger
+options 	INVARIANTS		#Enable calls of extra sanity checking
+options 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
+options 	WITNESS			#Enable checks to detect deadlocks and cycles
 
-options		SMP
+# To make an SMP kernel, the next line is needed
+options 	SMP			# Symmetric MultiProcessor Kernel
 
-device		apb
+# Standard busses
+device		apb			# Sun APB PCI-PCI bridge
 device		ebus
 device		pci
 
+# Floppy drives
+#device		fdc
+
+# ATA and ATAPI devices
 device		ata
-device		atadisk
-device		atapicd
+device		atadisk			# ATA disk drives
+device		atapicd			# ATAPI CDROM drives
+#device		atapifd			# ATAPI floppy drives
+#device		atapist			# ATAPI tape drives
+#	Do NOT enable ATA_STATIC_ID -- cmd646 controller will be !ata2!,
+#	and you will not mount an ATA /.
+#options 	ATA_STATIC_ID		#Static device numbering
+
+# SCSI Controllers
+device		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
 
-device		sym
+# SCSI peripherals
+device		scbus		# SCSI bus (required)
+device		da		# Direct Access (disks)
+device		cd		# CD
+device		pass		# Passthrough device (direct SCSI access)
+#device		ses		# SCSI Environmental Services (and SAF-TE)
 
-device		scbus
-device		da
-device		cd
+device		ofw_console	# OpenBoot firmware console device
 
-device		ofw_console
+# Builtin hardware
+device		genclock	# Generic clock interface
+device		eeprom		# eeprom (really an ebus driver for the MK48Txx)
+device		"mk48txx"	# Mostek MK48T02, MK48T08, MK48T59 clock
 
-device		genclock
-device		eeprom
-device		"mk48txx"
+# Serial (COM) ports
+#device		sio		# 8250, 16[45]50 based serial ports
+#device		sab		# Siemens SAB82532 based serial ports
 
-device		miibus
-device		hme
+# PCI Ethernet NICs that use the common MII bus controller code.
+device		miibus		# MII bus support
+device		hme		# Sun HME (Happy Meal Ethernet)
 
-device		random
-device		loop
-device		ether
-device		pty
-device		md
+# Pseudo devices - the number indicates how many units to allocated.
+device		random		# Entropy device
+device		loop		# Network loopback
+device		ether		# Ethernet support
+device		pty		# Pseudo-ttys (telnet etc)
+device		md		# Memory "disks"
+device		gif		# IPv6 and IPv4 tunneling
+device		faith		# IPv6-to-IPv4 relaying/(translation)
 
-device		bpf
+# The `bpf' device enables the Berkeley Packet Filter.
+# Be aware of the administrative consequences of enabling this!
+device		bpf		#Berkeley packet filter
 
-makeoptions	NO_WERROR=true
-makeoptions	NO_MODULES=true
+options 	KTR
+options 	KTR_COMPILE=0xffffffff
+options 	KTR_ENTRIES=8192
+options 	KTR_MASK=KTR_TRAP
 
-#options 	ATA_ENABLE_BUSMASTER
-options		DEBUGGER_ON_POWERFAIL
+options 	OFW_PCI_DEBUG
 
-options		KTR
-options		KTR_COMPILE=0xffffffff
-options		KTR_ENTRIES=8192
-options		KTR_MASK=(KTR_PROC|KTR_TRAP)
+options 	DEBUGGER_ON_POWERFAIL

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210231824.g9NIOWv8019674>