dawnmist: My homebuilt gaming keyboard - version 1 (Default)
Dawnmist ([personal profile] dawnmist) wrote2017-02-26 03:12 pm
Entry tags:

Edimax EW-7611ULB on Raspberry Pi with Kernel 4.9

This is a quick post to record the changes I needed to make to the Bluetooth driver for an Edimax EW-7611ULB wifi & bluetooth usb dongle to get the bluetooth working on the (currently) new Raspberry Pi 4.9.11 kernel. Hopefully it can help anyone else using this adapter when they upgrade their Raspberry Pi.

The original instructions and source for installing the drivers for this adapter are published by Edimax themselves at: https://edimax.freshdesk.com/support/solutions/articles/14000047172-how-to-install-ew-7611ulb-adapter-on-raspberry-pi - but they currently cover installing the drivers for a Raspberry Pi running kernel 4.4. The wifi driver installation documented by Edimax works fine. There is one minor modification to the bluetooth driver source code required so that it will compile properly due to kernel api changes in kernel version 4.9 for the HCI driver interface.

In Section "(II.) Bluetooth Driver Installation", before running "sudo make install -s", you need to edit the file bluetooth_usb_driver/rtk_coex.c. At line 448, change

#if HCI_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
#if HCI_VERSION_CODE < KERNEL_VERSION(4, 4, 0)
	bt_cb(skb)->req.start = true;
#else
	bt_cb(skb)->hci.req_start = true;
#endif
#endif
to:
#if HCI_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
#if HCI_VERSION_CODE < KERNEL_VERSION(4, 4, 0)
	bt_cb(skb)->req.start = true;
#elif HCI_VERSION_CODE >= KERNEL_VERSION(4,9,0)
	bt_cb(skb)->hci.req_flags |= HCI_REQ_START;
#else
	bt_cb(skb)->hci.req_start = true;
#endif
#endif
Save the change, and then continue with the instructions by running the "sudo make install -s" command.

Otherwise, follow the instructions on the Edimax link to get both wifi and bluetooth working properly with this adapter on the Raspberry Pi.

Problem

[personal profile] tysie 2017-06-13 04:09 pm (UTC)(link)
Hi
I really want to install it but i have a problem.
When i do the sudo make install -s it says the following:
Copy RTL8723BU fw/config to /lib/firmware
module btusb is not currently loaded
module rtk_btusb is not currently loaded
install rtk_btusb success!

the kernel is 4.9.24 and when i say lsusb it says device 004 id 7392:a611 edimax technology co. ltd.

can you please help me?


edit:
Okay now it seems to work!
Yesterday it didnt but i started again today after removing
Edited 2017-06-14 07:35 (UTC)