Talk:ThinkPad X6 UltraBase
My Kernel (2.6.30.2) only generates a "change" udev-event. No "dock" or "undock" event. So I used the ATTR to find out whether docked or undocked. The udev rules in /etc/udev/rules.d/10-docking.rules look like this now:
ATTR{docked}=="1", KERNEL=="dock.0", SUBSYSTEM=="platform", RUN+="/some/script dock" ATTR{docked}=="0", KERNEL=="dock.0", SUBSYSTEM=="platform", RUN+="/some/script undock"
Cz8s 16:32, 26 July 2009 (UTC)
Contents
old guide for hot-docking capability under Linux
X6 UltraBase under Linux (older style)
The docking stations are (at least in openSUSE) supported by the Dockutils project. The dockutils are formed by a set of simple bash scripts that handle docking and undocking of the computer. When the user chooses to undock the laptop, it does some system calls and when properly configured, it could disconnect the optical drive in the Ultrabay or update the display resolution.
Overally, the UltraBase works pretty much the same way as under Windows, only it has more configuration possibilities. The user only needs to press the key on the dock to undock the PC. Docking is handled automatically.
The following code has been tested on OpenSUSE 10.3 (Linux 2.6.22) with ThinkPad X61 but should work on all dockable ThinkPads with a recent kernel and the required software installed.
Dockutils hook
In order to have the docking handled automatically, we need to create a hook in the Dockutils directory (/usr/lib/dockutils/). We will put our hook in the hooks/thinkpad subdirectory.
# cat /usr/lib/dockutils/hooks/thinkpad/70x61
#!/bin/bash # dock/undock script for Thinkpad X61 export DISPLAY=:0 if [ "$1" = "dock" ]; then echo "X61 dock" # non-present dvd drive workaround, not required in newer distros /bin/rescan-scsi-bus.sh --hosts=1 --channels=0 --ids=0 --luns=0 --forceremove & # set external display resolution & dpi /usr/bin/xrandr --output VGA --auto /usr/bin/xrandr --screen 0 -s 1920x1200 /usr/bin/xrandr --screen 0 --dpi 96x96 elif [ "$1" = "undock" ]; then echo "X61 undock" # turn external display off, internal on and set res /usr/bin/xrandr --screen 0 -s 1024x768 /usr/bin/xrandr --output LVDS --auto /usr/bin/xrandr --output VGA --off /usr/bin/xrandr --screen 0 --dpi 96x96 fi
/usr/bin/xrandr
lines from the scriptThe # xhost +local:root
command has to be in /etc/X11/xinit/xinitrc.d/<script name> to get xrandr
working from the root account.
ACPI event handlers
You can always run the Dockutils using # docker dock
or # docker undock
command, but this is not comfortable. We will use the ACPI subsystem to bind FnF8, FnF9 keys, and the blue button on the docking station to the Dockutils. This could be performed using the following code:
# cat /etc/acpi/events/dock
event=(ibm/dock GDCK 00000000 00000003|ibm/hotkey HKEY 00000080 00001008) action=/usr/sbin/docker dock
and
# cat /etc/acpi/events/undock
event=(ibm/dock GDCK 00000003 00000001|ibm/hotkey HKEY 00000080 00001009) action=/usr/sbin/docker undock
Now, you should be able to undock your PC using the keyboard keys and the dock button.
acpid
must be installed and running for this to workX6 UltraBase under Linux (newer style)
Setup Ultrabay Hotswap for any distribution
Setup a script "ultrabay_eject" in /usr/local/sbin:
# cat /etc/udev/rules.d/50-thinkpad-ultrabay.rules
#!/bin/bash # Change the following DEVPATH= to match your system, if you want to run this directly instead of having it called by the udev eject script # To find the right value, insert the UltraBay optical drive and run: # udevadm info --query=path --name=/dev/sr0 | perl -pe 's!/block/...$!!' if [ "$DEVPATH" = "" ] then # DEVPATH="/devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0" DEVPATH="/devices/pci0000:00/0000:00:1f.1/host0/target0:0:0/0:0:0:0" fi shopt -s nullglob export DISPLAY=:0.0 # required for notify-send ULTRABAY_SYSDIR=/sys$DEVPATH # Find generic dock interface for UltraBay dock=$( /bin/grep -l ata_bay /sys/devices/platform/dock.?/type ) dock=${dock%%/type} if [ -n "$dock" -a -d "$dock" ]; then logger ultrabay_eject starting eject of $dock else logger ultrabay_eject cannot locate bay dock device notify-send -u critical -t 100000 "ThinkPad Ultrabay eject failed" "Cannot locate bay dock device" fi # Umount the filesystem(s) backed by the given major:minor device(s) unmount_rdev() { perl - "$@" <<'EOPERL' # let's do it in Perl for $major_minor (@ARGV) { $major_minor =~ m/^(\d+):(\d+)$/ or die; push(@tgt_rdevs, ($1<<8)|$2); } # Sort by reverse length of mount point, to unmount sub-directories first open MOUNTS,"</proc/mounts" or die "$!"; @mounts=sort { length($b->[1]) <=> length($a->[1]) } map { [ split ] } <MOUNTS>; close MOUNTS; foreach $m (@mounts) { ($dev,$dir)=@$m; next unless -b $dev; $rdev=(stat($dev))[6]; next unless grep($_==$rdev, @tgt_rdevs); system("umount","-v","$dir")==0 or $bad=1; if ($bad == 1) { system("logger","ultrabay_eject","ERROR unmounting",$dev,$dir); system("notify-send -u critical -t 100000 \"Error unmounting $dir\" \"Unmounting of $dir on $dev failed!\""); } else { system("logger","ultrabay_eject","unmounted",$dev,$dir); system("notify-send -u normal -t 5000 \"Unmounted $dir\""); }; } exit 1 if $bad; EOPERL } # Get the UltraBay's /dev/foo block device node ultrabay_dev_node() { UDEV_PATH="`readlink -e "$ULTRABAY_SYSDIR/block/"*`" || return 1 UDEV_NAME="`udevadm info --query=name --path=$UDEV_PATH`" || return 1 echo /dev/$UDEV_NAME } if [ $( cat $dock/docked ) == 0 ]; then logger ultrabay_eject dock reports empty else if [ -d $ULTRABAY_SYSDIR ]; then logger ultrabay_eject dock occupied, shutting down storage device $DEVPATH sync # Unmount filesystems backed by this device ## This seems to be very inelegant and prone to failure unmount_rdev `cat $ULTRABAY_SYSDIR/block/*/dev \ $ULTRABAY_SYSDIR/block/*/*/dev` \ || { logger ultrabay_eject umounting failed echo 2 > /proc/acpi/ibm/beep # triple error tone notify-send -u critical -t 100000 "ThinkPad Ultrabay eject failed" \ "Please do not pull the device, doing so could cause file corruption and possibly hang the system. Unmounting of the filesystem on the ThinkPad Ultrabay device failed. Please put the eject leaver back in place, and try to unmount the filesystem manually. If this succeeds you can try the eject again" exit 1; } sync # Nicely power off the device DEVNODE=`ultrabay_dev_node` && hdparm -Y $DEVNODE # Let HAL+KDE notice the unmount and let the disk spin down sleep 0.5 # Unregister this SCSI device: sync echo 1 > $ULTRABAY_SYSDIR/delete else logger ultrabay_eject bay occupied but incorrect device path $DEVPATH notify-send -u critical -t 100000 "ThinkPad Ultrabay eject failed" "Bay occupied but incorrect device path" echo 2 > /proc/acpi/ibm/beep # triple error tone exit 1 fi fi # We need sleep here so someone can disconnect the bay and the drive sleep 1 # Turn off power to the UltraBay logger ultrabay_eject undocking $dock echo 1 > $dock/undock # Tell the user we're OK logger ultrabay_eject done echo 12 > /proc/acpi/ibm/beep notify-send -u normal -t 10000 "Safe to remove device" "The ThinkPad Ultrabay device can now safely be removed"
Then set up and udev event that listens to the events from the ultrabay and runs the script:
# cat /etc/udev/rules.d/50-thinkpad-ultrabay.rules
ENV{BAY_EVENT}=="3", ACTION=="change", SUBSYSTEM=="scsi", RUN+="/usr/local/sbin/ultrabay_eject"
Fix for undocking while Laptop sleeps for any distribution
Then you just add the following file in /etc/pm/sleep.d/ - it just undocks the notebook before going to sleep. After resuming the acpi events will detect the ultrabay again so it will be "docked" automatically after resuming, but you can still just remove the X6* from the ultrabase while it is sleeping:
# cat /etc/pm/sleep.d/99-x61-docking
#!/bin/sh . "${PM_FUNCTIONS}" case $1 in hibernate|suspend) echo 1 > /sys/devices/platform/dock.0/undock ;; thaw|resume) # should dock automatically ;; *) exit $NA ;; esac
Dockutils hooks
Since in recent distributions (like openSuSE 11.1), there is no generated ACPI event for undocking the notebook (Alt+F9 still works the same), you need to use udev in order to be able detect the undocking event. You can use the same ACPI hook as in the "older style" docking setting but you need to put this code into your udev rules:
# cat /etc/udev/rules.d/10-docking.rules
ENV{EVENT}=="undock", KERNEL=="dock.0", SUBSYSTEM=="platform", RUN+="/usr/lib/dockutils/hooks/thinkpad/70x61 undock" ENV{EVENT}=="dock", KERNEL=="dock.0", SUBSYSTEM=="platform", RUN+="/usr/lib/dockutils/hooks/thinkpad/70x61 dock"
After this change, the notebook will change it's resolution automatically after you remove it from the UltraBase.