From owner-freebsd-questions Mon Jul 28 16:10:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA10622 for questions-outgoing; Mon, 28 Jul 1997 16:10:51 -0700 (PDT) Received: from freebie.lemis.com (gregl1.lnk.telstra.net [139.130.136.133]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA10605; Mon, 28 Jul 1997 16:10:27 -0700 (PDT) Received: (grog@localhost) by freebie.lemis.com (8.8.6/8.6.12) id IAA02423; Tue, 29 Jul 1997 08:40:27 +0930 (CST) From: grog@FreeBSD.ORG Message-Id: <199707282310.IAA02423@freebie.lemis.com> Subject: Re: Kernel Problems In-Reply-To: from proline at "Jul 28, 97 12:25:53 pm" To: proline@vader.castles.com (proline) Date: Tue, 29 Jul 1997 08:40:27 +0930 (CST) Cc: questions@FreeBSD.ORG Organisation: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8250 Fax: +61-8-8388-8250 Mobile: +61-41-739-7062 WWW-Home-Page: http://www.lemis.com/~grog X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk proline writes: > Dear Sir or Madam, > I am having some trouble with my kernel I dont quite know what is wrong > with this but if you could take a look at it I would really appreciate it. Dear Paul I am having some trouble with this mail message I don't quite know what is wrong with this but if you could take a look at it I would really appreciate it. Come on, if you want a reasonable reply, you should tell us what problems you are having. Greg > > Paul Smith Content-Description: Problem Kernel > # > # GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks > # > # For more information read the handbook part System Administration -> > # Configuring the FreeBSD Kernel -> The Configuration File. > # The handbook is available in /usr/share/doc/handbook or online as > # latest version from the FreeBSD World Wide Web server > # > # > # An exhaustive list of options and more detailed explanations of the > # device lines is present in the ./LINT configuration file. If you are > # in doubt as to the purpose or necessity of a line, check first in LINT. > # > # $Id: GENERIC,v 1.77.2.8 1997/04/18 14:06:20 nate Exp $ > > machine "i386" > cpu "I586_CPU" > ident smith > maxusers 10 > > options GPL_MATH_EMULATE #Support for x87 emulation > options INET #InterNETworking > options FFS #Berkeley Fast Filesystem > options NFS #Network Filesystem > options MSDOSFS #MSDOS Filesystem > options "CD9660" #ISO 9660 Filesystem > options PROCFS #Process filesystem > options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] > options BOUNCE_BUFFERS #include support for DMA bounce buffers > options UCONSOLE #Allow users to grab the console > options FAILSAFE #Be conservative > options USERCONFIG #boot -c editor > options VISUAL_USERCONFIG #visual boot -c editor > > config kernel root on wd0 > > controller isa0 > controller eisa0 > controller pci0 > > controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr > disk fd0 at fdc0 drive 0 > > controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr > disk wd0 at wdc0 drive 0 > disk wd1 at wdc0 drive 1 > > controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr > disk wd2 at wdc1 drive 0 > disk wd3 at wdc1 drive 1 > > options ATAPI #Enable ATAPI support for IDE bus > options ATAPI_STATIC #Don't do it as an LKM > device wcd0 #IDE CD-ROM > > # A single entry for any of these controllers (ncr, ahb, ahc, amd) is > # sufficient for any number of installed devices. > device cd0 #Only need one of these, the code dynamically grows > > device mcd0 at isa? port 0x300 bio irq 10 vector mcdintr > > controller matcd0 at isa? port 0x230 bio > > # syscons is the default console driver, resembling an SCO console > device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr > # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver > device vt0 at isa? port "IO_KBD" tty irq 1 vector pcrint > options PCVT_FREEBSD=210 # pcvt running on FreeBSD >= 2.0.5 > options XSERVER # include code for XFree86 > options FAT_CURSOR # start with block cursor > > # Mandatory, don't remove > device npx0 at isa? port "IO_NPX" flags 0x1 irq 13 vector npxintr > > device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr > device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr > > device lpt0 at isa? port? tty irq 7 vector lptintr > > device ed0 at isa? port 0x340 net irq 10 iomem 0xd8000 vector edintr > > pseudo-device loop > pseudo-device ether > pseudo-device log > pseudo-device sl 1 > # ijppp uses tun instead of ppp device > #pseudo-device ppp 1 > pseudo-device vn 1 > pseudo-device tun 1 > pseudo-device pty 16 > pseudo-device gzip # Exec gzipped a.out's > pseudo-device snp 5 > # KTRACE enables the system-call tracing facility ktrace(2). > # This adds 4 KB bloat to your kernel, and slightly increases > # the costs of each syscall. > options KTRACE #kernel tracing > >