2.6.3 Kernel on IBM T23
Well, this is first pass, I’ll record it anyway.
APM doesn’t work – suspend does strange things.
alsasound in the kernel works well – used mm-sources, and everything went smoothly. I don’t remember any major issues.
Notes on APM with 2.6 kernel:
[ltp] T23 suspend – 2.6.0 final
[ltp] T23 suspend – 2.6.0 final




Comments
erin wrote:
Got it to work.
Only a few kernel mods (mostly making things modules, also turned on a few things I missed the first time around.. )
config-2.6.3-rc1-mm1-apm
Also added the following as a script in /etc/apm/event.d/pcmcia:
#!/bin/sh
case ”$1” in
/etc/init.d/pcmcia start ;;resume)
suspend|standby) /etc/init.d/pcmcia stop ;;
esac
That makes sure that any pcmcia cards that are there get ejected before suspend, and then reloaded on resume. Without that, the laptop wouldn’t properly suspend even without any pcmcia cards in use.