mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Change to the new syscons devices.
This commit is contained in:
parent
b9068e0a34
commit
d0efc0c9cd
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42672
2 changed files with 9 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.2 1998/09/29 12:12:31 abial Exp $
|
||||
# $Id: Makefile,v 1.3 1998/10/15 21:39:58 abial Exp $
|
||||
#
|
||||
|
||||
SRC?=/usr/src
|
||||
|
@ -17,5 +17,5 @@ $(KERNFILE): PICOBSD
|
|||
(cd ${CONF}; \
|
||||
config ${CONFFILE}; \
|
||||
cd ${COMPILE}; \
|
||||
make depend && make)
|
||||
make depend all)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# $Id: PICOBSD,v 1.3 1998/10/25 15:16:58 abial Exp $
|
||||
# $Id: PICOBSD,v 1.4 1998/11/14 20:10:15 abial Exp $
|
||||
#
|
||||
machine "i386"
|
||||
cpu "I386_CPU"
|
||||
|
@ -49,7 +49,12 @@ options ATAPI_STATIC #Don't do it as an LKM
|
|||
device wcd0 #IDE CD-ROM
|
||||
|
||||
# syscons is the default console driver, resembling an SCO console
|
||||
device sc0 at isa? port IO_KBD conflicts tty irq 1
|
||||
|
||||
controller atkbdc0 at isa? port IO_KBD tty
|
||||
device atkbd0 at isa? tty irq 1
|
||||
device psm0 at isa? tty irq 12
|
||||
device vga0 at isa? port ? conflicts
|
||||
device sc0 at isa? tty
|
||||
|
||||
device npx0 at isa? port IO_NPX irq 13
|
||||
|
||||
|
@ -58,7 +63,6 @@ device sio1 at isa? port "IO_COM2" tty irq 3
|
|||
device sio2 at isa? disable port "IO_COM3" tty irq 5
|
||||
device sio3 at isa? disable port "IO_COM4" tty irq 9
|
||||
|
||||
device psm0 at isa? port IO_KBD conflicts tty irq 12
|
||||
|
||||
# Order is important here due to intrusive probes, do *not* alphabetize
|
||||
# this list of network interfaces until the probes have been fixed.
|
||||
|
|
Loading…
Reference in a new issue