cd linux
git fetch origin
git checkout origin/master
cp /boot/config-$(uname -r) .config; # current configuration
scripts/config --disable DEBUG_INFO
make localmodconfig; # optional: minimize configuration
scripts/config --module BT_HCIBTUSB
make deb-pkg; # optionally with -j<num> for parallel build
dpkg -i ../<name of package>; # as root
reboot
... test test test ...
Hopefully it reproduces the bug, so
3. try the patch
cd linux
git am -3sc /path/to/the/patch
make deb-pkg; # maybe with -j4
dpkg -i ../<name of package>; # as root
reboot
... test test test ...
Hope that helps,
Jonathan
>From b79fc3e6e69b27c23e0c159a9ee3ea6367d84e5a Mon Sep 17 00:00:00 2001
From: Gustavo Padovan <gustavo@padovan.org>
Date: Wed, 15 Aug 2012 01:38:11 -0300
Subject: [PATCH] Bluetooth: Add USB_VENDOR_AND_INTERFACE_INFO() for
Broadcom/Foxconn
Foxconn devices has a vendor specific class of device, we will match them
differently now.