Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jan 1996 19:20:30 -0200 (EDT)
From:      Joaquim Humberto Marques Mota <joaquim@oberon.cnpq.br>
To:        Sergio Lenzi <lenzi@cwbone.bsi.com.br>
Cc:        questions@freebsd.org
Subject:   Re: Help with this New Kernel
Message-ID:  <Pine.BSF.3.91.960113191728.213A-100000@oberon.cnpq.br>
In-Reply-To: <Pine.BSF.3.91.960113150003.4051B-100000@cwbone>

next in thread | previous in thread | raw e-mail | index | archive | help
 Sergio

The problem was in npx0. I commented this line from my Kernel, and in 
reality this is a mandatory device.

Obrigado pelo Help

Joaquim

On Sat, 13 Jan 1996, Sergio Lenzi wrote:

> On Tue, 9 Jan 1996, Joaquim Humberto Marques Mota wrote:
> 
> > Hi
> > 
> > Could you help me with this new Kernel?! I try to make and something goes 
> 
> Hello Joaquim.
> 
> I use this kernel to make a "ttyserver" (a machine that looks like a 2511 
> cisco)  that is it servers 16 modems in a dumb serial port, attached to 
> an nfs to a P90 server. This machine has the same
> configuration you ned.
> 
> machine		"i386"
> cpu		"I386_CPU"
> cpu		"I486_CPU"
> cpu		"I586_CPU"
> ident		ttyserver
> maxusers	20
> 
> options		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
> options		"SCSI_DELAY=15"		#Be pessimistic about Joe SCSI device
> options		BOUNCE_BUFFERS		#include support for DMA bounce buffers
> options		UCONSOLE		#Allow users to grab the console
> options		GATEWAY
> options		COM_MULTIPORT
> options		SYSVSHM
> options		SYSVSEM
> options		SYSVMSG
> 
> config		kernel	root on wd0 
> 
> controller	isa0
> controller	fdc0	at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
> disk		fd0	at fdc0 drive 0
> disk		fd1	at fdc0 drive 1
> 
> 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	scbus0
> 
> device		sd0
> 
> device		st0
> 
> device		cd0	#Only need one of these, the code dynamically grows
> 
> 
> # 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.1
> #options		XSERVER			# include code for XFree86
> 
> device		npx0	at isa? port "IO_NPX" 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		sio2	at isa? port "IO_COM3" tty irq 5 vector siointr
> device		sio3	at isa? port "IO_COM4" tty irq 5 vector siointr
> device		sio4	at isa? port 0x130 tty flags 0x1305
> device		sio5	at isa? port 0x138 tty flags 0x1305
> device		sio6	at isa? port 0x140 tty flags 0x1305
> device		sio7	at isa? port 0x148 tty flags 0x1305
> device		sio8	at isa? port 0x150 tty flags 0x1305
> device		sio9	at isa? port 0x158 tty flags 0x1305
> device		sio10	at isa? port 0x160 tty flags 0x1305
> device		sio11	at isa? port 0x168 tty flags 0x1305
> device		sio12	at isa? port 0x1b0 tty flags 0x1305
> device		sio13	at isa? port 0x1b8 tty flags 0x1305
> device		sio14	at isa? port 0x1c0 tty flags 0x1305
> device		sio15	at isa? port 0x1c8 tty flags 0x1305
> device		sio16	at isa? port 0x1d0 tty flags 0x1305
> device		sio17	at isa? port 0x1d8 tty flags 0x1305
> device		sio18	at isa? port 0x1e0 tty flags 0x1305
> device		sio19	at isa? port 0x1e8 tty flags 0x1305 irq 9 vector siointr
> 
> device		psm0	at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr
> 
> device		lpt0	at isa? port? tty irq 7 vector lptintr
> 
> # Order is important here due to intrusive probes, do *not* alphabetize
> # this list of network interfaces until the probes have been fixed.
> # Right now it appears that the ie0 must be probed before ep0. See
> # revision 1.20 of this file.
> device ed0 at isa? port 0x300 net irq  15 iomem 0xd8000 vector edintr
> device ed1 at isa? port 0x280 net irq  12 iomem 0xd8000 vector edintr
> 
> pseudo-device	loop
> pseudo-device	ether
> pseudo-device	log
> pseudo-device	sl	16
> # ijppp uses tun instead of ppp device
> pseudo-device	ppp	16
> #pseudo-device	tun	16
> pseudo-device	pty	40
> pseudo-device	gzip		# Exec gzipped a.out's
> 
>  Sergio de Almeida Lenzi.
> 
> 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.91.960113191728.213A-100000>