Subject: Re: New Snapshot Impressions
To: Kent Vander Velden <graphix@iastate.edu>
From: Erik Bertelsen <erik@sockdev.uni-c.dk>
List: port-pmax
Date: 04/16/1997 17:15:35
On Mon, 31 Mar 1997, Kent Vander Velden wrote:
.. While building the kernel for the 2100 dc_ioasic_consinit() was unresolved.
.. The requirement for this function was traced to the following lines in
.. sys/arch/pmax/pmax/cpu_cons.c:
.. case DS_3MAX:
.. #if NDC > 0
.. cd.cn_dev = makedev(DCDEV, DCPRINTER_PORT);
.. dc_ioasic_consinit(cd.cn_dev);
.. return;
.. #endif /* NDC */
I have had this problem on the DS3100 "for ages", and today, I finally
got fed up having to edit the Makefile after each config.
I took a look at files.pmax, and although I'm absolutely no expert on
the files used by config(8), I made the change below, which seems
to solve the problem for the 3100:
Index: files.pmax
===================================================================
RCS file: /sw/cvs-base/src/sys/arch/pmax/conf/files.pmax,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 files.pmax
47c47
< file arch/pmax/tc/asic.c ioasic
---
> file arch/pmax/tc/asic.c ( ioasic | dc )
109c109
< file arch/pmax/dev/dc_ioasic.c dc_ioasic
---
> file arch/pmax/dev/dc_ioasic.c ( dc_ioasic | dc )
- Regards
Erik Bertelsen.