[Bug 1948502] Re: TP-Link UB500 Bluetooth USB adapter not working properly

2021-10-23 Thread Pilot6
The device should be added to btusb.c /* Tp-Link UB500 */ { USB_DEVICE(0x2357, 0x0604), .driver_info = BTUSB_REALTEK }, The chip is supported, but the ID is not there. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
Also this can be quite easily be added to Linux kernel. But it needs some testing for different models. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
@mohamed Yes, it is a little "hard" to click, I also never use it while normally using the touchpad. But in this case it seems perfect. it prevents accidentally enabling the numpad, etc. I completely switched to clicking and it seems good. You can post this solution for testing by other people.

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
@mohamed Did you try it? It shouldn't matter where you click. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 To manage

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
No, it doesn't mean that simple clicking will disable the touchpad. We match the area and the click. If you replace BTN_TOOL_FINGER with BTN_LEFT, you'll see it. Some small changes will be needed to polish. -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
@mohamed-badaoui It works with clicks. The event is BTN_LEFT. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 To manage

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
@mohamed-badaoui I think they have the click feature. The event is BTN_LEFT. I tested it and it works. I think it is a good idea to use it for turning it on. I don't know how it works in Windows. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-04 Thread Pilot6
@mohamed-badaoui I confirm the script works for X412DA laptop. I have a small suggestion. Change touchpad actions from taps to clicks. That will solve the problem with accidentally turning it on, etc. At least the toggle button. -- You received this bug notification because you are a member of

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-04-03 Thread Pilot6
@mohamed-badaoui A real solution will be to get keyboard events directly from the touchpad. Your script interprets clicks as keyboard events depending on an area. These touchpads declare themselves as keyboards to i2c, that means that most likely they can send the events. This would be a perfect

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-16 Thread Pilot6
If the touchpad firmware can't do it by itself, or we can't find a way to enable it, it is not too difficult to write a kernel driver that will use touchpad events and convert them into keyboard events. Another option is to create a user space driver, like xderver-xorg- input-libinput,

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-16 Thread Pilot6
@clunphumb My guess is that some command is send through i2c during Windows boot process when the driver detects the device. This command enables the keyboard. Then the button at the upper right corner starts working as a NumLock button. You are catching another command that lights up the

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread Pilot6
I confirm that the command works for me too. But the numberpad doesn't seem to send input events. In this state a python script should work, but it is not a way of doing it properly. The numberpad should work as a keyboard. It is detected already as one. Maybe another command is needed to

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread Pilot6
@clunphumb This is a progress. The numpad is detected as a keyboard. If you enable NumLick there it may start working. In this case it won't be too hard to do a kernel patch. But now I am too busy these days to dig into it. Probably next month I will be able to look into it. -- You received this

[Bug 1878045] Re: doing dist-upgrade got error related do Broadcom

2021-01-17 Thread Pilot6
sudo apt install broadcom-sta-dkms is enough. You don't need all 3 packages. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1878045 Title: doing dist-upgrade got error related do Broadcom To

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Pilot6
@turboconnard Asus won't help. Their policy is not to support Linux. It can be resolved only by someone who can hack the Windows driver. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title:

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Pilot6
@turboconnard That repo is not useful. It is a python prog that has nothing to do with the touchpad features. It emulates the touchpad capabilities. It can be done on any touchpad. The only way to get the backlight on and us the fetaure properly is to find out how to enable it. -- You received

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-18 Thread Pilot6
I got a link from kernel maintainers to a tool that can help to hack Windows i2c bus. https://github.com/bentiss/SimplePeripheralBusProbe If anyone wants to try to get the command, it will be very helpful. -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-17 Thread Pilot6
On my x412da the touchpad is detected as 3 input devices: ELAN1401:00 04F3:30F2 Touchpad ELAN1401:00 04F3:30F2 Mouse ELAN1401:00 04F3:30F2 Keyboard The first one works as a touchpad. The other two don't. The keyboard is the device we need to enable the numpad. It has the LED detected even with

[Bug 1818127] Re: After a recent update grub menu is always on

2019-02-28 Thread Pilot6
*** This bug is a duplicate of bug 1815002 *** https://bugs.launchpad.net/bugs/1815002 ** This bug has been marked a duplicate of bug 1815002 quick-boot-lvm.patch caused regression - menu always appear if root is on Btrfs -- You received this bug notification because you are a member of

[Bug 1818127] Re: After a recent update grub menu is always on

