first, the bad:
- I have no display when resuming from suspend to ram...I probably need to force unload fglrx before suspending...
- the wireless didn't work out of the box. It can be downloaded and compiled from realtek's site, but there will also be kernel support for it in 2.6.38. I will probably compile the kernel after it gets out of rc status.
the good:
- fglrx from debian sid's non-free repository works, if you follow debian's wiki instructions on how to install it.
- Two finger scrolling works great.
- The realtek ethernet controller works great (i believe this requires firmware, so I installed it with the 'firmware-realtek' package)
- cpu frequency scaling works 'out of the box', just make sure to load powernow-k8 kernel module. I used powernowd, which, by default, increases the frequency when I need it. The e-350 has three pstates, 800, 1280, and 1600mhz.
- The card reader seemed to work, although xfce seemed to be confused about the card's format. I mounted it manually with no issues.
- The webcam works. I installed cheese, and the default resolution was 1280x720 with a really low framerate. I set it to 640x480, and it looks great.
- The audio card works. Its an ATI HDA. The hdmi audio out also shows up in the mixer, but I have yet to test this on my TV.
Thanks for the tip on using fglrx from sid, I have done the same and have gotten the display working correctly on my x120e.
ReplyDeleteIn regards to the touchpad, you state that two finger scrolling just works, wish I could say the same. Would you be so kind as to share your xorg.conf or any similar configurations relating to the touchpad?
Thanks.
Section "ServerLayout"
ReplyDeleteIdentifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
Section "Module"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:0:1:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
sorry it took so long to reply David :)
ReplyDeletean update, the wireless is supported in wheezy, which also includes Linux kernel 2.6.38. Unfortunately, the firmware for the wireless is missing when i last checked. I used the in-kernel driver for the card, but used realtek's firmware, by dumping it into /lib/firmware. the radeon hd 6300 seems to be working just fine with the version of fglrx in wheezy. s3 still seems broken.
Hi, you might want to check this out:
ReplyDeletehttp://www.dei.unipd.it/~pettarin/debian-wheezy-x120e.html
You can find the solution to the s3 issue.
Thanks Alberto, your guide is great. Looks like what I did for an install, with the exception of the ssd and lxde (i kept the 250G drive and used xfce). I was being too vague w/ s3, my fault...I have been unloading the module before suspend, the issue seems to be w/ fglrx, as it can take quite some to resume from s3. The backlight will take is sweet time to reinitialize...but will eventually resume.
ReplyDeleteHi,
ReplyDeleteso, are you unloading the r8169 module?
I was accusing fglrx for the very slow resume too, but it turned out r8169 was the actual guilty guy.
Indeed, I tried to unload both modules, then only r8169 and then only fglrx: the first two ways work as expected, the third has the anomalous behavior that you are experiencing, so I am willing to conclude that r8169 is the module responsible for the slow resume.
Are you using my /etc/pm/config.d/unload_modules configuration and still experiencing a slow resume? Mine has:
SLEEP_MODULE="uswusp"
SUSPEND_MODULES="r8169"
Hi,
ReplyDeleteI thought I was suspending in the proper manner, but wasn't. 1) I had both 8169 AND rtl8192ce in my SUSPEND_MODULES, which were separated by a comma, not a space. 2) I forgot to make my script in config.d executable. Doing both of these things resolved my slow suspend issues. Thanks Alberto.
I'm still experiencing a problem:
ReplyDelete-rwxr-xr-x 1 root root 56 Aug 5 00:06 /etc/pm/config.d/unload_modules
cat /etc/pm/config.d/unload_modules
SLEEP_MODULE="uswusp"
SUSPEND_MODULES="r8169 rtl8192ce"
Any advice would be appreciated!
Thanks.
I also tried with just:
ReplyDeleteSUSPEND_MODULES="r8169"
Hi Christopher,
ReplyDeleteI just took a look at my config...if have the following in my '/etc/pm/config.d/suspend':
SLEEP_MODULE="uswusp"
SUSPEND_MODULES="r8169 rtl8192ce"
hope this helps