blob: dd8f33777c4f9b4076bfcbfedadabc01bafcbeba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!doctype html>
<html lang="EN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>X220 internal Bluetooth controller</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>X220 internal Bluetooth controller</h2>
<h3>2025-05-27</h3>
<h4>Deactivating the internal Bluetooth controller</h4>
<p>The Thinkpad X220 has an internal Bluetooth controller, but
<a href="/articles/2025/AC7260-wifi-card-on-Thinkpad-X220.html">I installed the AC7260 wifi/bluetooth card</a>.</p>
<p>Unfortunately the default card remains the internal one, so autoconnect of my headset doesn't work.</p>
<p>In order to block the internal device, I made a UDEV rule in /etc/udev/rules.d/91-bluetooth-hci.rules</p>
<p>After obtaining the id with lsusb:</p>
<pre>SUBSYSTEM=="usb", ATTRS{idVendor}=="8087", ATTRS{idProduct}=="07dc", ATTR{authorized}="0"</pre>
<p>Reboot, and the AC7260 Bluetooth card is now the default.</p>
</article>
</main>
<footer>
<p> </p>
<p>§</p>
</footer>
</body>
</html>
|