2019-02-28 Thread Pilot6
/etc/default/grub # If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT=0 GRUB_HIDDEN_TIMEOUT=0 GRUB_TIMEOUT_STYLE=hidden GRUB_TIMEOUT=0

[Bug 1818127] [NEW] After a recent update grub menu is always on

2019-02-28 Thread Pilot6
Public bug reported: I have only Xubuntu installed. After some upgrade grub menu always appears on boot. GRUB_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT=0 are ignored. Timeout is set for 30 sec whatever I try. ProblemType: Bug DistroRelease: Ubuntu 18.04 Package: grub-efi-amd64-bin 2.02-2ubuntu8.12

[Bug 1775443] Re: Ubuntu 18.04 Bluetooth Crash

2018-06-06 Thread Pilot6
** Also affects: linux (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1775443 Title: Ubuntu 18.04 Bluetooth Crash To manage notifications about

[Bug 1638862] Re: [Dell Latitude E5460] bluetooth is not supported on 16.04.1.

2017-12-17 Thread Pilot6
You can send a patch to the git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux- firmware.git tree. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1638862 Title: [Dell Latitude E5460]

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2017-10-09 Thread Pilot6
This DKMS package was never supposed to work on any other kernel but the 4.4. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542743 Title: Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu

[Bug 1718010] Re: Atheros AR9285 bluetooth in HP Probook 4330s not working

2017-09-18 Thread Pilot6
** Changed in: linux-hwe (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1718010 Title: Atheros AR9285 bluetooth in HP Probook 4330s not working To manage

[Bug 1718010] Re: Atheros AR9285 bluetooth in HP Probook 4330s not working

2017-09-18 Thread Pilot6
ath9k is not relevant. The problem is that ath3k is not loading for some reason. I don't see the fill dmesg output. It's probably because the 4.10 kernel has not been added fot xenial here. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1708852] Re: Touchpad not detected

2017-09-03 Thread Pilot6
I updated module version so it is. https://launchpad.net/~hanipouspilot/+archive/ubuntu/ppa/+files/elantech-0608-dkms_0.2_all.deb -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1708852 Title:

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-08-30 Thread Pilot6
Fixed in zesty http://kernel.ubuntu.com/git/ubuntu/ubuntu- zesty.git/commit/?id=9a84078d73ffbe009f394fa06d3a5112d0bf5fe5 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843 Title: Bluetooth

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-08-30 Thread Pilot6
@Matteo, This module has been built for the 4.4 kernel. It is not compatible with the 4.10 one. And you don't need it, because the patch is already there. It is in Ubuntu kernel 4.10.0-32 So remove this package. ** Changed in: linux (Ubuntu) Status: In Progress => Fix Released -- You

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-08-30 Thread Pilot6
Fixed in xenial http://kernel.ubuntu.com/git/ubuntu/ubuntu- xenial.git/commit/?id=8405415606fa946702a3401cd64d418f48886ba7 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843 Title: Bluetooth

[Bug 1708852] Re: Touchpad not detected

2017-08-21 Thread Pilot6
I've built a DKMS module as a workaround. Install it by wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/ppa/+files/elantech-0608-dkms_0.1_all.deb sudo dpkg -i elantech-0608-dkms_0.1_all.deb -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1708692] Re: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

2017-08-08 Thread Pilot6
** Tags removed: ideapad lenovo ** Tags added: cherry-pick realtek -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1708692 Title: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY) To

[Bug 1708692] [PATCH] Bluetooth: Add support of 13d3:3494 RTL8723BE device

2017-08-08 Thread Pilot6
T: Bus=02 Lev=01 Prnt=01 Port=03 Cnt=03 Dev#= 4 Spd=12 MxCh= 0 D: Ver= 2.10 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs= 1 P: Vendor=13d3 ProdID=3494 Rev= 2.00 S: Manufacturer=Realtek S: Product=Bluetooth Radio S: SerialNumber=00e04c01 C:* #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=500mA I:* If#= 0 Alt= 0

[Bug 1708692] Re: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

2017-08-08 Thread Pilot6
File transfers is a different issue. You can search or ask at AskUbuntu. I will send the patch upstream. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1708692 Title: Bluetooth not working - Ubuntu

[Bug 1708692] Re: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

2017-08-07 Thread Pilot6
) => Pilot6 (hanipouspilot) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1708692 Title: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY) To manage notifications about this bug

[Bug 1708692] Re: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

