Date: Wed, 24 May 2000 11:18:38 -0400 (EDT) From: Andrew Gallatin <gallatin@cs.duke.edu> To: John Baldwin <jhb@freebsd.org> Cc: freebsd-alpha@freebsd.org Subject: Re: Test it please.. Message-ID: <14635.61347.319740.783675@grasshopper.cs.duke.edu> In-Reply-To: <20000524145749.TBUL22611.mail.rdc1.va.home.com@john.baldwin.cx> References: <20000524145749.TBUL22611.mail.rdc1.va.home.com@john.baldwin.cx>
next in thread | previous in thread | raw e-mail | index | archive | help
John Baldwin writes: > Hey gang, > > I'd like to MFC the support for the USB controller on some of > the newer Alpha workstations that I committed to -current a > while back. The patch can be found at > http://www.FreeBSD.org/~jhb/patches/alpha.usb.patch. > > Also, I'd like to turn on USB support in GENERIC on the Alpha > just as I have with i386 so as to support USB hardware during > install and on a typical system w/o requiring a custom kernel, > so if people could try out enabling USB in their kernels I'd > appreciate it. I should have an actual Alpha to do testing on > my own in another week or two. Thanks. I've only seen one problem: ../../dev/usb/ukbd.c:45: opt_ukbd.h: No such file or directory You'll need to add opt_ukbd.h to options.alpha to prevent this: Index: options.alpha =================================================================== RCS file: /home/ncvs/src/sys/conf/options.alpha,v retrieving revision 1.19 diff -u -r1.19 options.alpha --- options.alpha 1999/12/15 10:04:05 1.19 +++ options.alpha 2000/05/24 15:14:24 @@ -55,6 +55,7 @@ # Atkbd options ATKBD_DFLT_KEYMAP opt_atkbd.h +UKBD_DFLT_KEYMAP opt_ukbd.h # Kbd options KBD_DISABLE_KEYMAP_LOAD opt_kbd.h After doing that & ucommenting the usb stuff in GENERIC, I see this when booting an xp1000: ohci0: <OHCI (generic) USB controller> mem 0x1094000-0x1094fff irq 234 at device 7.3 on pci0 ohci0: interrupting at ISA irq 10 usb0: OHCI version 1.0, legacy support usb0: <OHCI (generic) USB controller> on ohci0 usb0: USB revision 1.0 uhub0: (unknown) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered That looks good! I don't know a darned thing about USB. I may be able to borrow a USB CDROM drive. If you're willing to hold my hand & give me step-by-step instructions on how to get it working, I'd be happy to do some testing for you. Cheers, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?14635.61347.319740.783675>