Re: usb 2.0 dell inspirion 8500
> "Bernd" == Bernd Walter <[EMAIL PROTECTED]> writes: Bernd> On Fri, Nov 21, 2003 at 03:10:10PM -0600, [EMAIL PROTECTED] Bernd> wrote: >> Should device ehci be a default in GENERIC, then? Bernd> It is intentionally not in GENERIC. For those of us not in the know on this, where does ehci stand? Ehci recognises my controller when I put it in the kernel, but it halts whenever I connect a USB 2.0 device. Dave. -- |David Gilbert, Independent Contractor. | Two things can only be | |Mail: [EMAIL PROTECTED]| equal if and only if they | |http://daveg.ca | are precisely opposite. | =GLO ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: usb 2.0 dell inspirion 8500
On Sat, Dec 20, 2003 at 03:17:18PM -0500, David Gilbert wrote: > > "Bernd" == Bernd Walter <[EMAIL PROTECTED]> writes: > > Bernd> On Fri, Nov 21, 2003 at 03:10:10PM -0600, [EMAIL PROTECTED] > Bernd> wrote: > >> Should device ehci be a default in GENERIC, then? > > Bernd> It is intentionally not in GENERIC. > > For those of us not in the know on this, where does ehci stand? Ehci > recognises my controller when I put it in the kernel, but it halts > whenever I connect a USB 2.0 device. There seems to be compatibility issues with some controllers, but I don't own any of them. Maybe the NetBSD team already did something about this. -- B.Walter BWCThttp://www.bwct.de [EMAIL PROTECTED] [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Force a dump without panicing?
Is it possible to force a kernel dump without panicing the system? I dropped into the debugger and did a "call doadump" however, when I tried to quit the debugger after this it results in a panic. -- Ryan "leadZERO" Sommers Gamer's Impact President [EMAIL PROTECTED] ICQ: 1019590 AIM/MSN: leadZERO -= http://www.gamersimpact.com =- ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Force a dump without panicing?
In the last episode (Dec 20), Ryan Sommers said: > Is it possible to force a kernel dump without panicing the system? > > I dropped into the debugger and did a "call doadump" however, when I > tried to quit the debugger after this it results in a panic. That should work; I called doadump that way lots of times debugging my crashdump compressor. There's a bug in dumpsys() that only lets you call it once, though. Add a "memset(&kdh, 0, sizeof(kdh))" just above the code that fills in kdh. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"