2017-08-05 Thread Pilot6
@Kai-Heng This is not a perfect way of testing for a regular user. The 4.13 kernel may break something like proprietary video drivers. In such cases I usually build a DKMS deb against the current Ubuntu kernel (4.10 in this case). That will be a smooth testing and will give a temorary fix for

Re: [Bug 1708692] Re: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

2017-08-05 Thread Pilot6
e anymore information here. > > As Pilot6 pointed out, you need to add the device id to btusb.c: > > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c > index fa24d693af24..e331e212f5fc 100644 > --- a/drivers/bluetooth/btusb.c > +++ b/drivers/bluetooth/btusb.c >

[Bug 1708692] Re: Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

2017-08-04 Thread Pilot6
The issue is quite clear. The VID and PID of the BT has to be added upstream. Next week I will build a test module. ** Changed in: linux (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1695641] [NEW] Randomly get only IPV6 address on Wi-Fi after suspend

2017-06-03 Thread Pilot6
reedesktop/NetworkManager/Devices/0 Pilot6 49953f06-beea-41f6-be47-bb4bb41bf599 /org/freedesktop/NetworkManager/ActiveConnection/51 eth0ethernet unavailable /org/freedesktop/NetworkManager

[Bug 1694160] Re: Bluetooth rtl8723be

2017-05-29 Thread Pilot6
Upgrade the kernel to 4.8 by sudo apt install linux-generic-hwe-16.04 and reboot. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1694160 Title: Bluetooth rtl8723be To manage notifications about

[Bug 1451233] Re: 10ec:b723 [Lenovo B5400] Realtek RTL8723BE drops connection until reboot

2017-03-04 Thread Pilot6
I confirm that. I am testing a new laptop with RTL8723BE since Tuesday. It is flawless with the 4.8 kernel. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1451233 Title: 10ec:b723 [Lenovo B5400]

[Bug 1653843] [PATCH] Bluetooth: Add another AR3012 04ca:3018 device

2017-01-05 Thread Pilot6
T: Bus=01 Lev=01 Prnt=01 Port=07 Cnt=04 Dev#= 5 Spd=12 MxCh= 0 D: Ver= 1.10 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs= 1 P: Vendor=04ca ProdID=3018 Rev=00.01 C: #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA I: If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb I: If#= 1 Alt= 0 #EPs= 2

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-01-04 Thread Pilot6
I will send a patch upstream and it should get into Ubuntu stable kenels after a while. The headset problem must be related to some user space issue. I do not use BT sound, so I can't help. Anyway this issue looks to be solved. You can search bluez bug reports, or create a new one. But in most

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-01-04 Thread Pilot6
After it is available the link will be https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files /btusb-lp1653843-dkms_0.2_all.deb -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-01-04 Thread Pilot6
I made a typo in the source code. It was late at night. I am building another version. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843 Title: Bluetooth 04ca:3018 not working correctly To

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-01-04 Thread Pilot6
You need to disable Secure Boot in BIOS. It looks like the module did not install. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843 Title: Bluetooth 04ca:3018 not working correctly To manage

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-01-03 Thread Pilot6
Run in a terminal (the module will appear in 15-30 minutes. wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files /btusb-lp1653843-dkms_0.1_all.deb sudo dpkg -i btusb-lp1653843-dkms_0.1_all.deb Then turn the computer off, then turn it on. The BT device should be working. If

[Bug 1653843] Re: Bluetooth 04ca:3018 not working correctly

2017-01-03 Thread Pilot6
** Summary changed: - Bluetooth not working correctly + Bluetooth 04ca:3018 not working correctly -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843 Title: Bluetooth 04ca:3018 not working

[Bug 1653843] Re: Bluetooth not working correctly

2017-01-03 Thread Pilot6
** Changed in: linux (Ubuntu) Assignee: (unassigned) => Pilot6 (hanipouspilot) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653843 Title: Bluetooth not working correctly To man

[Bug 1653274] Re: [HP ProBook 4540s] Qualcomm Atheros bluetooth properly works with Ubuntu 16.04 LiveUSB but not on a fresh install

2016-12-31 Thread Pilot6
Please add the output of rfkill list -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1653274 Title: [HP ProBook 4540s] Qualcomm Atheros bluetooth properly works with Ubuntu 16.04 LiveUSB but not

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-31 Thread Pilot6
The 0.1~4.8 вуи did not install properly, because I forgot to increment module version. now It should be OK. ** Description changed: Since some Versions of Linux Kernel and Ubuntu Releases this problem exists. I am now running ubuntu 16.04 prerelease and still have the same problem.

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-31 Thread Pilot6
The patch file error is because I did not remove the ID from ath3k.c, but it does not matter. Just ignore it. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542743 Title: Bluetooth: Patch file not

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-31 Thread Pilot6
Install the last deb file. I fixed the issue with the module version. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542743 Title: Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu To

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-31 Thread Pilot6
I fixed the deb module version. Without it it does not install. https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files /btusb-lp1542743-dkms_0.2~4.8_all.deb -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-31 Thread Pilot6
Your adapter is not Rome. Remove that deb. You need to update linux- firmware. Your problem is not related to this but report. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542743 Title:

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-30 Thread Pilot6
I uploaded the 4.8 version of this package. After it builds it will be available at https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files /btusb-lp1542743-dkms_0.1~4.8_all.deb -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-30 Thread Pilot6
** Description changed: Since some Versions of Linux Kernel and Ubuntu Releases this problem exists. I am now running ubuntu 16.04 prerelease and still have the same problem. Bluetooth does not work with the atheros device on msi gt 72 2qd notebook. - WORKAROUND FOR

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-12-30 Thread Pilot6
My DKMS package was made for the 4.4 kernel. It does not build for 4.8. To get it work on 4.8 you need to patch the btusb.c from that kernel. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542743

[Bug 1638862] Re: [Dell Latitude E5460] bluetooth is not supported on 16.04.1.

2016-12-18 Thread Pilot6
This is a firmware loading issue. The kernel looks for intel/ibt-11-4.sfi, but the linux-firmware has 11-5 and 11-16. It should be fixed in one place or the other. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1597961] Re: Qualcomm Atheros Bluetooth 4.0 not working on Ubuntu 16.04

