Activity log for bug #1394368

Date Who What changed Old value New value Message
2014-11-19 21:54:37 Wallcom bug added bug
2014-11-19 21:54:37 Wallcom attachment added Patches ath3k.c and btusb.c [WONT WORK WITH AUTOINSTALL] https://bugs.launchpad.net/bugs/1394368/+attachment/4264028/+files/ar9462-dkms_1.5.1_all.deb
2014-11-19 21:59:40 Wallcom description This is (kind of) a duplicate of: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1024884 (please read) I can't use Bluetooth with my AR9462 WLAN/BT-Combo. In the link above, it has been fixed, but not for my Adapter ID/Firmware: System: Ubuntu 14.10 utopic 64bit - 3.16.0-24-generic x86_64 lspci -nnk 02:00.0 Network controller [0280]: Qualcomm Atheros AR9462 Wireless Network Adapter [168c:0034] (rev 01) Subsystem: Lite-On Communications Inc Device [11ad:0802] Kernel driver in use: ath9k lsusb (identified Bluetooth Device) Bus 002 Device 003: ID 04ca:300d Lite-On Technology Corp. ath9k.conf options ath9k btcoex_enable=1 The "04ca:300d" ID is not in the Kernel, so i added it via dkms. I took ath3k.c and btusb.c out of the 3.16.0-24-generic source files and changed them: diff -urN ./linux-3.16.0/drivers/bluetooth/ath3k.c /usr/src/ar9462-1.5.1/ath3k.c --- ./linux-3.16.0/drivers/bluetooth/ath3k.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/ath3k.c 2014-11-19 21:12:46.646265890 +0100 @@ -85,6 +85,7 @@ { USB_DEVICE(0x04CA, 0x3007) }, { USB_DEVICE(0x04CA, 0x3008) }, { USB_DEVICE(0x04CA, 0x300b) }, + { USB_DEVICE(0x04CA, 0x300d) }, { USB_DEVICE(0x0930, 0x0219) }, { USB_DEVICE(0x0930, 0x0220) }, { USB_DEVICE(0x0b05, 0x17d0) }, @@ -134,6 +135,7 @@ { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, diff -urN ./linux-3.16.0/drivers/bluetooth/btusb.c /usr/src/ar9462-1.5.1/btusb.c --- ./linux-3.16.0/drivers/bluetooth/btusb.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/btusb.c 2014-11-19 21:12:46.646265890 +0100 @@ -157,6 +157,7 @@ { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 }, { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, sudo dkms add -m ar9462 -v 1.5.1 sudo dkms build -m ar9462 -v 1.5.1 sudo dkms install -m ar9462 -v 1.5.1 --force NOTE: Since i didn't change the Version in the 2 Files, you have to use --force when installing. Because of this, the attached deb package (in the same style/versioning as in the bug report above) doesn't work with autoinstall. dkms status ar9462, 1.5.1, 3.16.0-24-generic, x86_64: installed Now the new output: dmesg | egrep 'ath3|ar3|Bluet' [ 2.787819] Bluetooth: Core ver 2.19 [ 2.787833] Bluetooth: HCI device and connection manager initialized [ 2.787839] Bluetooth: HCI socket layer initialized [ 2.787842] Bluetooth: L2CAP socket layer initialized [ 2.787848] Bluetooth: SCO socket layer initialized [ 2.793551] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 2.793554] Bluetooth: BNEP filters: protocol multicast [ 2.793561] Bluetooth: BNEP socket layer initialized [ 3.130779] Bluetooth: Patch file not found ar3k/AthrBT_0x11020100.dfu [ 3.130783] Bluetooth: Loading patch file failed [ 3.130788] ath3k: probe of 2-5:1.0 failed with error -12 [ 3.130823] usbcore: registered new interface driver ath3k [ 9.776503] Bluetooth: RFCOMM TTY layer initialized [ 9.776512] Bluetooth: RFCOMM socket layer initialized [ 9.776517] Bluetooth: RFCOMM ver 1.11 My patch work, but just like in the bug report above, a Firmware file is missing: AthrBT_0x11020100.dfu I didn't find it neither in linux-firmware (http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/tree/ar3k) nor elsewhere. This is (kind of) a duplicate of: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1024884 (please read) I can't use Bluetooth with my AR9462 WLAN/BT-Combo. In the link above, it has been fixed, but not for my Adapter ID/Firmware: System: Ubuntu 14.10 utopic 64bit - 3.16.0-24-generic x86_64 lspci -nnk 02:00.0 Network controller [0280]: Qualcomm Atheros AR9462 Wireless Network Adapter [168c:0034] (rev 01)  Subsystem: Lite-On Communications Inc Device [11ad:0802]  Kernel driver in use: ath9k lsusb (identified Bluetooth Device) Bus 002 Device 003: ID 04ca:300d Lite-On Technology Corp. ath9k.conf options ath9k btcoex_enable=1 The "04ca:300d" ID is not in the Kernel, so i added it via dkms. I took ath3k.c and btusb.c out of the 3.16.0-24-generic source files and changed them: diff -urN ./linux-3.16.0/drivers/bluetooth/ath3k.c /usr/src/ar9462-1.5.1/ath3k.c --- ./linux-3.16.0/drivers/bluetooth/ath3k.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/ath3k.c 2014-11-19 21:12:46.646265890 +0100 @@ -85,6 +85,7 @@   { USB_DEVICE(0x04CA, 0x3007) },   { USB_DEVICE(0x04CA, 0x3008) },   { USB_DEVICE(0x04CA, 0x300b) }, + { USB_DEVICE(0x04CA, 0x300d) },   { USB_DEVICE(0x0930, 0x0219) },   { USB_DEVICE(0x0930, 0x0220) },   { USB_DEVICE(0x0b05, 0x17d0) }, @@ -134,6 +135,7 @@   { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, diff -urN ./linux-3.16.0/drivers/bluetooth/btusb.c /usr/src/ar9462-1.5.1/btusb.c --- ./linux-3.16.0/drivers/bluetooth/btusb.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/btusb.c 2014-11-19 21:12:46.646265890 +0100 @@ -157,6 +157,7 @@   { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, sudo dkms add -m ar9462 -v 1.5.1 sudo dkms build -m ar9462 -v 1.5.1 sudo dkms install -m ar9462 -v 1.5.1 --force NOTE: Since i didn't change the Version in the 2 Files, you have to use --force when installing. Because of this, the attached deb package (in the same style/versioning as in the bug report above) doesn't work with autoinstall. dkms status ar9462, 1.5.1, 3.16.0-24-generic, x86_64: installed Now the new output: dmesg | egrep 'ath3|ar3|Bluet' [ 2.787819] Bluetooth: Core ver 2.19 [ 2.787833] Bluetooth: HCI device and connection manager initialized [ 2.787839] Bluetooth: HCI socket layer initialized [ 2.787842] Bluetooth: L2CAP socket layer initialized [ 2.787848] Bluetooth: SCO socket layer initialized [ 2.793551] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 2.793554] Bluetooth: BNEP filters: protocol multicast [ 2.793561] Bluetooth: BNEP socket layer initialized [ 3.130779] Bluetooth: Patch file not found ar3k/AthrBT_0x11020100.dfu [ 3.130783] Bluetooth: Loading patch file failed [ 3.130788] ath3k: probe of 2-5:1.0 failed with error -12 [ 3.130823] usbcore: registered new interface driver ath3k [ 9.776503] Bluetooth: RFCOMM TTY layer initialized [ 9.776512] Bluetooth: RFCOMM socket layer initialized [ 9.776517] Bluetooth: RFCOMM ver 1.11 My patch works, but just like in the bug report above, a Firmware file is missing: AthrBT_0x11020100.dfu I found it neither in linux-firmware (http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/tree/ar3k) nor elsewhere.
2014-11-19 22:00:09 Brad Figg linux (Ubuntu): status New Incomplete
2014-11-19 22:00:10 Brad Figg tags utopic
2014-11-19 22:24:26 Joseph Salisbury linux (Ubuntu): importance Undecided Medium
2014-11-19 22:24:28 Joseph Salisbury linux (Ubuntu): status Incomplete Triaged
2014-11-19 22:25:11 Joseph Salisbury tags utopic kernel-da-key utopic vivid
2014-11-20 00:22:18 Wallcom tags kernel-da-key utopic vivid ath3k bluetooth kernel-da-key utopic vivid
2014-11-20 00:23:16 Ubuntu Foundations Team Bug Bot tags ath3k bluetooth kernel-da-key utopic vivid ath3k bluetooth kernel-da-key patch utopic vivid
2014-11-20 00:23:16 Ubuntu Foundations Team Bug Bot bug added subscriber Joseph Salisbury
2014-11-20 17:13:41 Wallcom attachment removed Patches ath3k.c and btusb.c [WONT WORK WITH AUTOINSTALL] https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1394368/+attachment/4264028/+files/ar9462-dkms_1.5.1_all.deb
2014-11-20 17:26:00 Wallcom attachment added ar9462-dkms_1.5.1_all.deb https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1394368/+attachment/4264502/+files/ar9462-dkms_1.5.1_all.deb
2014-11-20 17:32:39 Wallcom description This is (kind of) a duplicate of: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1024884 (please read) I can't use Bluetooth with my AR9462 WLAN/BT-Combo. In the link above, it has been fixed, but not for my Adapter ID/Firmware: System: Ubuntu 14.10 utopic 64bit - 3.16.0-24-generic x86_64 lspci -nnk 02:00.0 Network controller [0280]: Qualcomm Atheros AR9462 Wireless Network Adapter [168c:0034] (rev 01)  Subsystem: Lite-On Communications Inc Device [11ad:0802]  Kernel driver in use: ath9k lsusb (identified Bluetooth Device) Bus 002 Device 003: ID 04ca:300d Lite-On Technology Corp. ath9k.conf options ath9k btcoex_enable=1 The "04ca:300d" ID is not in the Kernel, so i added it via dkms. I took ath3k.c and btusb.c out of the 3.16.0-24-generic source files and changed them: diff -urN ./linux-3.16.0/drivers/bluetooth/ath3k.c /usr/src/ar9462-1.5.1/ath3k.c --- ./linux-3.16.0/drivers/bluetooth/ath3k.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/ath3k.c 2014-11-19 21:12:46.646265890 +0100 @@ -85,6 +85,7 @@   { USB_DEVICE(0x04CA, 0x3007) },   { USB_DEVICE(0x04CA, 0x3008) },   { USB_DEVICE(0x04CA, 0x300b) }, + { USB_DEVICE(0x04CA, 0x300d) },   { USB_DEVICE(0x0930, 0x0219) },   { USB_DEVICE(0x0930, 0x0220) },   { USB_DEVICE(0x0b05, 0x17d0) }, @@ -134,6 +135,7 @@   { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, diff -urN ./linux-3.16.0/drivers/bluetooth/btusb.c /usr/src/ar9462-1.5.1/btusb.c --- ./linux-3.16.0/drivers/bluetooth/btusb.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/btusb.c 2014-11-19 21:12:46.646265890 +0100 @@ -157,6 +157,7 @@   { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, sudo dkms add -m ar9462 -v 1.5.1 sudo dkms build -m ar9462 -v 1.5.1 sudo dkms install -m ar9462 -v 1.5.1 --force NOTE: Since i didn't change the Version in the 2 Files, you have to use --force when installing. Because of this, the attached deb package (in the same style/versioning as in the bug report above) doesn't work with autoinstall. dkms status ar9462, 1.5.1, 3.16.0-24-generic, x86_64: installed Now the new output: dmesg | egrep 'ath3|ar3|Bluet' [ 2.787819] Bluetooth: Core ver 2.19 [ 2.787833] Bluetooth: HCI device and connection manager initialized [ 2.787839] Bluetooth: HCI socket layer initialized [ 2.787842] Bluetooth: L2CAP socket layer initialized [ 2.787848] Bluetooth: SCO socket layer initialized [ 2.793551] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 2.793554] Bluetooth: BNEP filters: protocol multicast [ 2.793561] Bluetooth: BNEP socket layer initialized [ 3.130779] Bluetooth: Patch file not found ar3k/AthrBT_0x11020100.dfu [ 3.130783] Bluetooth: Loading patch file failed [ 3.130788] ath3k: probe of 2-5:1.0 failed with error -12 [ 3.130823] usbcore: registered new interface driver ath3k [ 9.776503] Bluetooth: RFCOMM TTY layer initialized [ 9.776512] Bluetooth: RFCOMM socket layer initialized [ 9.776517] Bluetooth: RFCOMM ver 1.11 My patch works, but just like in the bug report above, a Firmware file is missing: AthrBT_0x11020100.dfu I found it neither in linux-firmware (http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/tree/ar3k) nor elsewhere. This is (kind of) a duplicate of: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1024884 (please read) I can't use Bluetooth with my AR9462 WLAN/BT-Combo. In the link above, it has been fixed, but not for my Adapter ID/Firmware: System: Ubuntu 14.10 utopic 64bit - 3.16.0-24-generic x86_64 lspci -nnk 02:00.0 Network controller [0280]: Qualcomm Atheros AR9462 Wireless Network Adapter [168c:0034] (rev 01)  Subsystem: Lite-On Communications Inc Device [11ad:0802]  Kernel driver in use: ath9k lsusb (identified Bluetooth Device) Bus 002 Device 003: ID 04ca:300d Lite-On Technology Corp. ath9k.conf options ath9k btcoex_enable=1 The "04ca:300d" ID is not in the Kernel, so i added it via dkms. I took ath3k.c and btusb.c out of the 3.16.0-24-generic source files and changed them: diff -urN ./linux-3.16.0/drivers/bluetooth/ath3k.c /usr/src/ar9462-1.5.1/ath3k.c --- ./linux-3.16.0/drivers/bluetooth/ath3k.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/ath3k.c 2014-11-19 21:12:46.646265890 +0100 @@ -85,6 +85,7 @@   { USB_DEVICE(0x04CA, 0x3007) },   { USB_DEVICE(0x04CA, 0x3008) },   { USB_DEVICE(0x04CA, 0x300b) }, + { USB_DEVICE(0x04CA, 0x300d) },   { USB_DEVICE(0x0930, 0x0219) },   { USB_DEVICE(0x0930, 0x0220) },   { USB_DEVICE(0x0b05, 0x17d0) }, @@ -134,6 +135,7 @@   { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, diff -urN ./linux-3.16.0/drivers/bluetooth/btusb.c /usr/src/ar9462-1.5.1/btusb.c --- ./linux-3.16.0/drivers/bluetooth/btusb.c 2014-08-04 00:25:02.000000000 +0200 +++ /usr/src/ar9462-1.5.1/btusb.c 2014-11-19 21:12:46.646265890 +0100 @@ -157,6 +157,7 @@   { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },   { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, sudo dkms add -m ar9462 -v 1.5.1 sudo dkms build -m ar9462 -v 1.5.1 sudo dkms install -m ar9462 -v 1.5.1 (DKMS package in the same style/versioning as in the bug report above) dkms status ar9462, 1.5.1, 3.16.0-24-generic, x86_64: installed Now the new output: dmesg | egrep 'ath3|ar3|Bluet' [ 2.787819] Bluetooth: Core ver 2.19 [ 2.787833] Bluetooth: HCI device and connection manager initialized [ 2.787839] Bluetooth: HCI socket layer initialized [ 2.787842] Bluetooth: L2CAP socket layer initialized [ 2.787848] Bluetooth: SCO socket layer initialized [ 2.793551] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 2.793554] Bluetooth: BNEP filters: protocol multicast [ 2.793561] Bluetooth: BNEP socket layer initialized [ 3.130779] Bluetooth: Patch file not found ar3k/AthrBT_0x11020100.dfu [ 3.130783] Bluetooth: Loading patch file failed [ 3.130788] ath3k: probe of 2-5:1.0 failed with error -12 [ 3.130823] usbcore: registered new interface driver ath3k [ 9.776503] Bluetooth: RFCOMM TTY layer initialized [ 9.776512] Bluetooth: RFCOMM socket layer initialized [ 9.776517] Bluetooth: RFCOMM ver 1.11 My patch works, but just like in the bug report above, a Firmware file is missing: AthrBT_0x11020100.dfu I found it neither in linux-firmware (http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/tree/ar3k) nor elsewhere.
2014-11-20 17:40:10 Wallcom bug added subscriber AceLan Kao
2014-11-20 19:24:56 Joseph Salisbury affects linux (Ubuntu) linux-firmware (Ubuntu)
2014-11-20 19:40:54 Chris J Arges linux-firmware (Ubuntu): assignee Chris J Arges (arges)
2014-11-20 21:11:50 Chris J Arges linux-firmware (Ubuntu): status Triaged Incomplete
2014-11-20 22:04:51 Wallcom attachment added AthrBT_0x11020100.dfu https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1394368/+attachment/4264673/+files/AthrBT_0x11020100.dfu
2014-11-20 22:06:29 Wallcom attachment added ramps_0x11020100_40.dfu https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1394368/+attachment/4264674/+files/ramps_0x11020100_40.dfu
2015-03-05 22:12:29 Jukka Niiranen bug added subscriber Jukka Niiranen
2015-04-21 07:15:13 jack.chen bug added subscriber jack.chen
2015-05-19 14:15:13 Pilot6 bug added subscriber Pilot6
2015-06-18 17:49:26 Pilot6 linux-firmware (Ubuntu): assignee Chris J Arges (arges) Pilot6 (hanipouspilot)
2015-06-18 18:01:53 Pilot6 linux-firmware (Ubuntu): status Incomplete In Progress
2015-06-18 18:02:47 Pilot6 affects linux-firmware (Ubuntu) linux (Ubuntu)
2015-06-18 18:05:15 Pilot6 bug task added linux-firmware (Ubuntu)
2015-06-18 18:05:27 Pilot6 linux-firmware (Ubuntu): status New Confirmed
2015-06-18 21:42:28 Alberto Salvia Novella linux-firmware (Ubuntu): importance Undecided Medium
2015-06-18 21:42:37 Alberto Salvia Novella linux-firmware (Ubuntu): status Confirmed In Progress
2015-06-18 21:42:47 Alberto Salvia Novella linux-firmware (Ubuntu): assignee Pilot6 (hanipouspilot)
2015-06-18 22:13:19 Pilot6 linux-firmware (Ubuntu): status In Progress Confirmed
2015-06-18 22:14:36 Pilot6 linux-firmware (Ubuntu): assignee Pilot6 (hanipouspilot)
2015-07-23 15:22:14 Andy Whitcroft linux (Ubuntu): status In Progress Fix Committed
2015-07-23 19:43:14 Launchpad Janitor linux (Ubuntu): status Fix Committed Fix Released
2015-07-28 17:09:02 Luis Henriques nominated for series Ubuntu Vivid
2015-07-28 17:09:02 Luis Henriques bug task added linux (Ubuntu Vivid)
2015-07-28 17:09:02 Luis Henriques bug task added linux-firmware (Ubuntu Vivid)
2015-07-28 17:09:11 Luis Henriques linux (Ubuntu Vivid): status New Fix Committed
2015-08-05 01:05:37 Launchpad Janitor branch linked lp:ubuntu/trusty-proposed/linux-lts-vivid
2015-08-05 18:14:31 Brad Figg tags ath3k bluetooth kernel-da-key patch utopic vivid ath3k bluetooth kernel-da-key patch utopic verification-needed-trusty vivid
2015-08-05 18:24:11 Brad Figg tags ath3k bluetooth kernel-da-key patch utopic verification-needed-trusty vivid ath3k bluetooth kernel-da-key patch utopic verification-needed-trusty verification-needed-vivid vivid
2015-08-07 10:56:29 Launchpad Janitor linux-firmware (Ubuntu Vivid): status New Confirmed
2015-08-10 16:49:39 Brad Figg tags ath3k bluetooth kernel-da-key patch utopic verification-needed-trusty verification-needed-vivid vivid ath3k bluetooth kernel-da-key patch utopic verification-done-trusty verification-done-vivid vivid
2015-08-11 10:57:56 Pilot6 tags ath3k bluetooth kernel-da-key patch utopic verification-done-trusty verification-done-vivid vivid ath3k bluetooth kernel-da-key patch utopic verification-done-trusty verification-failed-vivid vivid
2015-08-11 12:56:32 Seth Forshee bug added subscriber Seth Forshee
2015-08-17 18:34:02 Launchpad Janitor linux (Ubuntu Vivid): status Fix Committed Fix Released
2015-08-17 18:34:02 Launchpad Janitor linux (Ubuntu Vivid): status Fix Committed Fix Released
2015-09-01 08:59:52 Raphaël Jakse attachment added ar9462 dkms module for linux 3.13 to support the 0x04ca:0x300d device https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1394368/+attachment/4455590/+files/ar9462-dkms_1.0_all.deb
2015-09-05 09:06:24 Jukka Niiranen attachment added Terminal command and it's outcome plus make.log file in one zip. https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1394368/+attachment/4457773/+files/terminal_output_and_makelog.zip