I don't mean to hijack this thread but maybe some of this is relevant.
After looking around a bit I tried the following
modprobe apm
WARNING: /etc/modprobe.d/modprobe.conf line 8: ignoring bad line starting with 'alias'
FATAL: Error inserting apm (/lib/modules/2.6.22.14/kernel/arch/i386/kernel/apm.ko): No such device
apm.ko is in fact there but for some reason is not being loaded. Thats fine since this laptop is supposed to use ACPI. I would however like to stop it from trying to load and thereby not give the FAILED message when APM setup is attempted.
Perhaps acker should try this first to see if the apm module is present in the VL lite kernel.
Next I tried this.
modprobe acpi
WARNING: /etc/modprobe.d/modprobe.conf line 8: ignoring bad line starting with 'alias'
It appears that ACPI is being loaded but there is an error on line 8. Well that is where the alias for my networking interface is.
There is also a module specifically available for Toshiba laptops and it is supposed to be loaded. /proc/acpi has a toshiba directory in it. So I tried to load it.
modprobe toshiba_acpi
WARNING: /etc/modprobe.d/modprobe.conf line 8: ignoring bad line starting with 'alias'
FATAL: Module toshiba_acpi not found.
This I take it would indicate the toshiba_acpi module is not present in the kernel.
Now if I understand correctly the acpi module can be loaded at boot by adding
/sbin/modprobe acpi
to /etc/rc.d/rc.local
I found another user of a Toshiba Tecra who had installed Slackware 12 and made the following additions to his rc.local file.
#preload modules
/sbin/modprobe ac
/sbin/modprobe thermal
/sbin/modprobe fan
/sbin/modprobe processor
/sbin/modprobe speedstep-centrino
/sbin/modprobe video
/sbin/modprobe battery
/sbin/modprobe toshiba_acpi
Only three of these seem to be available.
speedstep-centrino
video
acpi
I take it that I will have to compile the toshiba_acpi module and the entire kernel.
There also appears to be a configuration file at /etc/acpi/events/default. What kind of configuration can be done there?