2016-10-28 Thread Pilot6
This is a pretty standard 04ca:3014 BT adapter according to dmesg. But then something happens and the device disappears from the system. This must be a platform specific issue. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-21 Thread Pilot6
** Description changed: USB device 04ca:3011 is a combo Atheros device's bluetooth adapter. In back of laptop the adapter's label states as: PPD-QCNFA34AC + + WORKAROUND: + + wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1535802-dkms_0.1_all.deb + sudo

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-21 Thread Pilot6
The patch has been sent upstream. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1535802 Title: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work To manage notifications about this bug go to:

[Bug 1535802] [PATCH] Bluetooth: Add a new 04ca:3011 QCA_ROME device

2016-09-21 Thread Pilot6
BugLink: https://bugs.launchpad.net/bugs/1535802 T: Bus=01 Lev=02 Prnt=02 Port=04 Cnt=01 Dev#= 3 Spd=12 MxCh= 0 D: Ver= 1.10 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs= 1 P: Vendor=04ca ProdID=3011 Rev=00.01 C: #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA I: If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon)

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-21 Thread Pilot6
I made a dkms btusb module for @fagor and it is tested successfully. wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1535802-dkms_0.1_all.deb sudo dpkg -i btusb-lp1535802-dkms_0.1_all.deb -- You received this bug notification because you are a member of

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-21 Thread Pilot6
Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb I: If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb After he successfully tests the patch I will send it upstream. ** Changed in: linux (Ubuntu) Assignee: (unassigned) => Pilot6 (hanipouspilot) ** Changed in: linux (Ubu

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-20 Thread Pilot6
Christopher, Sending issues upstream without a patch against bluetooth-next tree does not work ;-) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1535802 Title: Bluetooth 04ca:3011 [Asus Aspire

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-20 Thread Pilot6
A typo fix. The command is usb-devices | awk '/3011/' RS= -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1535802 Title: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work To manage

[Bug 1535802] Re: Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work

2016-09-20 Thread Pilot6
If anyone affected by this bug adds the output of usb-debices | awk '/3011/' RS= I will send this patch upstream. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1535802 Title: Bluetooth 04ca:3011

[Bug 1621967] [NEW] Webbrowser-app crashes on nvidia-361

2016-09-09 Thread Pilot6
Public bug reported: Webbrowser-app crashes with [0909/213244:ERROR:oxide_qt_gl_context_dependent.cc(82)] Unable to create adopted GL context for platform: xcb - unexpected result from QPlatformNativeInterface::nativeResourceForContext shm_open() failed: Отказано в доступе

[Bug 1557026] Re: [SRU]Network Manager sets powersave off by default in xenial

2016-09-03 Thread Pilot6
If a user have a reasonable number of connections, they can edit settings per connection manually. Each connection has a config file in /etc/NetworkManager/system- connections/ They can add powersave=0 to the [wifi] section of each file. I did the reverse and had to add "powersave=1" before

[Bug 1557026] Re: [SRU]Network Manager sets powersave off by default in xenial

2016-09-03 Thread Pilot6
Christopher, The problem is that there is no global setting for that. You can enable or disable PM in NM per connection. Global settings are possible if you are not using NM. A perfect solution is to make that setting in NM config. It is very easy yo do. -- You received this bug notification

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-08-29 Thread Pilot6
@crystal Create a new but report. This report is not about any AR9565, but about a specific PID. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542944 Title: QCA9565 / AR9565 bluetooth not work

[Bug 1616535] Re: Bluetooth module not working

2016-08-25 Thread Pilot6
You can always remove the package by sudo dpkg -r btusb-lp1616535-dkms But it will be good if you re-install Ubuntu and test this module on a clean system. If it still does not work, please run dmesg > dmesg.txt and attach the dmesg.txt file here. -- You received this bug notification

[Bug 1616535] Re: Bluetooth module not working

2016-08-24 Thread Pilot6
If DKMS is not installed yet, first install it by sudo apt install dkms -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1616535 Title: Bluetooth module not working To manage notifications about

[Bug 1616535] Re: Bluetooth module not working

2016-08-24 Thread Pilot6
I built a test module. You can install it this way: wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files /btusb-lp1616535-dkms_0.1_all.deb sudo dpkg -i btusb-lp1616535-dkms_0.1_all.deb These are two commands. Install the module and reboot. Please report if the BT works.

[Bug 1616535] Re: Bluetooth module not working

2016-08-24 Thread Pilot6
** Changed in: linux (Ubuntu) Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1616535 Title: Bluetooth module not working To manage notifications about this

[Bug 1616535] Re: Bluetooth module not working

2016-08-24 Thread Pilot6
** Changed in: linux (Ubuntu) Assignee: (unassigned) => Pilot6 (hanipouspilot) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1616535 Title: Bluetooth module not working To man

[Bug 1568590] Re: 13d3:3472 Bluetooth stopped working

2016-08-04 Thread Pilot6
This has been fixed in wily kernel http://kernel.ubuntu.com/git/ubuntu/ubuntu- wily.git/commit/drivers/bluetooth?id=c065d25c20c4bf20b9b1f6a4edc595a6af8608bd In Xenial http://kernel.ubuntu.com/git/ubuntu/ubuntu- xenial.git/commit/drivers/bluetooth?id=747a4b4f24b030f85562d6a326ece585e5fede02 **

[Bug 1557026] Re: [SRU]Network Manager sets powersave off by default in xenial

2016-07-13 Thread Pilot6
** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1557026 Title: [SRU]Network Manager sets powersave off by default in xenial To

[Bug 1600623] Re: Bluetooth adapter is not supported by Linux kernel yet

2016-07-11 Thread Pilot6
The patch has been submitted and applied to bluetooth-next tree. https://lkml.org/lkml/2016/7/11/746 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1600623 Title: Bluetooth adapter is not supported

[Bug 1600623] Re: Bluetooth adapter is not supported by Linux kernel yet

2016-07-11 Thread Pilot6
) Status: Confirmed => In Progress ** Changed in: linux (Ubuntu) Assignee: (unassigned) => Pilot6 (hanipouspilot) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1600623 Title: Blu

