Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Jul 2006 23:03:34 GMT
From:      Bruce M Simpson <bms@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 100814 for review
Message-ID:  <200607062303.k66N3YlD058438@repoman.freebsd.org>

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

Change 100814 by bms@bms_montagne on 2006/07/06 23:03:19

	Cut kernel config down to the bare minimum for getting
	locore, pmap and uart up.

Affected files ...

.. //depot/projects/mips2/src/sys/mips/conf/QEMU#4 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/conf/QEMU#4 (text+ko) ====

@@ -15,55 +15,41 @@
 # If you are in doubt as to the purpose or necessity of a line, check first 
 # in NOTES.
 #
-# $FreeBSD: src/sys/arm/conf/SIMICS,v 1.8 2005/10/04 14:39:33 cognet Exp $
+# $FreeBSD$
 
 machine		mips
 ident		QEMU
 
-options KERNPHYSADDR=0xc0000000
-options KERNVIRTADDR=0xc0000000
-options PHYSADDR=0xc0000000
+# Don't build any modules yet.
+makeoptions	MODULES_OVERRIDE=""
+
+options		KERNPHYSADDR=0xc0000000
+options		KERNVIRTADDR=0xc0000000
+options		PHYSADDR=0xc0000000
 include		"../adm5120/std.adm5120"
-#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	CONF_CFLAGS=-mcpu=mips4k
-#options		DDB
+
+options		DDB
 options		KDB
 
-options 	SCHED_4BSD		#4BSD scheduler
-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 	MD_ROOT			#MD is a potential root device
-options		ROOTDEVNAME=\"ufs:md0\"
-#options 	NFSCLIENT		#Network Filesystem Client
-#options 	NFSSERVER		#Network Filesystem Server
-#options 	NFS_ROOT		#NFS usable as /, requires NFSCLIENT
-#options 	MSDOSFS			#MSDOS Filesystem
-#options 	CD9660			#ISO 9660 Filesystem
-#options 	PROCFS			#Process filesystem (requires PSEUDOFS)
-#options 	PSEUDOFS		#Pseudo-filesystem framework
-options 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI
-#options 	KTRACE			#ktrace(1) 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 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
+options		SCHED_4BSD		#4BSD scheduler
+options		INET			#InterNETworking
+options		NFSCLIENT		#Network Filesystem Client
+options		NFS_ROOT		#NFS usable as /, requires NFSCLIENT
+options		PSEUDOFS		#Pseudo-filesystem framework
+options		_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
+
+# Debugging for use in -current
+#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		WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
+
 device		genclock
 device		loop
 device		ether
-
-# Debugging for use in -current
-#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 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
-
-device		mem			# Memory and kernel memory devices
-device md
+device		mem
+device		md



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