1

I have a Dell Precision M4800 using Ubuntu 14.04.4 with Wily kernel (4.2.0-35). Bluetooth is not working for me. Tried the steps in this question, as my setup seems to be exactly the same as the one described (except for the Ubuntu version), but I get a:

/bluetooth/hci_h4.c:128:2: error: implicit declaration of function ‘hci_recv_stream_fragment’ [-Werror=implicit-function-declaration]

Which I think is normal.... Where can I find the bluetooth source for my SO version?

Thank you in advance!

1 Answers1

0

So I think I can answer myself...

I've got the correct kernel source this way:

apt-get source linux-image-$(uname -r)

Got the bluetooth folder in /drivers/bluetooth/, and added the following line in btusb.c under the /*Broadcom BCM20702A0 */ comment as described here:

{ USB_DEVICE(0x413c, 0x8143) },

Then simply followed the rest of the steps (from the sixth on) described here by Jeremy31.

And it worked like a charm ;)