[Bug 1600623] Re: Bluetooth adapter is not supported by Linux kernel yet

2016-07-10 Thread Pilot6
This looks like a new AR3012 device. Tomorrow I will build a test module for you. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1600623 Title: Bluetooth adapter is not supported by Linux kernel yet

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-07-05 Thread Pilot6
The firmware in Xenial has the fix now. ** Changed in: linux-firmware (Ubuntu) Status: In Progress => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542944 Title: QCA9565 /

[Bug 1596406] Re: Bluetooth disabled

2016-07-04 Thread Pilot6
This is not related, but I got all information I needed. Thx. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1596406 Title: Bluetooth disabled To manage notifications about this bug go to:

[Bug 1596406] Re: Bluetooth disabled

2016-07-04 Thread Pilot6
Can you confirm that the BT works without any dkms modules? I do not have the hardwae and need to know if the new kernels really work with it. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1596406

[Bug 1597961] Re: Qualcomm Atheros Bluetooth 4.0 not working on Ubuntu 16.04

2016-07-04 Thread Pilot6
What is this in your lsusb Bus 002 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Do you use some external USB device pluged to USB? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1596406] Re: Bluetooth disabled

2016-06-28 Thread Pilot6
I can't help. This device is officially supported by new kernels. I know that BT does not seem to work. I do not have a device to test. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1596406 Title:

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-06-28 Thread Pilot6
** Description changed: Since some Versions of Linux Kernel and Ubuntu Releases this problem exists. I am now running ubuntu 16.04 prerelease and still have the same problem. Bluetooth does not work with the atheros device on msi gt 72 2qd notebook. + + WORKAROUND: + + sudo

