HARDWARE Asus A6R
From Gentoo Linux Wiki
Please format this article according to the guidelines and Wikification suggestions, then remove this notice {{Wikify}} from the article
| Laptops • TV Tuner Cards • Wireless • Servers • Storage • Other Hardware • Motherboards • Related |
Contents |
[edit] lspci dump
00:00.0 Host bridge: ATI Technologies Inc Unknown device 5a31 (rev 01) 00:01.0 PCI bridge: ATI Technologies Inc RS480 PCI Bridge 00:13.0 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80) 00:13.1 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80) 00:13.2 USB Controller: ATI Technologies Inc IXP SB400 USB2 Host Controller (rev 80) 00:14.0 SMBus: ATI Technologies Inc IXP SB400 SMBus Controller (rev 82) 00:14.1 IDE interface: ATI Technologies Inc Standard Dual Channel PCI IDE Controller ATI (rev 80) 00:14.2 Audio device: ATI Technologies Inc SB450 HDA Audio (rev 01) 00:14.3 ISA bridge: ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) 00:14.4 PCI bridge: ATI Technologies Inc IXP SB400 PCI-PCI Bridge (rev 80) 01:05.0 VGA compatible controller: ATI Technologies Inc RC410 [Radeon Xpress 200M] 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10) 02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3) 02:01.1 Class 0805: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17) 02:01.2 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 08) 02:03.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)
[edit] ATI Radeon Xpress 200M
Working with properitary drivers (ati-drivers) and radeon. 3d support not jet tested
[edit] Broadcom Corporation BCM4318
Working with generic kernel and unencrypted connections (ndis wrap should solve the problem, not jet tested).
- HARDWARE Gateway 6020#Wireless .28Broadcom BCM4318.29
- http://www.gentooforum.de/artikel/9257/HowTo-Broadcom-Corporation-BCM4318-AirForce-One-54.html
- http://209.85.129.104/search?q=cache:_r2ZnRTAQIoJ:wiki.learnlisten.de/index.php/HOWTO_GentooOsxIbook+gentoo+bcm43xx_microcode5.fw&hl=de&ct=clnk&cd=1&gl=de&client=firefox-a
[edit] SB450 HDA Audio device
Tried it as described in the gentoo handbook/alsa-guide. Intel HDA code> sould be the right driver.
| File: /etc/modules.d/alsa |
alias /dev/mixer snd-mixer-oss alias /dev/dsp snd-pcm-oss alias /dev/midi snd-seq-oss options snd-hda-intel enable=1 index=0 single_cmd=1 model=3stack alias char-major-116 snd alias char-major-15 soundcore alias sound-service-0-0 snd-mixer-oss alias sound-service-0-1 snd-seq-oss alias sound-service-0-3 snd-pcm-oss alias sound-service-0-8 snd-seq-oss alias sound-service-0-12 snd-pcm-oss alias snd-card-0 snd-hda-intel alias sound-slot-0 snd-hda-intel |
Doesn't work very well, jet. It overmodulates all the time even when setting pcm code> to 8:8 in alsamixer so that the rest of the sound is much to silent. Can't play sound with mpg123 -a /dev/dsp music.mp3 code> saying Cound not open NAS server dev/dsp code>
[edit] Touchpad
Follow the Touchpad guide and everything will work fine (including tapping, drag&drop, horizontal/vertical scrolling). Be sure to select auto-dev code> as protocol otherwise realtime configuration won't work. This is the configuration i'm currently using:
| File: /etc/X11/xorg.conf |
Section "ServerLayout" Identifier "Standard Layout" Screen 0 "Standard Screen" 0 0 InputDevice "Standard Mouse" "CorePointer" InputDevice "TouchPad" "AlwaysCore" InputDevice "Standard Keyboard" "CoreKeyboard" EndSection ... Section "InputDevice" Driver "synaptics" Identifier "TouchPad" Option "Device" "/dev/input/mouse0" Option "Protocol" "auto-dev" Option "LeftEdge" "1700" Option "RightEdge" "5900" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "FastTaps" "1" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "HorizScrollDelta" "100" Option "MinSpeed" "0.09" Option "MaxSpeed" "0.18" Option "AccelFactor" "0.0015" Option "SHMConfig" "on" EndSection |
