On Sat, 12 Feb 2000, Doug Russell wrote:
> On Sat, 12 Feb 2000, Doug Rabson wrote:
>
> > Could you send a verbose dmesg (boot -v). I think we need to add a quirk
> > for the NetFinity.
>
> Unfortunately I'm currently remote, and I don't yet have it set up for a
> serial console. I do have a verbose boot from before the change in
> messages, if that is sufficient. If not, would you like one from 1.5[45]?
This should be fine, thanks. Could you try this patch for me - I think its
just caused by an uninitialised variable:
Index: pcibus.c
===================================================================
RCS file: /home/ncvs/src/sys/i386/isa/pcibus.c,v
retrieving revision 1.55
diff -u -r1.55 pcibus.c
--- pcibus.c 2000/02/09 20:05:30 1.55
+++ pcibus.c 2000/02/12 13:56:25
@@ -443,6 +443,7 @@
probe.hose = 0;
probe.bus = 0;
for (probe.slot = 0; probe.slot <= PCI_SLOTMAX; probe.slot++) {
+ probe.func = 0;
hdrtype = pci_cfgread(&probe, PCIR_HEADERTYPE, 1);
if (hdrtype & PCIM_MFDEV)
pcifunchigh = 7;
--
Doug Rabson Mail: [EMAIL PROTECTED]
Nonlinear Systems Ltd. Phone: +44 181 442 9037
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message