This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.

Please visit our production wiki at https://wiki.gentoo.org

Lenovo ThinkPad T400: Difference between revisions

From Gentoo Wiki (test)
Jump to:navigation Jump to:search
m (→‎Configuration: touchpad0 configuration)
Line 114: Line 114:
VIDEO_CARDS="intel i915"                     
VIDEO_CARDS="intel i915"                     
INPUT_DEVICES="synaptics keyboard mouse"    # prefering mouse and keyboard over evdev
INPUT_DEVICES="synaptics keyboard mouse"    # prefering mouse and keyboard over evdev
}}
=== synaptics ===
{{FileBox|filename=/etc/X11/xorg.conf.d/20-touchpad.conf|title=Synaptics enhanced configuration|1=
Section "InputDevice"
        identifier      "touchpad0"
        driver          "synaptics"
        option          "AutoServerLayout" "on"
        # Some extra options for touchpad.
        Option  "LeftEdge"      "1700"
        Option  "RightEdge"    "5300"
        Option  "TopEdge"      "1700"
        Option  "BottomEdge"    "4200"
        Option  "FingerLow"    "25"
        Option  "FingerHigh"    "30"
        Option  "MaxTapTime"    "180"
        Option  "MaxTapMove"    "220"
        Option  "MinSpeed"      "0.7"
        Option  "MaxSpeed"      "0.8"
        Option  "AccelFactor"  "0.0010"
        Option  "SHMConfig"    "on"
        Option  "TapButton1"    "1"
        Option  "VertTwoFingerScroll"  "1"
        Option  "HorizTwoFingerScroll"  "1"
        Option  "VertScrollDelta"      "100"
EndSection
}}
}}



Revision as of 19:47, 7 June 2016

Resources
This article is a stub. You can help by expanding it.

A Lenovo ThinkPad with libreboot support. Libreboot is part of the GNU foundation.

Hardware

Standard

Device Make/model Status Bus ID Kernel driver(s) Kernel version Notes
CPU Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz Works N/A N/A 4.0.5 N/A
Video Card Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) Works 00:02.1 i915 4.0.5 N/A
Ethernet controller Intel Corporation 82567LM Gigabit Network Connection (rev 03) Works 00:19.0 e1000e 4.0.5 N/A
Audio device Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03) Works 00:1b.0 snd_hda_intel 4.0.5 N/A
Network controller Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection Works 03:00.0 iwlwifi 4.0.5 N/A

Accessories

Device Make/model Status Bus ID Kernel driver(s) Kernel version Notes
Dock ThinkPad Pro Dock Not tested N/A N/A N/A N/A

Installation

(Write the necessary steps to get Gentoo onto this system. Try to document any special step that each user will need to reproduce on their system. Includes getting special drivers or firmware from a manufacturer website, etc.)

Firmware

Kernel

(Show what options are necessary in the kernel in order to get all device components functional for this hardware platform.)

KERNEL Enable support for these hardware drivers
Write menuconfig instructions here.

Emerge

Install the ThinkPad SMAPI BIOS driver

root #emerge --ask app-laptop/tp_smapi

Configuration

make.conf

FILE /etc/portage/make.conf
CFLAGS="-O2 -march=core2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
CHOST="x86_64-pc-linux-gnu"
MAKEOPTS="-j3"

CPU_FLAGS_X86="mmx mmxext sse sse2 sse3 sse4_1 ssse3"

VIDEO_CARDS="intel i915"                    
INPUT_DEVICES="synaptics keyboard mouse"    # prefering mouse and keyboard over evdev

synaptics

FILE /etc/X11/xorg.conf.d/20-touchpad.confSynaptics enhanced configuration
Section "InputDevice"
        identifier      "touchpad0"
        driver          "synaptics"
        option          "AutoServerLayout" "on"

        # Some extra options for touchpad.
        Option  "LeftEdge"      "1700"
        Option  "RightEdge"     "5300"
        Option  "TopEdge"       "1700"
        Option  "BottomEdge"    "4200"
        Option  "FingerLow"     "25"
        Option  "FingerHigh"    "30"
        Option  "MaxTapTime"    "180"
        Option  "MaxTapMove"    "220"
        Option  "MinSpeed"      "0.7"
        Option  "MaxSpeed"      "0.8"
        Option  "AccelFactor"   "0.0010"
        Option  "SHMConfig"     "on"
        Option  "TapButton1"    "1"
        Option  "VertTwoFingerScroll"   "1"
        Option  "HorizTwoFingerScroll"  "1"
        Option  "VertScrollDelta"       "100"
EndSection

Troubleshooting

See also

External resources

References