LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-06-2005, 06:22 PM   #1
CrazyYoyimbo
LQ Newbie
 
Registered: Feb 2005
Posts: 20

Rep: Reputation: 0
Question USB,Gentoo,EPIA-M10000


I have recently installed Gentoo 2004.3r1 on a system:
Kernel: 2.4.25 with EPIA patch
Mobo: VIA EPIA-M10000 Nehemiah
HDD: 200GB Western Digital
RAM: 256MB

this is meant to be a media machine, so getting the USB ports to work is crucial to success of this.

#lsusb
cannot open /proc/bus/usb, No such file or directory (2)

#lspci
0000:00:00.0 Host bridge: VIA Technologies, Inc. VT8623 [Apollo CLE266]
0000:00:01.0 PCI bridge: VIA Technologies, Inc. VT8633 [Apollo Pro266 AGP]
0000:00:0d.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller (rev 80)
0000:00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 80)
0000:00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 80)
0000:00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 80)
0000:00:10.3 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 82)
0000:00:11.0 ISA bridge: VIA Technologies, Inc. VT8235 ISA Bridge
0000:00:11.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
0000:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 50)
0000:00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 74)
0000:01:00.0 VGA compatible controller: VIA Technologies, Inc. VT8623 [Apollo CLE266] integrated CastleRock graphics (rev 03)


i've compiled the ECHI and UHCI USB drivers into the kernel.

i've also tried recompiling the kernel with a combination of EHCI but not UCHI, UHCI but not ECHI, both, and i've even tried using OHCI.

i am at a loss here because lsmod does not return any loaded modules either.

any help with this matter is greatly appreciated,
CrazyYoyimbo

Last edited by CrazyYoyimbo; 02-06-2005 at 08:45 PM.
 
Old 02-06-2005, 08:15 PM   #2
comprookie2000
Gentoo Developer
 
Registered: Feb 2004
Location: Fort Lauderdale FL.
Distribution: Gentoo
Posts: 3,291
Blog Entries: 5

Rep: Reputation: 58
Use UCHI and plug something in and
Code:
dmesg | tail
also make sure you have coldplug and hotplug set for default runlevels
Code:
rc-update show
 
Old 02-06-2005, 08:26 PM   #3
CrazyYoyimbo
LQ Newbie
 
Registered: Feb 2005
Posts: 20

Original Poster
Rep: Reputation: 0
thank you for your reply; i have tried what you suggested, however, the problem still persists.

here is the output you requested:

# rc-update show
alsasound | boot
bootmisc | boot
checkfs | boot
checkroot | boot
clock | boot
coldplug | default
consolefont | boot
crypto-loop |
domainname |
gpm |
hdparm |
hostname | boot
hotplug | default
keymaps | boot
lircd |
lircmd |
local | default nonetwork
localmount | boot
modules | boot
net.eth0 | default
net.lo | boot
netmount | default
nscd |
numlock | default
rmnologin | boot
rsyncd |
serial | boot
sshd | default
urandom | boot

# dmesg | tail
Freeing unused kernel memory: 296k freed
Adding Swap: 1004020k swap-space (priority -1)
reiserfs: found format "3.6" with standard journal
reiserfs: checking transaction log (device ide0(3,6)) ...
for (ide0(3,6))
ide0(3,6):Using r5 hash to sort names
eth0: Setting full-duplex based on MII #1 link partner capability of 41e1.
usb.c: USB disconnect on device 00:10.0-2 address 2
hub.c: new USB device 00:10.0-2, assigned address 3
usb.c: USB device 3 (vend/prod 0xbc7/0x4) is not claimed by any active driver.

#lsusb
cannot open /proc/bus/usb, No such file or directory (2)

#lsmod
Module Size Used by Not tainted
#

Thank You,
CrazyYoyimbo
 
Old 02-06-2005, 08:38 PM   #4
comprookie2000
Gentoo Developer
 
Registered: Feb 2004
Location: Fort Lauderdale FL.
Distribution: Gentoo
Posts: 3,291
Blog Entries: 5

Rep: Reputation: 58
Hope this helps;

# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG is not set
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set

#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
 
Old 02-06-2005, 08:43 PM   #5
CrazyYoyimbo
LQ Newbie
 
Registered: Feb 2005
Posts: 20

Original Poster
Rep: Reputation: 0
is that supposed to be the kernel config, or a config file?

i also forgot to mention that i'm using kernel 2.4.25 with the epia patch.

thank you,
CrazyYoyimbo

Last edited by CrazyYoyimbo; 02-06-2005 at 08:44 PM.
 
Old 02-06-2005, 08:54 PM   #6
comprookie2000
Gentoo Developer
 
Registered: Feb 2004
Location: Fort Lauderdale FL.
Distribution: Gentoo
Posts: 3,291
Blog Entries: 5

Rep: Reputation: 58
Yes that is the .config for a 2.6.10 kernel,may not help you,may want to try a new kernel just save your old one just incase.
 
Old 02-06-2005, 11:03 PM   #7
CrazyYoyimbo
LQ Newbie
 
Registered: Feb 2005
Posts: 20

Original Poster
Rep: Reputation: 0
thank you, switching to the new 2.6 epia kernel got the USB up and running

Thanks again
CrazyYoyimbo
 
Old 02-07-2005, 04:28 AM   #8
comprookie2000
Gentoo Developer
 
Registered: Feb 2004
Location: Fort Lauderdale FL.
Distribution: Gentoo
Posts: 3,291
Blog Entries: 5

Rep: Reputation: 58
Great,good job.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
USB on Gentoo: usb 1-1: control timeout on ep0out Sharph Linux - General 2 04-19-2005 06:56 AM
Is a VIA Epia enough for linux system ?!? c0in Linux - Hardware 7 03-06-2005 03:32 PM
EPIA 5000 motherboard help kevincadogan Linux - Newbie 2 02-13-2005 11:49 AM
VIA M10000 Motherboard troutwaxer Slackware - Installation 2 11-07-2004 02:43 PM
powerdown problem on VIA EPIA V kvasarnomad Linux - Software 4 07-18-2004 02:35 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 01:08 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration