OK,
I enabled BT_RFCOMM_TTY and restarted with a new build environment and voila it works.
A very short HowTo(WorksForMeTM):
##add to /etc/ipkg.conf:
#src mab http://www.comnets.uni-bremen.de/~mab/openwrt/packages
ipkg update
#install bluetooth and usb packages
ipkg install kmod-bluetooth
ipkg install bluez-libs
ipkg install bluez-utils
ipkg install kmod-usb-core
ipkg install kmod-usb-ohci
ipkg install kmod-usb2
ipkg install libusb
ipkg install lsusb
#insert bluetooth and usb modules
insmod usbcore
insmod usb-ohci
insmod bluez
insmod hci_usb
insmod hci_uart
insmod sco
insmod l2cap
insmod rfcomm
#modify /etc/bluetooth/hcid.conf
#pin_helper /etc/bluetooth/givepin;
#create /etc/bluetooth/givepin:
#echo "PIN:1234"
chmod +x /etc/bluetooth/givepin
#start hcid (otherwise 'hcitool dev' does not find devices)
hcid
#mount usbdevfs for debugging
mount -t usbdevfs none /proc/bus/usb
#find the bluetooth dongle
hcitool dev
#find bluetooth devices
hcitool scan
#might not be necessary, see posts below
(#create /dev/rfcomm0
makedevs /dev/rfcomm c 216 0 0 0)
#connect
rfcomm -i hci0 connect /dev/rfcomm0 <remote_bluetooth_address> 1
Have fun with your mobile.....
Markus
(Last edited by markushx on 4 Jul 2005, 09:43)