From owner-p4-projects Wed Oct 23 11:25:19 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id BAE3A37B404; Wed, 23 Oct 2002 11:25:13 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 537CB37B401 for ; Wed, 23 Oct 2002 11:25:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0252C43E4A for ; Wed, 23 Oct 2002 11:25:13 -0700 (PDT) (envelope-from jhb@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id g9NIOXmV019677 for ; Wed, 23 Oct 2002 11:24:33 -0700 (PDT) (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id g9NIOWv8019674 for perforce@freebsd.org; Wed, 23 Oct 2002 11:24:32 -0700 (PDT) Date: Wed, 23 Oct 2002 11:24:32 -0700 (PDT) Message-Id: <200210231824.g9NIOWv8019674@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 19980 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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