[Bug 1596406] Re: Bluetooth disabled

2016-06-28 Thread Pilot6
Oh, I gave you a link for a wrong deb, that is for 4.2. Remove the old one and install this https://launchpad.net/~hanipouspilot/+archive/ubuntu/rtlwifi/+files /rtlwifi-new-dkms_0.5_all.deb And I suggest removing kernel 4.2, since grub with always boot with the latest kernel. -- You received

[Bug 1542743] Re: Bluetooth: Patch file not found ar3k/AthrBT_0x00000200.dfu

2016-06-28 Thread Pilot6
We see that it is not easy to resolve because of Qualcomm team fault. So I made a DKMS package that can be used to fix this issue. https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files /btusb-lp1542743-dkms_0.1_all.deb This package will build btusb.ko with the patch that changes

[Bug 1596406] Re: Bluetooth disabled

2016-06-28 Thread Pilot6
For kernel 3.19 that you have I made a fix. Install DKMS by sudo apt-get install dkms and install these debs: https://launchpad.net/~hanipouspilot/+archive/ubuntu/rtlwifi/+files /rtlwifi-new-dkms_0.9~wily_all.deb https://launchpad.net/~hanipouspilot/+archive/ubuntu/rtlwifi/+files

[Bug 1594012] [NEW] Pulseaudio cookie should be deleted on upgrade from trusty to xenial

2016-06-18 Thread Pilot6
/controlC1: pilot6 2644 F pulseaudio /dev/snd/controlC0: pilot6 2644 F pulseaudio CurrentDesktop: Unity Date: Sat Jun 18 21:54:50 2016 InstallationDate: Installed on 2013-10-17 (975 days ago) InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424) Sou

[Bug 1542564] Re: Atheros AR9462 Bluetooth cannot detect other devices

2016-05-06 Thread Pilot6
** Changed in: linux (Ubuntu) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542564 Title: Atheros AR9462 Bluetooth cannot detect other devices To

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-04-25 Thread Pilot6
damien, These are different kernels. You tested it on xenial kernel. So you can change to "verification-done-xenial". But in this case the verification is not so important, because the fix came from upstream and it is very simple. You can try other kernels too. But since you are not very

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-04-25 Thread Pilot6
You can permanently enable BT coexistence by sudo tee /etc/modprobe.d/ath9k.conf <<< "options ath9k btcoex_enable=1" -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542944 Title: QCA9565 / AR9565

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-04-25 Thread Pilot6
The co-existence issue is known. But the default for AR3012 is disabled, because it caused issues on some adapters. And also not all Atheros Wi-Fi adapters have bluetooth chips. It can be enabled manually as you did. Regarding enabling it by default or making some quirks to get it enabled for

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-04-24 Thread Pilot6
linux-firmware should be updated for wily as well. My patch to upstream has been committed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1542944 Title: QCA9565 / AR9565 bluetooth not work To

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-04-24 Thread Pilot6
damien, My patch has been added to kernel 4.2.0-36. It is as simple as that. If you boot with that kernel, the BT should work. You have an outdated 4.2.0-27 that is obsolete even without using "proposed". This is completely another issue and is out of scope of this bug report. You can't update

[Bug 1542944] Re: QCA9565 / AR9565 bluetooth not work

2016-04-23 Thread Pilot6
damien, It looks like you did not updated the kernel. The kernel in "proposed" is 4.2.0-36. Did you manually install 4.2.0-27 kernel? Is linux-generic-lts-wily installed? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1568590] Re: Bluetooth stopped working

2016-04-18 Thread Pilot6
Oh, I see it has been committed before ckt7. So it should work there as well. ** Tags added: kernel-fixed-upstream -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1568590 Title: Bluetooth stopped

  1   2   3   4   5   6   7   8   9   >