※ 引述《tumc (HIHIHI)》之銘言:
: 請問各位大大
: 小弟由於對linux安裝不甚熟悉,在安裝bluetooth dongle時遇到問題
: 然後搜尋google , 發現有解決的方法...
: 對方有寫到一個patch的檔案,但小弟不知道何執行...麻請各位大大解答,
: 下貼此patch檔:
: From ac637beb710372d9b1ef1c472ea3ad5835c2034a Mon Sep 17 00:00:00 2001
: From: Daniel Cheng (SDiZ) <[email protected]>
: Date: Wed, 20 Feb 2008 09:10:16 +0800
: Subject: [PATCH] CONWISE Technology based adapters with buggy SCO support
: ---
: drivers/bluetooth/hci_usb.c | 3 +++
: 1 files changed, 3 insertions(+), 0 deletions(-)
: diff --git a/drivers/bluetooth/hci_usb.c b/drivers/bluetooth/hci_usb.c
: index 372c7ef..4f8a744 100644
: --- a/drivers/bluetooth/hci_usb.c
: +++ b/drivers/bluetooth/hci_usb.c
: @@ -148,6 +148,9 @@ static struct usb_device_id blacklist_ids[] = {
: { USB_DEVICE(0x0400, 0x0807), .driver_info = HCI_BROKEN_ISOC },
: { USB_DEVICE(0x0400, 0x080a), .driver_info = HCI_BROKEN_ISOC },
: + /* CONWISE Technology based adapters with buggy SCO support */
: + { USB_DEVICE(0x0e5e, 0x6622), .driver_info = HCI_BROKEN_ISOC },
: +
: /* Belkin F8T012 and F8T013 devices */
: { USB_DEVICE(0x050d, 0x0012), .driver_info = HCI_RESET | HCI_WRONG_SCO_MTU },
: { USB_DEVICE(0x050d, 0x0013), .driver_info = HCI_RESET | HCI_WRONG_SCO_MTU },
#cd root_dir_of_the_source
#patch -p1 < your_patch_file
或是你直接找到 drivers/bluetooth/hci_usb.c 這個檔案
直接在把前面有 + 號的三行加到149行下面 這樣效果也是一樣的
--
: 請問各位大大
: 小弟由於對linux安裝不甚熟悉,在安裝bluetooth dongle時遇到問題
: 然後搜尋google , 發現有解決的方法...
: 對方有寫到一個patch的檔案,但小弟不知道何執行...麻請各位大大解答,
: 下貼此patch檔:
: From ac637beb710372d9b1ef1c472ea3ad5835c2034a Mon Sep 17 00:00:00 2001
: From: Daniel Cheng (SDiZ) <[email protected]>
: Date: Wed, 20 Feb 2008 09:10:16 +0800
: Subject: [PATCH] CONWISE Technology based adapters with buggy SCO support
: ---
: drivers/bluetooth/hci_usb.c | 3 +++
: 1 files changed, 3 insertions(+), 0 deletions(-)
: diff --git a/drivers/bluetooth/hci_usb.c b/drivers/bluetooth/hci_usb.c
: index 372c7ef..4f8a744 100644
: --- a/drivers/bluetooth/hci_usb.c
: +++ b/drivers/bluetooth/hci_usb.c
: @@ -148,6 +148,9 @@ static struct usb_device_id blacklist_ids[] = {
: { USB_DEVICE(0x0400, 0x0807), .driver_info = HCI_BROKEN_ISOC },
: { USB_DEVICE(0x0400, 0x080a), .driver_info = HCI_BROKEN_ISOC },
: + /* CONWISE Technology based adapters with buggy SCO support */
: + { USB_DEVICE(0x0e5e, 0x6622), .driver_info = HCI_BROKEN_ISOC },
: +
: /* Belkin F8T012 and F8T013 devices */
: { USB_DEVICE(0x050d, 0x0012), .driver_info = HCI_RESET | HCI_WRONG_SCO_MTU },
: { USB_DEVICE(0x050d, 0x0013), .driver_info = HCI_RESET | HCI_WRONG_SCO_MTU },
#cd root_dir_of_the_source
#patch -p1 < your_patch_file
或是你直接找到 drivers/bluetooth/hci_usb.c 這個檔案
直接在把前面有 + 號的三行加到149行下面 這樣效果也是一樣的
--
All Comments