FreeBSD
ThinkPad x61s
See: TPx61s
Bluetooth on FreeBSD
The following is an excellent step by step guide to getting a bluetooth mouse to work on FreeBSD. The article is from 2006, but still applies to FreeBSD 7.1. I have the Lenovo x61s ThinkPad and ThinkPad mouse.
http://destari.blogspot.com/2006/01/setting-up-bluetooth-mouse-on-freebsd.html
Auto mount USB memory
This can be done by adding a section to your devd.conf. First one must determine a value for the match line to identify the USB memory stick. This can be done using the following commands:
#/etc/rc.d/devd stop #devd -dD
Now insert or remove the memory stick. devd will display various output. Find the setting lines, and use one of those values in your devd.conf, in the example below, product is used. Remember to restart devd after the above (/etc/rc.d/devd start)
Add the following to your /etc/devd.conf
attach 20 { device-name "umass0"; match "product" "0x1000"; action "sleep 1 ; \ sh /etc/rc.d/devfs restart ; \ /sbin/mount /dev/da0s1 /usb"; };