Linux on the Toshiba Tecra A8


Bluetooth

The power to the bluetooth adaptor must be enabled before the operating system can see the device.

There are two potential solutions, both of which at present (2.6.22) require patching /drivers/acpi/toshiba_acpi.c
1) This patch from http://memebeam.org/free-software/toshiba_acpi/ applies against 2.6.22. This will enable an emulated /dev/toshiba using the toshiba_acpi module. You will then be able to do:

#  toshset -bluetooth on

2) Add the bluetooth dev to the toshiba_acpi module. http://www.sfires.net/toshiba/. I have not tested this method, as the above worked.

Sound

/etc/modprobe.d/alsa-base
options snd-hda-intel enable=1 index=0 model=basic

Suspend to Ram

Doesn't work. Tried:

With framebuffer:

# s2ram -f
# s2ram -f -a 1
# s2ram -f -a 2
# s2ram -f -a 3
# s2ram -f -p -s
# s2ram -f -s
# s2ram -f -p
# s2ram -f -a 1 -s

Without framebuffer (vga=0):

# s2ram -f

TrackPad

See X config

X

The exisiting section in the /etc/X11/xorg.conf file:

Section "InputDevice"
        Identifier      "Synaptics Touchpad"
        Driver          "synaptics"
        Option          "SendCoreEvents"        "true"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "auto-dev"
        Option          "HorizScrollDelta"      "0"
EndSection

Add some extra config lines:

Section "InputDevice"
        Identifier      "Synaptics Touchpad"
        Driver          "synaptics"
        Option          "SendCoreEvents"        "true"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "auto-dev"
        Option          "HorizScrollDelta"      "0"
        Option          "SHMConfig"             "true"
        Option          "MinSpeed"              "0.2"
        Option          "MaxSpeed"              "1.2"
        Option          "AccelFactor"           "0.05"
EndSection

toshiba_acpi patch on kernel 2.6.24

hman's picture

Hi, i trying to apply patch to my kernel 2.6.24 but i had some problems.
Is there online a toshiba_acpi.c patch for this kernel module ?

Further Information

An additional guide for the Tecra A8 which I wrote can be found at here.