blob: c4bb288303101c39bdb8f65b008e0041fc9829a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# Patch managed by http://www.holgerschurig.de/patcher.html
#
--- bluez-utils-2.17/pcmcia/bluetooth~base.patch
+++ bluez-utils-2.17/pcmcia/bluetooth
@@ -18,6 +18,10 @@
# Get device attributes
get_info $DEVICE
+test "$DEVICE" = "ttyS7" && DEVICE="/dev/tts/7"
+test -z "$MANFID" && MANFID="bcsp"
+test "$MANFID" = "0000,0000" && MANFID="bcsp"
+
#
# Serial devices
#
@@ -25,7 +29,7 @@
IRQ=`setserial /dev/$DEVICE | sed -e 's/.*IRQ: //'`
setserial /dev/$DEVICE irq 0 ; setserial /dev/$DEVICE irq $IRQ
- /usr/sbin/hciattach $DEVICE $MANFID
+ /sbin/hciattach $DEVICE $MANFID
}
stop_serial() {
do_fuser -k -HUP /dev/$DEVICE > /dev/null
|