[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.
https://bugs.launchpad.net/bugs/1948502

Title:
  TP-Link UB500 Bluetooth USB adapter not working properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1948502/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 in ASUS Zenbook 14

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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.

I am using clicking for other buttons too, but this doesn't matter much.
But the top right corner seems to be the correct solution. How does it
work on Windows?

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1810183

Title:
  numpad on touchpad doesn't work in ASUS Zenbook 14

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 to Ubuntu.
https://bugs.launchpad.net/bugs/1810183

Title:
  numpad on touchpad doesn't work in ASUS Zenbook 14

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 solution, because each device should know its
areas, available keys, etc.

The only thing to develop will be to a add detection to the kernel code,
and sending commands to enable it.

If this is not possible, then I can't see an easy clean solution. We
will need to have a user space driver, that will do the same as the
python script, but it will depend on each piece of hardware. And also
there should be different drivers for xorg and wyland. That looks too
complex to me and will never get into the distro.

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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, xserver-xorg-input-evdev, etc that will catch touchpad
events and work similarly to the python script.

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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
numbers. It is sent when that virtual key is pressed.

But things may be worse, and the firmware can't work by itself. There
may be an analog of the python script in the 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:
  numpad on touchpad doesn't work in ASUS Zenbook 14

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 enable input.

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1878045/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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:
  numpad on touchpad doesn't work in ASUS Zenbook 14

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1810183

Title:
  numpad on touchpad doesn't work in ASUS Zenbook 14

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 the correct trigger: NumLock.

The problem is we don't know what the Windows driver sends to the
touchpad through i2c to enable this mode. We need either to hack the i2c
bus on Windows, or get the information fro Elan people. I am afraid that
they won't provide anything.

If anyone has enough knowledge of Windows to catch the command, I could
start working on support in Linux.

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1818127

Title:
  After a recent update grub menu is always on

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1818127/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""


/boot/grub/grub.cfg

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  # GRUB lacks write support for btrfs, so recordfail support is disabled.
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
insmod all_video
  else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod btrfs
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
2229938e-add1-45dd-90b0-137510b4f216
else
  search --no-floppy --fs-uuid --set=root 2229938e-add1-45dd-90b0-137510b4f216
fi
font="/@/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=ru_RU
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
set timeout_style=hidden
set timeout=0
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 0 ; then
set timeout=0
  fi
fi
if [ $grub_platform = efi ]; then
  set timeout=30
  if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=1
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
  if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
  else
set linux_gfx_mode=text
  fi
else
  set linux_gfx_mode=text
fi
  else
set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os 
$menuentry_id_option 'gnulinux-simple-2229938e-add1-45dd-90b0-137510b4f216' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod btrfs
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
2229938e-add1-45dd-90b0-137510b4f216
else
  search --no-floppy --fs-uuid --set=root 
2229938e-add1-45dd-90b0-137510b4f216
fi
linux   /@/boot/vmlinuz-4.15.0-45-generic 
root=UUID=2229938e-add1-45dd-90b0-137510b4f216 ro rootflags=subvol=@  quiet 
splash $vt_handoff
initrd  /@/boot/initrd.img-4.15.0-45-generic
}
submenu 'Дополнительные параметры для Ubuntu' $menuentry_id_option 
'gnulinux-advanced-2229938e-add1-45dd-90b0-137510b4f216' {
menuentry 'Ubuntu, с Linux 4.15.0-45-generic' --class ubuntu --class 
gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.15.0-45-generic-advanced-2229938e-add1-45dd-90b0-137510b4f216' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
insmod part_gpt
 

[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
ProcVersionSignature: Ubuntu 4.15.0-45.48-generic 4.15.18
Uname: Linux 4.15.0-45-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: amd64
CurrentDesktop: XFCE
Date: Thu Feb 28 21:04:35 2019
InstallationDate: Installed on 2018-09-16 (165 days ago)
InstallationMedia: Xubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
SourcePackage: grub2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1818127

Title:
  After a recent update grub menu is always on

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1818127/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1775443/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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] bluetooth is not supported on 16.04.1.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1638862/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1718010/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 Ubuntu.
https://bugs.launchpad.net/bugs/1718010

Title:
  Atheros AR9285 bluetooth in HP Probook 4330s not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1718010/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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:
  Touchpad not detected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 04ca:3018 not working correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 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 notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 04ca:3018 not working correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1708852

Title:
  Touchpad not detected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708692/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=81(I) Atr=03(Int.) MxPS= 16 Ivl=1ms
E: Ad=02(O) Atr=02(Bulk) MxPS= 64 Ivl=0ms
E: Ad=82(I) Atr=02(Bulk) MxPS= 64 Ivl=0ms
I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=03(O) Atr=01(Isoc) MxPS= 0 Ivl=1ms
E: Ad=83(I) Atr=01(Isoc) MxPS= 0 Ivl=1ms
I: If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=03(O) Atr=01(Isoc) MxPS= 9 Ivl=1ms
E: Ad=83(I) Atr=01(Isoc) MxPS= 9 Ivl=1ms
I: If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=03(O) Atr=01(Isoc) MxPS= 17 Ivl=1ms
E: Ad=83(I) Atr=01(Isoc) MxPS= 17 Ivl=1ms
I: If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=03(O) Atr=01(Isoc) MxPS= 25 Ivl=1ms
E: Ad=83(I) Atr=01(Isoc) MxPS= 25 Ivl=1ms
I: If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=03(O) Atr=01(Isoc) MxPS= 33 Ivl=1ms
E: Ad=83(I) Atr=01(Isoc) MxPS= 33 Ivl=1ms
I: If#= 1 Alt= 5 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
E: Ad=03(O) Atr=01(Isoc) MxPS= 49 Ivl=1ms
E: Ad=83(I) Atr=01(Isoc) MxPS= 49 Ivl=1ms

Signed-off-by: Dmitry Tunin 
Cc: sta...@vger.kernel.org
---
 drivers/bluetooth/btusb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 24cc838..e1124ba 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -359,6 +359,7 @@ static const struct usb_device_id blacklist_table[] = {
{ USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
{ USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
{ USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
+   { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
 
/* Additional Realtek 8821AE Bluetooth devices */
{ USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
-- 
2.7.4

-- 
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 go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708692/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 17.04 (Lenovo Ideapad 100-15IBY)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708692/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2017-08-07 Thread Pilot6
So I built a test module. Install it by running:

wget 
https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1708692-dkms_0.1_all.deb
sudo dpkg -i btusb-lp1708692-dkms_0.1_all.deb

Reboot and test the bluetooth.

** 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/1708692

Title:
  Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708692/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 the reporter.

For reference this is my PPA with test modules.

https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth

-- 
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 go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708692/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2017-08-05 Thread Pilot6
@Kai-Heng I am at a vacation and have a limited internet access. I
think it makes sense to make a test module fot Oliver to test and then
send a patch upstream if it works.

2017-08-05 14:02 GMT+03:00 Kai-Heng Feng <kai.heng.f...@canonical.com>:
> apport-collect probably won't provide 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
> @@ -357,6 +357,7 @@ static const struct usb_device_id blacklist_table[] = {
> { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
> { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
> { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
> +   { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
>
> /* Additional Realtek 8821AE Bluetooth devices */
> { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1708692
>
> Title:
>   Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)
>
> Status in linux package in Ubuntu:
>   Confirmed
>
> Bug description:
>   I know there were some threads about the ideapad bluetooth already...
>   But the solution(s) did not work at my end so far.
>
>   Bluetooth seems to work (blueman is installed) But it won't find any
>   devices.
>
>   Here is the information on my system (according to what was requested
>   in earlier posts):
>
>   **uname -a**
>   Linux Desmodus 4.10.0-30-generic #34-Ubuntu SMP Mon Jul 31 19:38:17 UTC 
> 2017 x86_64 x86_64 x86_64 GNU/Linux
>
>   **lsb_release -a**
>   No LSB modules are available.
>   Distributor ID: Ubuntu
>   Description:Ubuntu 17.04
>   Release:17.04
>   Codename:   zesty
>
>   **lsusb**
>   Bus 001 Device 002: ID 8087:07e6 Intel Corp.
>   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>   Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
>   Bus 002 Device 004: ID 13d3:3494 IMC Networks
>   Bus 002 Device 003: ID 174f:1169 Syntek
>   Bus 002 Device 002: ID 1bcf:0535 Sunplus Innovation Technology Inc.
>   Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>
>   **hciconfig -a**
>   hci0:   Type: Primary  Bus: USB
>   BD Address: 80:A5:89:C6:12:8C  ACL MTU: 820:8  SCO MTU: 255:16
>   UP RUNNING PSCAN ISCAN
>   RX bytes:1746 acl:0 sco:0 events:118 errors:0
>   TX bytes:3782 acl:0 sco:0 commands:115 errors:0
>   Features: 0xff 0xff 0xff 0xfe 0xdb 0xff 0x7b 0x87
>   Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
>   Link policy: RSWITCH HOLD SNIFF PARK
>   Link mode: SLAVE ACCEPT
>   Name: 'Desmodus'
>   Class: 0x0c010c
>   Service Classes: Rendering, Capturing
>   Device Class: Computer, Laptop
>   HCI Version: 4.0 (0x6)  Revision: 0xb
>   LMP Version: 4.0 (0x6)  Subversion: 0x8723
>   Manufacturer: Realtek Semiconductor Corporation (93)
>
>   sudo cat /sys/kernel/debug/usb/devices | awk '/13d3/' RS=
>
>   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 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>   E:  Ad=81(I) Atr=03(Int.) MxPS=  16 Ivl=1ms
>   E:  Ad=02(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
>   E:  Ad=82(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms
>   I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>   E:  Ad=03(O) Atr=01(Isoc) MxPS=   0 Ivl=1ms
>   E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
>   I:  If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>   E:  Ad=03(O) Atr=01(Isoc) MxPS=   9 Ivl=1ms
>   E:  Ad=83(I) Atr=01(Isoc) MxPS=   9 Ivl=1ms
>   I:  If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>   E:  Ad=03(O) Atr=01(Isoc) MxPS=  17 Ivl=1ms
>   E:  Ad=83(I) Atr=01(Isoc) MxPS=  17 Ivl=1ms
>   I:  If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>   E:  Ad=03(O) Atr=01(Isoc) MxPS=  25 Ivl=1ms
>   E:  Ad=83(I) Atr=01(Isoc) MxPS=  25 Ivl=1ms
>   I:  If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>   E:  Ad=03(O) Atr=01(Isoc) MxPS=  33 Ivl=1ms
>   E:  Ad=83(I) Atr=01(Isoc) MxPS=  33 Ivl=1ms
>   I:  If#= 

[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.
https://bugs.launchpad.net/bugs/1708692

Title:
  Bluetooth not working - Ubuntu 17.04 (Lenovo Ideapad 100-15IBY)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1708692/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2017-06-03 Thread Pilot6
Public bug reported:

Randomly (in about 10% of cases) I do not get IPV4 address on the
wireless interface.

This problem is known at AskUbuntu. People ask why only Youtube, Google,
etc work after a suspend...

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: network-manager 1.2.6-0ubuntu0.16.04.1
ProcVersionSignature: Ubuntu 4.8.0-53.56~16.04.1-generic 4.8.17
Uname: Linux 4.8.0-53-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.6
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Jun  3 19:11:21 2017
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2016-02-29 (459 days ago)
InstallationMedia: Ubuntu 14.04.4 LTS "Trusty Tahr" - Release amd64 (20160217.1)
IpRoute:
 default via 192.168.1.1 dev wlan0  proto static  metric 600 
 169.254.0.0/16 dev wlan0  scope link  metric 1000 
 192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.140  metric 
600
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=true
 WWANEnabled=true
 WimaxEnabled=true
SourcePackage: network-manager
UpgradeStatus: Upgraded to xenial on 2016-03-12 (447 days ago)
mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2016-03-13T01:40:30.748775
nmcli-dev:
 DEVICE  TYPE  STATEDBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
  
 wlan0   wifi  connected/org/freedesktop/NetworkManager/Devices/0  
Pilot6  49953f06-beea-41f6-be47-bb4bb41bf599  
/org/freedesktop/NetworkManager/ActiveConnection/51 
 eth0ethernet  unavailable  /org/freedesktop/NetworkManager/Devices/1  --   
   ---- 
 
 lo  loopback  unmanaged/org/freedesktop/NetworkManager/Devices/2  --   
   ----
nmcli-nm:
 RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  WIFI  
   WWAN-HW  WWAN
 running  1.2.6connected  started  full  enabled enabled  
enabled  enabled  enabled

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1695641

Title:
  Randomly get only IPV6 address on Wi-Fi after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1695641/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1694160/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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] Realtek RTL8723BE drops connection until
  reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1451233/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb

Signed-off-by: Dmitry Tunin 
Cc: sta...@vger.kernel.org
---
 drivers/bluetooth/ath3k.c | 2 ++
 drivers/bluetooth/btusb.c | 1 +
 2 files changed, 3 insertions(+)

diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index fadba88..b793853 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c
@@ -94,6 +94,7 @@ static const struct usb_device_id ath3k_table[] = {
{ USB_DEVICE(0x04CA, 0x300f) },
{ USB_DEVICE(0x04CA, 0x3010) },
{ USB_DEVICE(0x04CA, 0x3014) },
+   { USB_DEVICE(0x04CA, 0x3018) },
{ USB_DEVICE(0x0930, 0x0219) },
{ USB_DEVICE(0x0930, 0x021c) },
{ USB_DEVICE(0x0930, 0x0220) },
@@ -162,6 +163,7 @@ static const struct usb_device_id ath3k_blist_tbl[] = {
{ USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
+   { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 2f633df..dd220fa 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -209,6 +209,7 @@ static const struct usb_device_id blacklist_table[] = {
{ USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
+   { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
{ USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
-- 
2.7.4

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 cases it
is being solved by some sound settings.

** 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/1653843

Title:
  Bluetooth 04ca:3018 not working correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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

Title:
  Bluetooth 04ca:3018 not working correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 it does not work, post the output of

dmesg | grep -i blue

-- 
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 notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 on a fresh install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1653274/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.
  
  Bluetooth does not work with the atheros device on  msi gt 72 2qd
  notebook.
  
  WORKAROUND FOR [0CF3:3004] DEVICE ONLY with kernel 4.4:
  
  sudo apt install dkms
  wget 
https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1542743-dkms_0.1_all.deb
  sudo dpkg -i btusb-lp1542743-dkms_0.1_all.deb
+ 
+ FOR KERNEL 4.8 A WORKAROUND DKMS DEB IS
+ 
+ https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files
+ /btusb-lp1542743-dkms_0.2~4.8_all.deb
  
  dmesg | grep Bluetooth:
  [2.655360] Bluetooth: Core ver 2.21
  [2.655373] Bluetooth: HCI device and connection manager initialized
  [2.655377] Bluetooth: HCI socket layer initialized
  [2.655379] Bluetooth: L2CAP socket layer initialized
  [2.655385] Bluetooth: SCO socket layer initialized
  [6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
  [6.612794] Bluetooth: BNEP filters: protocol multicast
  [6.612798] Bluetooth: BNEP socket layer initialized
  [9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
  [9.016882] Bluetooth: Loading patch file failed
  
  hwinfo | grep Bluetooth:
  <6>[6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    <6>[6.612794] Bluetooth: BNEP filters: protocol multicast
    <6>[6.612798] Bluetooth: BNEP socket layer initialized
    <3>[9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
    <3>[9.016882] Bluetooth: Loading patch file failed
  60: USB 00.0: 11500 Bluetooth Device
    Model: "Atheros AR3012 Bluetooth 4.0"
    Device: usb 0x3004 "AR3012 Bluetooth 4.0"
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: bluez 5.36-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  Date: Sun Feb  7 00:38:04 2016
  ExecutablePath: /usr/lib/bluetooth/bluetoothd
  InstallationDate: Installed on 2015-10-24 (105 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterestingModules: bnep btusb bluetooth
  MachineType: Micro-Star International Co., Ltd. GT72 2QD
  ProcEnviron:
   LANG=de_DE.UTF-8
   PATH=(custom, no user)
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-2-generic 
root=UUID=f7880b23-39b5-423a-bdbf-62b111783450 ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: Upgraded to xenial on 2016-02-02 (4 days ago)
  dmi.bios.date: 12/19/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E1781IMS.10I
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: MS-1781
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: REV:0.C
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Micro-Star International Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE1781IMS.10I:bd12/19/2014:svnMicro-StarInternationalCo.,Ltd.:pnGT722QD:pvrREV0.C:rvnMicro-StarInternationalCo.,Ltd.:rnMS-1781:rvrREV0.C:cvnMicro-StarInternationalCo.,Ltd.:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: GT72 2QD
  dmi.product.version: REV:0.C
  dmi.sys.vendor: Micro-Star International Co., Ltd.
  hciconfig:
  
  rfkill:
   0: phy0: Wireless LAN
    Soft blocked: yes
    Hard blocked: no

-- 
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 found ar3k/AthrBT_0x0200.dfu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.
https://bugs.launchpad.net/bugs/1542743

Title:
  Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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:
  Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 Ubuntu.
https://bugs.launchpad.net/bugs/1542743

Title:
  Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 [OCF3:3004] DEVICE ONLY:
+ WORKAROUND FOR [0CF3:3004] DEVICE ONLY with kernel 4.4:
  
  sudo apt install dkms
  wget 
https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1542743-dkms_0.1_all.deb
  sudo dpkg -i btusb-lp1542743-dkms_0.1_all.deb
  
  dmesg | grep Bluetooth:
  [2.655360] Bluetooth: Core ver 2.21
  [2.655373] Bluetooth: HCI device and connection manager initialized
  [2.655377] Bluetooth: HCI socket layer initialized
  [2.655379] Bluetooth: L2CAP socket layer initialized
  [2.655385] Bluetooth: SCO socket layer initialized
  [6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
  [6.612794] Bluetooth: BNEP filters: protocol multicast
  [6.612798] Bluetooth: BNEP socket layer initialized
  [9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
  [9.016882] Bluetooth: Loading patch file failed
  
  hwinfo | grep Bluetooth:
  <6>[6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    <6>[6.612794] Bluetooth: BNEP filters: protocol multicast
    <6>[6.612798] Bluetooth: BNEP socket layer initialized
    <3>[9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
    <3>[9.016882] Bluetooth: Loading patch file failed
  60: USB 00.0: 11500 Bluetooth Device
    Model: "Atheros AR3012 Bluetooth 4.0"
    Device: usb 0x3004 "AR3012 Bluetooth 4.0"
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: bluez 5.36-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  Date: Sun Feb  7 00:38:04 2016
  ExecutablePath: /usr/lib/bluetooth/bluetoothd
  InstallationDate: Installed on 2015-10-24 (105 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterestingModules: bnep btusb bluetooth
  MachineType: Micro-Star International Co., Ltd. GT72 2QD
  ProcEnviron:
   LANG=de_DE.UTF-8
   PATH=(custom, no user)
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-2-generic 
root=UUID=f7880b23-39b5-423a-bdbf-62b111783450 ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: Upgraded to xenial on 2016-02-02 (4 days ago)
  dmi.bios.date: 12/19/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E1781IMS.10I
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: MS-1781
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: REV:0.C
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Micro-Star International Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE1781IMS.10I:bd12/19/2014:svnMicro-StarInternationalCo.,Ltd.:pnGT722QD:pvrREV0.C:rvnMicro-StarInternationalCo.,Ltd.:rnMS-1781:rvrREV0.C:cvnMicro-StarInternationalCo.,Ltd.:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: GT72 2QD
  dmi.product.version: REV:0.C
  dmi.sys.vendor: Micro-Star International Co., Ltd.
  hciconfig:
  
  rfkill:
   0: phy0: Wireless LAN
    Soft blocked: yes
    Hard blocked: no

-- 
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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

Title:
  Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.
https://bugs.launchpad.net/bugs/1638862

Title:
  [Dell Latitude E5460] bluetooth is not supported on 16.04.1.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1638862/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.
https://bugs.launchpad.net/bugs/1597961

Title:
  Qualcomm Atheros Bluetooth 4.0 not working on Ubuntu 16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1597961/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 dpkg -i btusb-lp1535802-dkms_0.1_all.deb
+ 
  
  By default my kernel recognize as generic Bluetooth,
  I can switch on/off, make it visible,
  BUT actually it cannot see anything and no other devices can see it.
  
  However
  It works well (tested) as "QCA ROME chipset" so adding a line:
  
  { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
  
  in btusb.c (compile, install as module, and modprobe) made the trick.
  
  lsusb:
  Bus 003 Device 004: ID 04ca:3011 Lite-On Technology Corp.
  
  I added the diff file of drivers/bluetooth/btusb.c
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-23-generic 4.2.0-23.28
  ProcVersionSignature: Ubuntu 4.2.0-23.28-generic 4.2.6
  Uname: Linux 4.2.0-23-generic i686
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  mark   1476 F pulseaudio
   /dev/snd/controlC0:  mark   1476 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Jan 19 17:03:18 2016
  HibernationDevice: RESUME=UUID=66dc8cfd-62d6-411b-9edf-c509aac14318
  InstallationDate: Installed on 2015-10-26 (85 days ago)
  InstallationMedia: Ubuntu  "Wily" - Build i386 LIVE Binary 20151022-23:55
  MachineType: Acer Aspire V3-371
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-23-generic 
root=UUID=403e935b-5da2-4b34-8dd7-14f1c0cf0846 ro quiet splash
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-23-generic N/A
   linux-backports-modules-4.2.0-23-generic  N/A
   linux-firmware1.149.3
  SourcePackage: linux
  UdevLog: Error: [Errno 2] Nincs ilyen fájl vagy könyvtár: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/21/2015
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.28
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Aspire V3-371
  dmi.board.vendor: Acer
  dmi.board.version: V1.28
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: V1.28
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.28:bd08/21/2015:svnAcer:pnAspireV3-371:pvrV1.28:rvnAcer:rnAspireV3-371:rvrV1.28:cvnAcer:ct10:cvrV1.28:
  dmi.product.name: Aspire V3-371
  dmi.product.version: V1.28
  dmi.sys.vendor: Acer

** 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:
+ WORKAROUND for kernel 4.4:
  
  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
- 
  
  By default my kernel recognize as generic Bluetooth,
  I can switch on/off, make it visible,
  BUT actually it cannot see anything and no other devices can see it.
  
  However
  It works well (tested) as "QCA ROME chipset" so adding a line:
  
  { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
  
  in btusb.c (compile, install as module, and modprobe) made the trick.
  
  lsusb:
  Bus 003 Device 004: ID 04ca:3011 Lite-On Technology Corp.
  
  I added the diff file of drivers/bluetooth/btusb.c
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-23-generic 4.2.0-23.28
  ProcVersionSignature: Ubuntu 4.2.0-23.28-generic 4.2.6
  Uname: Linux 4.2.0-23-generic i686
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  mark   1476 F pulseaudio
   /dev/snd/controlC0:  mark   1476 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Jan 19 17:03:18 2016
  HibernationDevice: RESUME=UUID=66dc8cfd-62d6-411b-9edf-c509aac14318
  InstallationDate: Installed on 2015-10-26 (85 days ago)
  InstallationMedia: Ubuntu  "Wily" - Build i386 LIVE Binary 20151022-23:55
  MachineType: Acer Aspire V3-371
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-23-generic 
root=UUID=403e935b-5da2-4b34-8dd7-14f1c0cf0846 ro quiet splash
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-23-generic N/A
   linux-backports-modules-4.2.0-23-generic  N/A
   linux-firmware1.149.3
  SourcePackage: linux
  UdevLog: Error: [Errno 2] Nincs ilyen fájl vagy könyvtár: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/21/2015
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.28
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Aspire V3-371
  dmi.board.vendor: Acer
  dmi.board.version: V1.28
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 

[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:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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) Sub=01 Prot=01 Driver=btusb
I:  If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb

Signed-off-by: Dmitry Tunin 
Cc: sta...@vger.kernel.org
---
 drivers/bluetooth/btusb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 9ebd73d..6bd63b8 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -253,6 +253,7 @@ static const struct usb_device_id blacklist_table[] = {
{ USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
{ USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
{ USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME },
+   { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
 
/* Broadcom BCM2035 */
{ USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
-- 
2.7.4

-- 
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:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 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:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2016-09-21 Thread Pilot6
I got the output from another user.

usb-devices | awk '/3011/' RS=

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) 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 (Ubuntu)
   Status: Triaged => 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/1535802

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 V3-371] doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 [Asus Aspire V3-371] doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1535802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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: Отказано в доступе
[0909/213245:ERROR:gl_context_glx.cc(59)] Failed to create GL context with 
glXCreateContextAttribsARB.
[0909/213245:ERROR:gpu_info_collector.cc(46)] gl::init::CreateGLContext failed
[0909/213245:ERROR:gpu_info_collector.cc(114)] Could not create context for 
info collection.
[0909/213245:ERROR:oxide_browser_main_parts.cc(289)] 
gpu::CollectContextGraphicsInfo failed

I am using standard nvidia-361 driver from the repos.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: webbrowser-app 0.23+16.04.20160413-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-36.55-generic 4.4.16
Uname: Linux 4.4.0-36-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Sep  9 21:29:18 2016
InstallationDate: Installed on 2013-10-17 (1058 days ago)
InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
SourcePackage: webbrowser-app
UpgradeStatus: Upgraded to xenial on 2016-04-29 (133 days ago)

** Affects: webbrowser-app (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1621967

Title:
  Webbrowser-app crashes on nvidia-361

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1621967/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 the fix of this
bug.

As I said before there is no global setting in
/etc/NetworkManager/networkManager.conf

-- 
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1557026/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1557026/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 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 go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1616535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1616535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.

-- 
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 go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1616535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1616535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1616535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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

** Changed in: linux (Ubuntu)
   Status: Expired => 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/1568590

Title:
  13d3:3472 Bluetooth stopped working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1568590/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1557026/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 by Linux kernel yet

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1600623/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2016-07-11 Thread Pilot6
Install this package and reboot.

wget
https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files
/btusb-lp1600623-dkms_0.1_all.deb

sudo dpkg -i btusb-lp1600623-dkms_0.1_all.deb

Test the BT. If it works, I will submit the patch to kernel maintainers.

** Changed in: linux (Ubuntu)
   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:
  Bluetooth adapter is not supported by Linux kernel yet

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1600623/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1600623/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 / AR9565 bluetooth not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596406/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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

Title:
  Bluetooth disabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596406/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.
https://bugs.launchpad.net/bugs/1597961

Title:
  Qualcomm Atheros Bluetooth 4.0 not working on Ubuntu 16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1597961/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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:
  Bluetooth disabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596406/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 apt install dkms
+ wget 
https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1542743-dkms_0.1_all.deb
+ sudo dpkg -i btusb-lp1542743-dkms_0.1_all.deb
  
  dmesg | grep Bluetooth:
  [2.655360] Bluetooth: Core ver 2.21
  [2.655373] Bluetooth: HCI device and connection manager initialized
  [2.655377] Bluetooth: HCI socket layer initialized
  [2.655379] Bluetooth: L2CAP socket layer initialized
  [2.655385] Bluetooth: SCO socket layer initialized
  [6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
  [6.612794] Bluetooth: BNEP filters: protocol multicast
  [6.612798] Bluetooth: BNEP socket layer initialized
  [9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
  [9.016882] Bluetooth: Loading patch file failed
  
- 
  hwinfo | grep Bluetooth:
  <6>[6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
-   <6>[6.612794] Bluetooth: BNEP filters: protocol multicast
-   <6>[6.612798] Bluetooth: BNEP socket layer initialized
-   <3>[9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
-   <3>[9.016882] Bluetooth: Loading patch file failed
+   <6>[6.612794] Bluetooth: BNEP filters: protocol multicast
+   <6>[6.612798] Bluetooth: BNEP socket layer initialized
+   <3>[9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
+   <3>[9.016882] Bluetooth: Loading patch file failed
  60: USB 00.0: 11500 Bluetooth Device
-   Model: "Atheros AR3012 Bluetooth 4.0"
-   Device: usb 0x3004 "AR3012 Bluetooth 4.0"
+   Model: "Atheros AR3012 Bluetooth 4.0"
+   Device: usb 0x3004 "AR3012 Bluetooth 4.0"
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: bluez 5.36-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  Date: Sun Feb  7 00:38:04 2016
  ExecutablePath: /usr/lib/bluetooth/bluetoothd
  InstallationDate: Installed on 2015-10-24 (105 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterestingModules: bnep btusb bluetooth
  MachineType: Micro-Star International Co., Ltd. GT72 2QD
  ProcEnviron:
-  LANG=de_DE.UTF-8
-  PATH=(custom, no user)
+  LANG=de_DE.UTF-8
+  PATH=(custom, no user)
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-2-generic 
root=UUID=f7880b23-39b5-423a-bdbf-62b111783450 ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: Upgraded to xenial on 2016-02-02 (4 days ago)
  dmi.bios.date: 12/19/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E1781IMS.10I
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: MS-1781
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: REV:0.C
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Micro-Star International Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE1781IMS.10I:bd12/19/2014:svnMicro-StarInternationalCo.,Ltd.:pnGT722QD:pvrREV0.C:rvnMicro-StarInternationalCo.,Ltd.:rnMS-1781:rvrREV0.C:cvnMicro-StarInternationalCo.,Ltd.:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: GT72 2QD
  dmi.product.version: REV:0.C
  dmi.sys.vendor: Micro-Star International Co., Ltd.
  hciconfig:
-  
+ 
  rfkill:
-  0: phy0: Wireless LAN
-   Soft blocked: yes
-   Hard blocked: no
+  0: phy0: Wireless LAN
+   Soft blocked: yes
+   Hard blocked: no

** 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:
+ WORKAROUND FOR [OCF3:3004] DEVICE ONLY:
  
  sudo apt install dkms
  wget 
https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-lp1542743-dkms_0.1_all.deb
  sudo dpkg -i btusb-lp1542743-dkms_0.1_all.deb
  
  dmesg | grep Bluetooth:
  [2.655360] Bluetooth: Core ver 2.21
  [2.655373] Bluetooth: HCI device and connection manager initialized
  [2.655377] Bluetooth: HCI socket layer initialized
  [2.655379] Bluetooth: L2CAP socket layer initialized
  [2.655385] Bluetooth: SCO socket layer initialized
  [6.612790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
  [6.612794] Bluetooth: BNEP filters: protocol multicast
  [6.612798] Bluetooth: BNEP socket layer initialized
  [9.016880] Bluetooth: Patch file not found ar3k/AthrBT_0x0200.dfu
  [9.016882] Bluetooth: Loading patch file failed
  
  hwinfo | 

[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 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:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596406/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 [0cf3:3004]
from AR3012 to QCA_ROME.

-- 
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1542743/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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
/rtl8723au-bt-dkms_0.7.1_all.deb

and the BT shuold start working.

For kernels 4.2+ it is supposed to be supported out of the box. But this
is not the case as far as I see.

-- 
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:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596406/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2016-06-18 Thread Pilot6
Public bug reported:

After upgrades from trusty to xenial sound volume is not saved on
reboots.

That is probably because file format of the cookie has been changed.

After I deleted the cookie from ~/.config/pulse the volume started to be
saved.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: pulseaudio 1:8.0-0ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
Uname: Linux 4.4.0-24-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/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)
SourcePackage: pulseaudio
UpgradeStatus: Upgraded to xenial on 2016-04-29 (50 days ago)
dmi.bios.date: 04/02/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 2101
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M5A78L LE
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2101:bd04/02/2015:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM5A78LLE:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: pulseaudio (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: do-release-upgrade trusty volume xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1594012

Title:
  Pulseaudio cookie should be deleted on upgrade from trusty to xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1594012/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1542564/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 experienced in
Ubuntu I suggest not doing this.

You've done more than enough to get this problem fixed. Thanks.

-- 
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 bluetooth not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 
some chips you can ask the kernel maintainers.
It is not too hard to do. But I am not quite sure there are still no reasons 
not to be done.

-- 
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 for some reason. You can ask it at forums
or AskUbuntu.

** Changed in: linux-lts-wily (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/1542944

Title:
  QCA9565 / AR9565 bluetooth not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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.
https://bugs.launchpad.net/bugs/1542944

Title:
  QCA9565 / AR9565 bluetooth not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1542944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1568590/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   4   5   6   7   8   9   >