changes for msc device
This commit is contained in:
parent
1683d8a23e
commit
21575d71a5
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: conf.c,v 1.31 1995/08/17 17:40:45 thorpej Exp $ */
|
/* $NetBSD: conf.c,v 1.32 1995/09/30 01:52:37 chopps Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1991 The Regents of the University of California.
|
* Copyright (c) 1991 The Regents of the University of California.
|
||||||
|
@ -136,6 +136,8 @@ cdev_decl(grf);
|
||||||
cdev_decl(par);
|
cdev_decl(par);
|
||||||
#include "ser.h"
|
#include "ser.h"
|
||||||
cdev_decl(ser);
|
cdev_decl(ser);
|
||||||
|
#include "msc.h"
|
||||||
|
cdev_decl(msc);
|
||||||
#include "ite.h"
|
#include "ite.h"
|
||||||
cdev_decl(ite);
|
cdev_decl(ite);
|
||||||
#include "kbd.h"
|
#include "kbd.h"
|
||||||
|
@ -199,6 +201,7 @@ struct cdevsw cdevsw[] =
|
||||||
cdev_lkm_dummy(), /* 28 */
|
cdev_lkm_dummy(), /* 28 */
|
||||||
cdev_lkm_dummy(), /* 29 */
|
cdev_lkm_dummy(), /* 29 */
|
||||||
cdev_lkm_dummy(), /* 30 */
|
cdev_lkm_dummy(), /* 30 */
|
||||||
|
cdev_tty_init(NMSC,msc), /* 31: A2232 MSC Multiport serial */
|
||||||
};
|
};
|
||||||
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
|
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
|
||||||
|
|
||||||
|
@ -291,6 +294,7 @@ static int chrtoblktab[] = {
|
||||||
/* 28 */ NODEV,
|
/* 28 */ NODEV,
|
||||||
/* 29 */ NODEV,
|
/* 29 */ NODEV,
|
||||||
/* 30 */ NODEV,
|
/* 30 */ NODEV,
|
||||||
|
+ /* 31 */ NODEV,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: GENERIC,v 1.41 1995/08/20 15:13:20 chopps Exp $
|
# $NetBSD: GENERIC,v 1.42 1995/09/30 01:52:46 chopps Exp $
|
||||||
|
|
||||||
#
|
#
|
||||||
# GENERIC AMIGA
|
# GENERIC AMIGA
|
||||||
|
@ -149,6 +149,7 @@ ite2 at grf2 # terminal emulators for grf's
|
||||||
ite3 at grf3 # terminal emulators for grf's
|
ite3 at grf3 # terminal emulators for grf's
|
||||||
ite4 at grf4 # terminal emulators for grf's
|
ite4 at grf4 # terminal emulators for grf's
|
||||||
|
|
||||||
|
msc0 at zbus0 # A2232 MSC multiport serial.
|
||||||
mfc0 at zbus0 # MultiFaceCard I/O board
|
mfc0 at zbus0 # MultiFaceCard I/O board
|
||||||
mfcs0 at mfc0 unit 0 # MFC serial
|
mfcs0 at mfc0 unit 0 # MFC serial
|
||||||
mfcs1 at mfc0 unit 1 # MFC serial
|
mfcs1 at mfc0 unit 1 # MFC serial
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: files.amiga,v 1.27 1995/08/18 16:18:43 chopps Exp $
|
# $NetBSD: files.amiga,v 1.28 1995/09/30 01:52:50 chopps Exp $
|
||||||
|
|
||||||
# maxpartitions must be first item in files.${ARCH}.newconf
|
# maxpartitions must be first item in files.${ARCH}.newconf
|
||||||
maxpartitions 16 # NOTE THAT AMIGA IS SPECIAL!
|
maxpartitions 16 # NOTE THAT AMIGA IS SPECIAL!
|
||||||
|
@ -105,6 +105,10 @@ file arch/amiga/dev/if_es.c es needs-count
|
||||||
device ae at zbus: ifnet, ether
|
device ae at zbus: ifnet, ether
|
||||||
file arch/amiga/dev/if_ae.c ae needs-count
|
file arch/amiga/dev/if_ae.c ae needs-count
|
||||||
|
|
||||||
|
# A2232 msc serial ports
|
||||||
|
device msc at zbus: tty
|
||||||
|
file arch/amiga/dev/msc.c msc needs-count
|
||||||
|
|
||||||
# Alf Data MultiFaceCard 3
|
# Alf Data MultiFaceCard 3
|
||||||
#device mfch at zbus: tty
|
#device mfch at zbus: tty
|
||||||
#file arch/amiga/dev/mfch.c mfch needs-count
|
#file arch/amiga/dev/mfch.c mfch needs-count
|
||||||
|
|
Loading…
Reference in New Issue