parent
a442289eed
commit
e2abfd7c98
@ -0,0 +1,22 @@ |
||||
diff -ur bluez-utils-2.17.orig/hidd/sdp.c bluez-utils-2.17/hidd/sdp.c
|
||||
--- bluez-utils-2.17.orig/hidd/sdp.c 2005-05-09 20:33:24.000000000 +0200
|
||||
+++ bluez-utils-2.17/hidd/sdp.c 2005-07-26 14:38:13.000000000 +0200
|
||||
@@ -39,6 +39,7 @@
|
||||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/socket.h>
|
||||
+#include <linux/limits.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/l2cap.h>
|
||||
diff -ur bluez-utils-2.17.orig/tools/hciconfig.c bluez-utils-2.17/tools/hciconfig.c
|
||||
--- bluez-utils-2.17.orig/tools/hciconfig.c 2005-05-09 20:33:24.000000000 +0200
|
||||
+++ bluez-utils-2.17/tools/hciconfig.c 2005-07-26 14:34:29.000000000 +0200
|
||||
@@ -40,6 +40,7 @@
|
||||
#include <getopt.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/socket.h>
|
||||
+#include <linux/limits.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/hci.h>
|
@ -0,0 +1,21 @@ |
||||
diff -ur bluez-utils-2.17.orig/hcid/hcid.conf bluez-utils-2.17/hcid/hcid.conf
|
||||
--- bluez-utils-2.17.orig/hcid/hcid.conf 2004-12-25 19:06:00.000000000 +0100
|
||||
+++ bluez-utils-2.17/hcid/hcid.conf 2005-07-26 14:44:23.000000000 +0200
|
||||
@@ -23,7 +23,7 @@
|
||||
pairing multi;
|
||||
|
||||
# PIN helper
|
||||
- pin_helper /usr/bin/bluepin;
|
||||
+ pin_helper /etc/bluetooth/givepin;
|
||||
|
||||
# D-Bus PIN helper
|
||||
#dbus_pin_helper;
|
||||
@@ -34,7 +34,7 @@
|
||||
# Local device name
|
||||
# %d - device id
|
||||
# %h - host name
|
||||
- name "BlueZ (%d)";
|
||||
+ name "OpenWRT";
|
||||
|
||||
# Local device class
|
||||
class 0x3e0100;
|
@ -0,0 +1,12 @@ |
||||
--- linux-2.4.30/drivers/bluetooth/hci_usb.c 2004-08-08 01:26:04.000000000 +0200
|
||||
+++ linux-2.4.30/drivers/bluetooth/hci_usb.c 2005-07-25 20:12:11.000000000 +0200
|
||||
@@ -259,6 +259,9 @@
|
||||
void *buf;
|
||||
|
||||
mtu = husb->isoc_in_ep->wMaxPacketSize;
|
||||
+#ifdef CONFIG_BCM4710
|
||||
+ mtu = (mtu + 1) & ~1; /* brcm: isoc buffers must be aligned on word boundary */
|
||||
+#endif
|
||||
size = mtu * HCI_MAX_ISOC_FRAMES;
|
||||
|
||||
buf = kmalloc(size, GFP_ATOMIC);
|
Loading…
Reference in new issue