-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Marvin, The reasons the files are empty is because the files in the /proc filesystem are not "actual", but are dynamically generated by the kernel when you try to access them, for example with cat. A way to have the expected result would be to use the attached Bash script which recursively cat's the files and writes the output to a new file. The script is called with $ ./asound.sh myName and will creade an archve called myName.tgz in the user's home dir, with the contents of /proc/asound in it (though I still have to find out how to ditch the unnecessary prefix from the files :p). Tom, The Conexant hsfmodem driver is available in Gentoo's portage tree. Make sure the /usr/src/linux point to the right kernel version and do : # emerge hsfmodem Firas Marvin Stodolsky wrote: > RE: > I can't really see anything that says "modem" > Correct for cards in the family > High Definition Audio Controller (HDA) > which can host a modem in Subsystems like the 103c:30bb > > Your /proc/asound has the right files structure, > but all the files are empty. This is sometimes a copy problem, though > I don't understand it. You audio appear to have life because > > Modem interrupt assignment and sharing: > 21: 247 0 IO-APIC-fasteoi HDA Intel > > But from failure of other diagnostics and slmodemd, I suspect your's > is a Conenant soft modem. Run the modem diagnostics under Microsoft > to check. > > For Gentoo, you will have to compile your own drivers. > Get help from the Gentoo List/info on compiling setup thereunder, if > necessary. Read the Conexant.txt. An appropriate tarball will follow. > Test and report back presently. > > MarvS > > > On 8/20/07, Tom <throw_away_2002@xxxxxxxxx> wrote: >> --- Marvin Stodolsky <marvin.stodolsky@xxxxxxxxx> wrote: >> >>> Do: >>> # cp -a /proc/asound tom >>> # tar cfz tom.tgz tom/ >>> and send me and Firas Kraiem <fkraiem@xxxxxxx> >>> the tom.tgz >> Done (attached). Thanks. >> >> This seems extra confusing to me (FAR from an expert), because >> I can't really see anything that says "modem" in the output. :) >> >> # lspci >> 00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS/940GML and >> 945GT Express Memory Controller Hub (rev 03) >> 00:01.0 PCI bridge: Intel Corporation Mobile 945GM/PM/GMS/940GML and >> 945GT Express PCI Express Root Port (rev 03) >> 00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High >> Definition Audio Controller (rev 02) >> 00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express >> Port 1 (rev 02) >> 00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express >> Port 2 (rev 02) >> 00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express >> Port 3 (rev 02) >> 00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI >> #1 (rev 02) >> 00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI >> #2 (rev 02) >> 00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI >> #3 (rev 02) >> 00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI >> #4 (rev 02) >> 00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 >> EHCI Controller (rev 02) >> 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2) >> 00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface >> Bridge (rev 02) >> 00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE >> Controller (rev 02) >> 00:1f.2 SATA controller: Intel Corporation 82801GBM/GHM (ICH7 Family) >> Serial ATA Storage Controller AHCI (rev 02) >> 00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller >> (rev 02) >> 01:00.0 VGA compatible controller: nVidia Corporation G70 [GeForce Go >> 7600] (rev a1) >> 02:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG >> Network Connection (rev 02) >> 05:00.0 Ethernet controller: Intel Corporation 82573L Gigabit Ethernet >> Controller >> 07:05.0 FireWire (IEEE 1394): Ricoh Co Ltd Unknown device 0832 >> 07:05.1 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 >> SD/SDIO/MMC/MS/MSPro Host Adapter (rev 19) >> 07:05.2 System peripheral: Ricoh Co Ltd Unknown device 0843 (rev 01) >> 07:05.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host >> Adapter (rev 0a) >> 07:05.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev >> 05) >> >> If it helps, the machine is a HP dv9023us (one of the Intel versions >> of the dv9000 series). >> >> >> >> ____________________________________________________________________________________ >> Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for today's economy) at Yahoo! Games. >> http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow >> > > - -- () ascii ribbon campaign - against html e-mail /\ www.asciiribbon.org - against proprietary attachments -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGylh0AHjp1iy8SzsRApqPAKCSbphmLzGw9ImURe+fhUFnf6vA5QCgrO5f NQHhwo1HMkgAXwG6BszqEBA= =lHvI -----END PGP SIGNATURE-----
#!/bin/bash cd mkdir -p temp/proc/asound function recurse() { for j in $1; do if [ -d $j ]; then mkdir ./temp/$j recurse "$j/*" else cat $j > ./temp/$j fi done } recurse /proc/asound/*; tar czf $1.tgz ./temp/proc/asound/