View previous topic :: View next topic |
Author |
Message |
cube631 n00b
Joined: 03 Feb 2005 Posts: 2
|
Posted: Thu Feb 03, 2005 6:00 am Post subject: network and sound working on i915 |
|
|
I was finally able to get sound and network going on my i915 motherboard. This post might help others with similar problems. I did the following:
Upgraded to kernel linux-2.6.10-gentoo-r6.
donloaded sk98lin driver from http://www.syskonnect.de.
Created and installed patch in /usr/src/linux-2.6.10-gentoo-r6
Changed the following lines of code:
/usr/src/linux-2.6.10-gentoo-r6/drivers/net/sk98lin/skge.c:
line 678 replace Code: | pci_restore_state(pdev, pAC->PciState); | with Code: | pci_restore_state(pdev); |
line 758 replace Code: | pci_save_state(pdev, pAC->PciState); | with Code: | pci_save_state(pdev); |
/usr/src/linux-2.6.10-gentoo-r6/drivers/net/sk98lin/skge.c:
line 1519 replaced Code: | pci_dma_sync_single( | .. with Code: | pci_dma_sync_single_for_cpu( | ..
line 1542 replaced Code: | pci_dma_sync_single( | .. with Code: | pci_dma_sync_single_for_cpu( | ..
After this make kernel and install modules.
emerge'ed media-sound/alsa-driver-1.0.8_rc1.
Load snd-azx module:
Unmute PCM channel: Code: | amixer set PCM 100 unmute |
That's it! |
|
Back to top |
|
|
skdubey n00b
Joined: 05 Apr 2004 Posts: 2 Location: kanpur,India
|
Posted: Sun Feb 06, 2005 9:48 pm Post subject: |
|
|
hi,
I am newbie in linux and i have i915 motherboard. I am not getting sound. I read your message but could not understand the following-
Created and installed patch in /usr/src/linux-2.6.10-gentoo-r6
i dont know how to create the patch. there seems to be lot of driver on the site which driver to download. please help.
thanks
-sandeep |
|
Back to top |
|
|
cube631 n00b
Joined: 03 Feb 2005 Posts: 2
|
Posted: Wed Feb 09, 2005 11:22 pm Post subject: |
|
|
I downloaded the Gigabit adapters SK-98xx drivers for linux 2.4 and 2.6 kernels. The install script for these drivers will give you an option to patch the kernel source.
Which kernel version are you currently using? |
|
Back to top |
|
|
|