[Kernel-packages] [Bug 2051457] Re: Jammy 22.04.3 gcc compiler no longer builds modules for 6.5.0 kernel series

2024-02-05 Thread Ubfan
A just finished test install of the (same) Ubuntu 22.04.1 Desktop ISO
now resulted in the gcc-12 being automatically installed, and the Nvidia
545 driver modules successfully compiling. After a fresh install, set up
wireless, installed build-essential, and then used software &
Updates/Additional drivers to select the Nvidia 545 driver, which
successfully compiled (gcc 11.4) under the 5.15 kernel.  Ran apt update,
and the new 6.5 kernel and gcc-12 were downloaded, and the nvidia 545
modules successfully compiled with the gcc-12. Looks a fix has been
applied to get the gcc-12.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/2051457

Title:
  Jammy 22.04.3 gcc compiler no longer builds modules for  6.5.0 kernel
  series

Status in dkms package in Ubuntu:
  Confirmed
Status in gcc-defaults package in Ubuntu:
  Won't Fix
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Since Jammy went to the 6.5.0 kernel series, that kernel series was
  compiled with gcc-12. The previous 6.2.0 series kernels were compiled
  with gcc-11.

  The current version of gcc in jammy is 11.4.

  Many NVidia drivers, wifi drivers, VirtualBox (from our Repo), etc
  fail to build the modules, because of a gcc compiler version mismatch
  between what the current running kernel was built by, and the module
  being built.

  I recognized this while helping Users with NVidia driver compile errors on 
the forum, and came up with this work-around for them:
  https://ubuntuforums.org/showthread.php?t=2494273=14175164#post14175164

  Summary:
  Install gcc-12 & g++-12 on 22.04.3 and use it as the compiler.

  Since then, this work-around has helped to resolve problems with
  running the 6.5.0 series kernels and building modules for other
  applications and hardware drivers: VirtualBox, WiFi Drivers, etc. for
  use with the 6.5.0 series.

  I have run this for over a month as my default with no ill affects. I
  have continued to recommend this work-around to many user to solve
  their problems...

  *** I think it is time to look at pushing through gcc-12 as the
  default compiler for 22.04.3 through the normal updates channel.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gcc 4:11.2.0-1ubuntu1
  ProcVersionSignature: Ubuntu 6.5.0-14.14~22.04.1-generic 6.5.3
  Uname: Linux 6.5.0-14-generic x86_64
  NonfreeKernelModules: zfs nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CloudArchitecture: x86_64
  CloudID: none
  CloudName: none
  CloudPlatform: none
  CloudSubPlatform: config
  CurrentDesktop: GNOME
  Date: Sun Jan 28 08:23:37 2024
  InstallationDate: Installed on 2022-09-19 (496 days ago)
  InstallationMedia: Ubuntu-Server 22.04.1 LTS "Jammy Jellyfish" - Release 
amd64 (20220809)
  SourcePackage: gcc-defaults
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 2051457] Re: Jammy 22.04.3 gcc compiler no longer builds modules for 6.5.0 kernel series

2024-01-31 Thread Ubfan
Testing was done with the Ubuntu 22.04.1 ISO, booted off disk, no persistence.
The Nvidia GPU was an RTX 3080 (mobile).
The gcc-12 and the generic hwe packages were installed, then the Nvidia
driver 535 selected in the Software & Updates/Additional Drivers tab.  Clicked
the apply button, and the nvidia.ko module(s) build successfully using gcc-12.
The build was done while running the default 5.15 kernel, and succeeded whether 
or
not gcc-11 was even present. 

Steps Taken
1)Boot the Ubuntu 22.04.1 Desktop ISO. The default kernel used is 5.15.
2)Set up wireiess.
3)In Software & Updates, add the universe and multiverse repositories. Click on
"update" button when presented.
4)sudo apt update  (Just in case)
5)sudo apt install gcc-12 build-essential
(Note, the Nvidia module will still build without the build-essential package, 
and its /bin/gcc link. )
6)Install the generic hwe packages. Note, using the hwe packages without 
"generic" in their
names immediately failed on the Nvidia module creation step. This installed the 
6.5.0-15 kernel.
sudo apt install linux-generic-hwe-22.04 linux-headers-generic-hwe-22.04 
linux-image-generic-hwe-22.04
7)In Software & Updates, under the Additional Drivers tab, select Nvidia 535. 
Click on the apply button, and watch the progress bar. No errors should occur.
8)Examine the nvidia.ko module created.
strings /lib/modules/6.5.0-15-generic/kernel/nvidia-535/nvidia.ko |grep gcc
The output should include that gcc 12.3 was used. (Whether or not /bin/gcc 
->gcc-11 is even present.)

Did not try a reboot, since persistence was not even used.  The test was
quick since everything is in memory.

It looks like just the presence of gcc-12 will solve this problem, and
that may be addressed by adding a dependency on it to some (hwe, kernel
?) package.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to dkms in Ubuntu.
https://bugs.launchpad.net/bugs/2051457

Title:
  Jammy 22.04.3 gcc compiler no longer builds modules for  6.5.0 kernel
  series

Status in dkms package in Ubuntu:
  New
Status in gcc-defaults package in Ubuntu:
  Won't Fix

Bug description:
  Since Jammy went to the 6.5.0 kernel series, that kernel series was
  compiled with gcc-12. The previous 6.2.0 series kernels were compiled
  with gcc-11.

  The current version of gcc in jammy is 11.4.

  Many NVidia drivers, wifi drivers, VirtualBox (from our Repo), etc
  fail to build the modules, because of a gcc compiler version mismatch
  between what the current running kernel was built by, and the module
  being built.

  I recognized this while helping Users with NVidia driver compile errors on 
the forum, and came up with this work-around for them:
  https://ubuntuforums.org/showthread.php?t=2494273=14175164#post14175164

  Summary:
  Install gcc-12 & g++-12 on 22.04.3 and use it as the compiler.

  Since then, this work-around has helped to resolve problems with
  running the 6.5.0 series kernels and building modules for other
  applications and hardware drivers: VirtualBox, WiFi Drivers, etc. for
  use with the 6.5.0 series.

  I have run this for over a month as my default with no ill affects. I
  have continued to recommend this work-around to many user to solve
  their problems...

  *** I think it is time to look at pushing through gcc-12 as the
  default compiler for 22.04.3 through the normal updates channel.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gcc 4:11.2.0-1ubuntu1
  ProcVersionSignature: Ubuntu 6.5.0-14.14~22.04.1-generic 6.5.3
  Uname: Linux 6.5.0-14-generic x86_64
  NonfreeKernelModules: zfs nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CloudArchitecture: x86_64
  CloudID: none
  CloudName: none
  CloudPlatform: none
  CloudSubPlatform: config
  CurrentDesktop: GNOME
  Date: Sun Jan 28 08:23:37 2024
  InstallationDate: Installed on 2022-09-19 (496 days ago)
  InstallationMedia: Ubuntu-Server 22.04.1 LTS "Jammy Jellyfish" - Release 
amd64 (20220809)
  SourcePackage: gcc-defaults
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 2051457] Re: Jammy 22.04.3 gcc compiler no longer builds modules for 6.5.0 kernel series

2024-01-30 Thread Ubfan
And yet to me, it looks like things will just work if gcc-12 is simply 
installed, not as the default.
Checking some file dates, I see my gcc-12 was brought (by something) in last 
April, and has been just sitting around. My /bin/gcc and /bin/cc links are 
years old (and link to gcc-11). The 
/lib/modules/6.5.0-14-generic/kernel/nvidia-535/bits/nvidia.o was compiled 
(last week) with gcc-12.3 (correct for my kernel 6.5). It looks like if gcc-12 
is installed, it will be used for building an nvidia module, without changing 
the system /bin/gcc default of gcc-11. When you (MAFoElfen) were trying your 
workaround by changing links (/bin/gcc to gcc-12), did you ever try the nvidia 
driver install before changing links with gcc-12 present? If the right compiler 
gets used if present, that suggests a simple fix of adding a gcc-12 dependency 
on the hwe kernel package (to allow any modules to be build if they do what 
nvidia apparently does). I'll try out some jammy iso boots if I cannot find a 
spare partition to install to and see what happens (I've never bothered to 
figure out how to make my VMs use 
 Nvidia). I can understand not wanting to change the default gcc, but simply 
adding one should not cause problems.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to dkms in Ubuntu.
https://bugs.launchpad.net/bugs/2051457

Title:
  Jammy 22.04.3 gcc compiler no longer builds modules for  6.5.0 kernel
  series

Status in dkms package in Ubuntu:
  New
Status in gcc-defaults package in Ubuntu:
  Won't Fix

Bug description:
  Since Jammy went to the 6.5.0 kernel series, that kernel series was
  compiled with gcc-12. The previous 6.2.0 series kernels were compiled
  with gcc-11.

  The current version of gcc in jammy is 11.4.

  Many NVidia drivers, wifi drivers, VirtualBox (from our Repo), etc
  fail to build the modules, because of a gcc compiler version mismatch
  between what the current running kernel was built by, and the module
  being built.

  I recognized this while helping Users with NVidia driver compile errors on 
the forum, and came up with this work-around for them:
  https://ubuntuforums.org/showthread.php?t=2494273=14175164#post14175164

  Summary:
  Install gcc-12 & g++-12 on 22.04.3 and use it as the compiler.

  Since then, this work-around has helped to resolve problems with
  running the 6.5.0 series kernels and building modules for other
  applications and hardware drivers: VirtualBox, WiFi Drivers, etc. for
  use with the 6.5.0 series.

  I have run this for over a month as my default with no ill affects. I
  have continued to recommend this work-around to many user to solve
  their problems...

  *** I think it is time to look at pushing through gcc-12 as the
  default compiler for 22.04.3 through the normal updates channel.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gcc 4:11.2.0-1ubuntu1
  ProcVersionSignature: Ubuntu 6.5.0-14.14~22.04.1-generic 6.5.3
  Uname: Linux 6.5.0-14-generic x86_64
  NonfreeKernelModules: zfs nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CloudArchitecture: x86_64
  CloudID: none
  CloudName: none
  CloudPlatform: none
  CloudSubPlatform: config
  CurrentDesktop: GNOME
  Date: Sun Jan 28 08:23:37 2024
  InstallationDate: Installed on 2022-09-19 (496 days ago)
  InstallationMedia: Ubuntu-Server 22.04.1 LTS "Jammy Jellyfish" - Release 
amd64 (20220809)
  SourcePackage: gcc-defaults
  UpgradeStatus: No upgrade log present (probably fresh install)

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


-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1990750] Re: Boot issue with Ubuntu 22.10 Kinetic Kudu since Kernel 5.19.0.15.15, now hanging with blinking cursor after update to Kernel 5.19.0.21.21

2023-03-04 Thread Ubfan
Yesterday, running the 5.19.0-35 kernel and Nvidia 525.76... driver, an
update held back several Nvidia 525 packages (the 525.85.05 versions).
That in itself was not a problem, but the existing Nvidia modules for
that kernel got deleted! Rebooting, the laptop was running off the intel
GPU. The Software & Updates/Additional Drivers thought the nvidia 525
driver was selected and in use, but lsmod did not show it, and anything
needing the nvidia modules like nvidia-settings or nvidia-smi could not
communicate with the driver (the .ko driver files in
/lib/modules/5.19.0-35-generic/kernel/nvidia-525 were missing.  Booting
a former kernel (with the 525.76.. driver still worked. Rather than
forcing the issue (doing an explicit install of the held back nvidia
packages), I just waited a day, and the phasing (which was at 70%)
caught up, the sudo apt full-upgrade succeeded, the modules got rebuilt,
and everything worked again. Just wait a bit and see if things correct
themselves when you run the upgrade.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/1990750

Title:
  Boot issue with Ubuntu 22.10 Kinetic Kudu since Kernel 5.19.0.15.15,
  now hanging with blinking cursor after update to Kernel 5.19.0.21.21

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  When starting the PC, the splash screen freezes with the motherboard logo 
displayed.
  As my disk is encrypted the decryption field does not appear below the logo.

  By typing [ALT] + [CTRL] + [DEL] then the splash screen appears again 
followed by a start-up menu with the following line:
  *Ubuntu
   Advanced options for Ubuntu

  By selecting 'Advanced options for Ubuntu' the following submenu appears:
  *Ubuntu, with Linux5.19.0-15-generic
   Ubuntu, with Linux5.19.0-15-generic (recovery mode)

  Selecting the second option, then the system starts loading with the initial 
lines of code:
  Loading Linux 5.19.0-15-generic ...
  Loading initial ramdisk ...

  When code has finished loading, the last line at the bottom of the screen is 
for unlocking the disk:
  Begin: Mounting root fie system ... Begin Running /script/local-top ... 
Please unlock disk nvme0n1p3_crypt:

  Then i type in the code and hit [return] and more code is loading, until a 
recovery menu with purple background appears, with the title:
  Recovery Menu (filesystem state: read-only).

  I select the first menu item:
  resume  Resume normal boot
  and hit [return].

  The menu changes to the notification:
  You are now going to exit the recovery mode bla bla bla
  with the [OK] button below it.

  I hit the [OK] button and then the login screen finally appears.

  I will post a video of the complete boot sequence later on as I need
  to install a softaware to edit the video.

  It is noteworthy that on my previous Ubuntu 22.04 install the same
  issue with the frozen splash screen occurred when my system was
  updated with Kernel 5.15.5, but then I did not try out to execute the
  [ALT] + [CTRL] + [DEL] command.

  Therefore the bug is probably affecting all kernels from 5.15.5
  upwards.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.10
  Package: linux-image-5.19.0-15-generic 5.19.0-15.15
  ProcVersionSignature: Ubuntu 5.19.0-15.15-generic 5.19.0
  Uname: Linux 5.19.0-15-generic x86_64
  NonfreeKernelModules: nvidia_modeset wl nvidia
  ApportVersion: 2.23.0-0ubuntu2
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 25 08:30:29 2022
  InstallationDate: Installed on 2022-09-24 (0 days ago)
  InstallationMedia: Ubuntu 22.10 "Kinetic Kudu" - Alpha amd64 (20220920)
  MachineType: Gigabyte Technology Co., Ltd. Z97X-UD5H
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.19.0-15-generic 
root=/dev/mapper/vgubuntu-root ro recovery nomodeset dis_ucode_ldr
  RelatedPackageVersions:
   linux-restricted-modules-5.19.0-15-generic N/A
   linux-backports-modules-5.19.0-15-generic  N/A
   linux-firmware 20220923.gitf09bebf3-0ubuntu1
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/03/2015
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F10
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Z97X-UD5H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF10:bd08/03/2015:br4.6:svnGigabyteTechnologyCo.,Ltd.:pnZ97X-UD5H:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ97X-UD5H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:skuTobefilledbyO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: 

[Kernel-packages] [Bug 1990750] Re: Boot issue with Ubuntu 22.10 Kinetic Kudu since Kernel 5.19.0.15.15, now hanging with blinking cursor after update to Kernel 5.19.0.21.21

2023-03-04 Thread Ubfan
Note that the Nvidia packaging does not play well with phased updates.
For kernel 519.0-35, the Nvidia 525-76.. driver got removed, but then
phasing held back some nvidia 525-85  packages necessary to rebuild the
nvidia modules -- leaving the currently running kernel without an Nvidia
driver. A day later the phasing caught up, all the Nvidia packages
downloaded, and the modules rebuilt successfully.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/1990750

Title:
  Boot issue with Ubuntu 22.10 Kinetic Kudu since Kernel 5.19.0.15.15,
  now hanging with blinking cursor after update to Kernel 5.19.0.21.21

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  When starting the PC, the splash screen freezes with the motherboard logo 
displayed.
  As my disk is encrypted the decryption field does not appear below the logo.

  By typing [ALT] + [CTRL] + [DEL] then the splash screen appears again 
followed by a start-up menu with the following line:
  *Ubuntu
   Advanced options for Ubuntu

  By selecting 'Advanced options for Ubuntu' the following submenu appears:
  *Ubuntu, with Linux5.19.0-15-generic
   Ubuntu, with Linux5.19.0-15-generic (recovery mode)

  Selecting the second option, then the system starts loading with the initial 
lines of code:
  Loading Linux 5.19.0-15-generic ...
  Loading initial ramdisk ...

  When code has finished loading, the last line at the bottom of the screen is 
for unlocking the disk:
  Begin: Mounting root fie system ... Begin Running /script/local-top ... 
Please unlock disk nvme0n1p3_crypt:

  Then i type in the code and hit [return] and more code is loading, until a 
recovery menu with purple background appears, with the title:
  Recovery Menu (filesystem state: read-only).

  I select the first menu item:
  resume  Resume normal boot
  and hit [return].

  The menu changes to the notification:
  You are now going to exit the recovery mode bla bla bla
  with the [OK] button below it.

  I hit the [OK] button and then the login screen finally appears.

  I will post a video of the complete boot sequence later on as I need
  to install a softaware to edit the video.

  It is noteworthy that on my previous Ubuntu 22.04 install the same
  issue with the frozen splash screen occurred when my system was
  updated with Kernel 5.15.5, but then I did not try out to execute the
  [ALT] + [CTRL] + [DEL] command.

  Therefore the bug is probably affecting all kernels from 5.15.5
  upwards.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.10
  Package: linux-image-5.19.0-15-generic 5.19.0-15.15
  ProcVersionSignature: Ubuntu 5.19.0-15.15-generic 5.19.0
  Uname: Linux 5.19.0-15-generic x86_64
  NonfreeKernelModules: nvidia_modeset wl nvidia
  ApportVersion: 2.23.0-0ubuntu2
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 25 08:30:29 2022
  InstallationDate: Installed on 2022-09-24 (0 days ago)
  InstallationMedia: Ubuntu 22.10 "Kinetic Kudu" - Alpha amd64 (20220920)
  MachineType: Gigabyte Technology Co., Ltd. Z97X-UD5H
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.19.0-15-generic 
root=/dev/mapper/vgubuntu-root ro recovery nomodeset dis_ucode_ldr
  RelatedPackageVersions:
   linux-restricted-modules-5.19.0-15-generic N/A
   linux-backports-modules-5.19.0-15-generic  N/A
   linux-firmware 20220923.gitf09bebf3-0ubuntu1
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/03/2015
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F10
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Z97X-UD5H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF10:bd08/03/2015:br4.6:svnGigabyteTechnologyCo.,Ltd.:pnZ97X-UD5H:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ97X-UD5H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:skuTobefilledbyO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: Z97X-UD5H
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1990750] Re: Boot issue with Ubuntu 22.10 Kinetic Kudu since Kernel 5.19.0.15.15, now hanging with blinking cursor after update to Kernel 5.19.0.21.21

2023-03-04 Thread Ubfan
-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/1990750

Title:
  Boot issue with Ubuntu 22.10 Kinetic Kudu since Kernel 5.19.0.15.15,
  now hanging with blinking cursor after update to Kernel 5.19.0.21.21

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  When starting the PC, the splash screen freezes with the motherboard logo 
displayed.
  As my disk is encrypted the decryption field does not appear below the logo.

  By typing [ALT] + [CTRL] + [DEL] then the splash screen appears again 
followed by a start-up menu with the following line:
  *Ubuntu
   Advanced options for Ubuntu

  By selecting 'Advanced options for Ubuntu' the following submenu appears:
  *Ubuntu, with Linux5.19.0-15-generic
   Ubuntu, with Linux5.19.0-15-generic (recovery mode)

  Selecting the second option, then the system starts loading with the initial 
lines of code:
  Loading Linux 5.19.0-15-generic ...
  Loading initial ramdisk ...

  When code has finished loading, the last line at the bottom of the screen is 
for unlocking the disk:
  Begin: Mounting root fie system ... Begin Running /script/local-top ... 
Please unlock disk nvme0n1p3_crypt:

  Then i type in the code and hit [return] and more code is loading, until a 
recovery menu with purple background appears, with the title:
  Recovery Menu (filesystem state: read-only).

  I select the first menu item:
  resume  Resume normal boot
  and hit [return].

  The menu changes to the notification:
  You are now going to exit the recovery mode bla bla bla
  with the [OK] button below it.

  I hit the [OK] button and then the login screen finally appears.

  I will post a video of the complete boot sequence later on as I need
  to install a softaware to edit the video.

  It is noteworthy that on my previous Ubuntu 22.04 install the same
  issue with the frozen splash screen occurred when my system was
  updated with Kernel 5.15.5, but then I did not try out to execute the
  [ALT] + [CTRL] + [DEL] command.

  Therefore the bug is probably affecting all kernels from 5.15.5
  upwards.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.10
  Package: linux-image-5.19.0-15-generic 5.19.0-15.15
  ProcVersionSignature: Ubuntu 5.19.0-15.15-generic 5.19.0
  Uname: Linux 5.19.0-15-generic x86_64
  NonfreeKernelModules: nvidia_modeset wl nvidia
  ApportVersion: 2.23.0-0ubuntu2
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 25 08:30:29 2022
  InstallationDate: Installed on 2022-09-24 (0 days ago)
  InstallationMedia: Ubuntu 22.10 "Kinetic Kudu" - Alpha amd64 (20220920)
  MachineType: Gigabyte Technology Co., Ltd. Z97X-UD5H
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.19.0-15-generic 
root=/dev/mapper/vgubuntu-root ro recovery nomodeset dis_ucode_ldr
  RelatedPackageVersions:
   linux-restricted-modules-5.19.0-15-generic N/A
   linux-backports-modules-5.19.0-15-generic  N/A
   linux-firmware 20220923.gitf09bebf3-0ubuntu1
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/03/2015
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F10
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Z97X-UD5H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF10:bd08/03/2015:br4.6:svnGigabyteTechnologyCo.,Ltd.:pnZ97X-UD5H:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ97X-UD5H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:skuTobefilledbyO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: Z97X-UD5H
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-06-03 Thread Ubfan
I confirm that Bluetooth now works on the Intel Compute Stick STCK1A8LFC
with the rtl8723bs hardware for the 5.7.0-050700 #202005312130 kernel
from the above link.  dmesg showed the expected Bluetooth firmware
loading, and all necessary modules were automatically loaded.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1877192

Title:
  RTL8723bs bluetooth not working on 20.04

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have Ubuntu 20.04 installed on atom-based tablet ACER Aspire Switch 10. And 
bluetooth does not work. In fact it looks like ubuntu does not recognize 
bluetooth HW at all. But the system does have bluetooth module which under 
windows is recognized as RTK8723 (ACPI\RTK8723\some-id)
  At the same time WiFi works without issues (the same module, if I am not 
mistaken).

  $ lsb_release -d
  Description:Ubuntu 20.04 LTS
  $ uname -vr
  5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020
  $ dmesg | grep -i 8723
  [8.087918] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
  [8.088914] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
  [8.092667] RTL8723BS: module init start
  [8.092671] RTL8723BS: rtl8723bs 
v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
  [8.092673] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
  [8.303955] RTL8723BS: rtw_ndev_init(wlan0)
  [8.304653] RTL8723BS: module init ret =0
  [   13.200223] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
  [   17.832536] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x0008
  [   17.889893] RTL8723BS: start auth
  [   17.892815] RTL8723BS: auth success, start assoc
  [   17.901012] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found 
!!
  [   17.901053] RTL8723BS: assoc success
  [   17.913846] RTL8723BS: send eapol packet
  [   17.939873] RTL8723BS: send eapol packet
  [   17.942652] RTL8723BS: set pairwise key camid:4, addr:50:c7:bf:31:a1:fa, 
kid:0, type:AES
  [   17.944712] RTL8723BS: set group key camid:5, addr:50:c7:bf:31:a1:fa, 
kid:1, type:TKIP
  $ rfkill list all
  0: acer-wireless: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: acer-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  2: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no

  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  user   1288 F pulseaudio
   /dev/snd/controlC0:  user   1288 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-04-24 (13 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lspci-vt:
   -[:00]-+-00.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC 
Transaction Register
  +-02.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display
  +-14.0  Intel Corporation Atom Processor Z36xxx/Z37xxx, Celeron 
N2000 Series USB xHCI
  +-1a.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Trusted Execution Engine
  \-1f.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Power Control Unit
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 06cb:2968 Synaptics, Inc. 
   Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Lsusb-t:
   /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 5000M
   /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 480M
   |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
   |__ Port 3: Dev 3, If 0, Class=Human Interface Device, 
Driver=usbhid, 12M
   |__ Port 3: Dev 3, If 1, Class=Human Interface Device, 
Driver=usbhid, 12M
  MachineType: Acer Aspire SW5-012
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-generic 
root=UUID=140a1a3c-1a0a-4aab-b323-f621e6497a7e ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-generic N/A
   linux-backports-modules-5.4.0-26-generic  N/A
   linux-firmware1.187
  StagingDrivers: r8723bs
  Tags:  focal staging
  Uname: Linux 5.4.0-26-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/01/2016
  dmi.bios.vendor: INSYDE Corp.
  dmi.bios.version: V1.20
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 

[Kernel-packages] [Bug 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-05-19 Thread Ubfan
The working 5.4 kernel on Lubuntu 20.04, on Intel compute Stick STCK1A8LFC with 
the rtl8723bs hw.
$ cat btm-54.dmesg

Lubuntu 20.04
$ uname -a
Linux xleef 5.4.0-29-generic #33-Ubuntu SMP Wed Apr 29 14:32:27 UTC 2020 x86_64 
x86_64 x86_64 GNU/Linux
Previously connected generic Bluetooth 2.4G mouse 
Repaired and connected successfully.

dmesg |egrep -i -e "8723|blue|rfcomm|hci|mmc|rtl"
[0.104388] PCI: MMCONFIG for domain  [bus 00-ff] at [mem 
0xe000-0xefff] (base 0xe000)
[0.104388] PCI: not using MMCONFIG
[0.210310] PCI: MMCONFIG for domain  [bus 00-ff] at [mem 
0xe000-0xefff] (base 0xe000)
[0.229411] [Firmware Info]: PCI: MMCONFIG at [mem 0xe000-0xefff] 
not reserved in ACPI motherboard resources
[0.229415] PCI: not using MMCONFIG
[0.292111] acpi PNP0A08:00: fail to add MMCONFIG information, can't access 
extended PCI configuration space under this bridge.
[1.543480] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[1.543511] ehci-pci: EHCI PCI platform driver
[1.544272] ehci-pci :00:1d.0: EHCI Host Controller
[1.544289] ehci-pci :00:1d.0: new USB bus registered, assigned bus 
number 1
[1.544312] ehci-pci :00:1d.0: debug port 2
[1.548247] ehci-pci :00:1d.0: cache line size of 64 is not supported
[1.548283] ehci-pci :00:1d.0: irq 23, io mem 0x50811000
[1.563539] ehci-pci :00:1d.0: USB 2.0 started, EHCI 1.00
[1.564005] usb usb1: Product: EHCI Host Controller
[1.564015] usb usb1: Manufacturer: Linux 5.4.0-29-generic ehci_hcd
[1.567268] ehci-platform: EHCI generic platform driver
[1.567332] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[1.567347] ohci-pci: OHCI PCI platform driver
[1.567374] ohci-platform: OHCI generic platform driver
[1.567402] uhci_hcd: USB Universal Host Controller Interface driver
[1.903542] usb 1-1: new high-speed USB device number 2 using ehci-pci
[2.227544] usb 1-1.1: new high-speed USB device number 3 using ehci-pci
[2.345714] sdhci: Secure Digital Host Controller Interface driver
[2.345716] sdhci: Copyright(c) Pierre Ossman
[2.356478] mmc0: SDHCI controller on ACPI [INT33BB:00] using ADMA
[2.378627] mmc1: SDHCI controller on ACPI [80860F14:00] using ADMA
[2.396433] mmc2: SDHCI controller on ACPI [80860F14:02] using ADMA
[2.400588] mmc0: new high speed SDIO card at address 0001
[2.462375] mmc2: new high speed SDHC card at address 
[2.532555] mmcblk2: mmc2: SC32G 29.7 GiB 
[2.556562]  mmcblk2: p1 p2 p3
[2.626522] mmc1: new HS200 MMC card at address 0001
[2.627096] mmcblk1: mmc1:0001 S10008 7.13 GiB 
[2.627490] mmcblk1boot0: mmc1:0001 S10008 partition 1 4.00 MiB
[2.627855] mmcblk1boot1: mmc1:0001 S10008 partition 2 4.00 MiB
[2.630674] mmcblk1rpmb: mmc1:0001 S10008 partition 3 4.00 MiB, chardev 
(241:0)
[2.633770]  mmcblk1: p1 p2 p3
[2.651135] usb 1-1.1.1: new low-speed USB device number 4 using ehci-pci
[3.127135] usb 1-1.1.2: new low-speed USB device number 5 using ehci-pci
[3.587544] usb 1-1.1.4: new high-speed USB device number 6 using ehci-pci
[   16.990772] Bluetooth: Core ver 2.22
[   16.990816] Bluetooth: HCI device and connection manager initialized
[   16.990824] Bluetooth: HCI socket layer initialized
[   16.990828] Bluetooth: L2CAP socket layer initialized
[   16.990839] Bluetooth: SCO socket layer initialized
[   17.254051] Bluetooth: HCI UART driver ver 2.3
[   17.254056] Bluetooth: HCI UART protocol H4 registered
[   17.254058] Bluetooth: HCI UART protocol BCSP registered
[   17.254093] Bluetooth: HCI UART protocol LL registered
[   17.254095] Bluetooth: HCI UART protocol ATH3K registered
[   17.254133] Bluetooth: HCI UART protocol Three-wire (H5) registered
[   17.254230] Bluetooth: HCI UART protocol Intel registered
[   17.254370] Bluetooth: HCI UART protocol Broadcom registered
[   17.254396] Bluetooth: HCI UART protocol QCA registered
[   17.254399] Bluetooth: HCI UART protocol AG6XX registered
[   17.254428] Bluetooth: HCI UART protocol Marvell registered
[   17.902380] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b 
lmp_ver=06 lmp_subver=8723
[   17.906556] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   17.906560] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723bs_fw.bin
[   19.414238] Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8723bs_config-OBDA8723.bin
[   19.443213] Bluetooth: hci0: RTL: cfg_sz 64, total sz 24508
[   20.169068] Bluetooth: hci0: RTL: fw version 0x365d462e
[   20.589782] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
[   20.590613] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
[   20.593186] RTL8723BS: module init start
[   20.593190] RTL8723BS: rtl8723bs v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
[   20.593192] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
[   20.701451] 

[Kernel-packages] [Bug 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-05-10 Thread Ubfan
I am having trouble loading the rtl8723bs firmware for a 5.5 kernel on
AntiX 19, (a  Debian 10 sans systemd/Gnome).  This bug on a 20.04
install with the 5.4 kernel may indicate early issues, but I withdrew my
"does this affect me" checkoff since the 5.4 kernel is working for me.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1877192

Title:
  RTL8723bs bluetooth not working on 20.04

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have Ubuntu 20.04 installed on atom-based tablet ACER Aspire Switch 10. And 
bluetooth does not work. In fact it looks like ubuntu does not recognize 
bluetooth HW at all. But the system does have bluetooth module which under 
windows is recognized as RTK8723 (ACPI\RTK8723\some-id)
  At the same time WiFi works without issues (the same module, if I am not 
mistaken).

  $ lsb_release -d
  Description:Ubuntu 20.04 LTS
  $ uname -vr
  5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020
  $ dmesg | grep -i 8723
  [8.087918] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
  [8.088914] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
  [8.092667] RTL8723BS: module init start
  [8.092671] RTL8723BS: rtl8723bs 
v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
  [8.092673] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
  [8.303955] RTL8723BS: rtw_ndev_init(wlan0)
  [8.304653] RTL8723BS: module init ret =0
  [   13.200223] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
  [   17.832536] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x0008
  [   17.889893] RTL8723BS: start auth
  [   17.892815] RTL8723BS: auth success, start assoc
  [   17.901012] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found 
!!
  [   17.901053] RTL8723BS: assoc success
  [   17.913846] RTL8723BS: send eapol packet
  [   17.939873] RTL8723BS: send eapol packet
  [   17.942652] RTL8723BS: set pairwise key camid:4, addr:50:c7:bf:31:a1:fa, 
kid:0, type:AES
  [   17.944712] RTL8723BS: set group key camid:5, addr:50:c7:bf:31:a1:fa, 
kid:1, type:TKIP
  $ rfkill list all
  0: acer-wireless: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: acer-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  2: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no

  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  user   1288 F pulseaudio
   /dev/snd/controlC0:  user   1288 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-04-24 (13 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lspci-vt:
   -[:00]-+-00.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC 
Transaction Register
  +-02.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display
  +-14.0  Intel Corporation Atom Processor Z36xxx/Z37xxx, Celeron 
N2000 Series USB xHCI
  +-1a.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Trusted Execution Engine
  \-1f.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Power Control Unit
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 06cb:2968 Synaptics, Inc. 
   Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Lsusb-t:
   /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 5000M
   /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 480M
   |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
   |__ Port 3: Dev 3, If 0, Class=Human Interface Device, 
Driver=usbhid, 12M
   |__ Port 3: Dev 3, If 1, Class=Human Interface Device, 
Driver=usbhid, 12M
  MachineType: Acer Aspire SW5-012
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-generic 
root=UUID=140a1a3c-1a0a-4aab-b323-f621e6497a7e ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-generic N/A
   linux-backports-modules-5.4.0-26-generic  N/A
   linux-firmware1.187
  StagingDrivers: r8723bs
  Tags:  focal staging
  Uname: Linux 5.4.0-26-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/01/2016
  dmi.bios.vendor: INSYDE Corp.
  dmi.bios.version: V1.20
  dmi.board.asset.tag: Type2 - Board Asset Tag
  

[Kernel-packages] [Bug 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-05-10 Thread Ubfan
On an Intel Compute Stick the Xubuntu 18.04 upgrade to 20.04 resulted in
a working rtl8723bs bluetooth (and wifi) for a 5.4.0-29 kernel.  Before
upgrade, a 5.3 kernel was tested and three additional modules needed to
be loaded manually (the first time) to make the Bluetooth work: hidp,
btbcm, and rfcomm.  The 5.3 modules which originally loaded by default
(and allowed wifi but not Bluetooth) were: btrtl, btqca, btintel,
hci_uart, and bnep.  The working 5.4 had dmesg Bluetooth/hci firmware
load messages identical to the above 4.19 examples.  The hardware works,
the firmware is present, but there seems to be a module load problem

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1877192

Title:
  RTL8723bs bluetooth not working on 20.04

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have Ubuntu 20.04 installed on atom-based tablet ACER Aspire Switch 10. And 
bluetooth does not work. In fact it looks like ubuntu does not recognize 
bluetooth HW at all. But the system does have bluetooth module which under 
windows is recognized as RTK8723 (ACPI\RTK8723\some-id)
  At the same time WiFi works without issues (the same module, if I am not 
mistaken).

  $ lsb_release -d
  Description:Ubuntu 20.04 LTS
  $ uname -vr
  5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020
  $ dmesg | grep -i 8723
  [8.087918] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
  [8.088914] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
  [8.092667] RTL8723BS: module init start
  [8.092671] RTL8723BS: rtl8723bs 
v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
  [8.092673] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
  [8.303955] RTL8723BS: rtw_ndev_init(wlan0)
  [8.304653] RTL8723BS: module init ret =0
  [   13.200223] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
  [   17.832536] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x0008
  [   17.889893] RTL8723BS: start auth
  [   17.892815] RTL8723BS: auth success, start assoc
  [   17.901012] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found 
!!
  [   17.901053] RTL8723BS: assoc success
  [   17.913846] RTL8723BS: send eapol packet
  [   17.939873] RTL8723BS: send eapol packet
  [   17.942652] RTL8723BS: set pairwise key camid:4, addr:50:c7:bf:31:a1:fa, 
kid:0, type:AES
  [   17.944712] RTL8723BS: set group key camid:5, addr:50:c7:bf:31:a1:fa, 
kid:1, type:TKIP
  $ rfkill list all
  0: acer-wireless: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: acer-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  2: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no

  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  user   1288 F pulseaudio
   /dev/snd/controlC0:  user   1288 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-04-24 (13 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lspci-vt:
   -[:00]-+-00.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC 
Transaction Register
  +-02.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display
  +-14.0  Intel Corporation Atom Processor Z36xxx/Z37xxx, Celeron 
N2000 Series USB xHCI
  +-1a.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Trusted Execution Engine
  \-1f.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Power Control Unit
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 06cb:2968 Synaptics, Inc. 
   Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Lsusb-t:
   /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 5000M
   /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 480M
   |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
   |__ Port 3: Dev 3, If 0, Class=Human Interface Device, 
Driver=usbhid, 12M
   |__ Port 3: Dev 3, If 1, Class=Human Interface Device, 
Driver=usbhid, 12M
  MachineType: Acer Aspire SW5-012
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-generic 
root=UUID=140a1a3c-1a0a-4aab-b323-f621e6497a7e ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-generic N/A
   linux-backports-modules-5.4.0-26-generic  N/A
   linux-firmware1.187
  StagingDrivers: r8723bs
  Tags: 

[Kernel-packages] [Bug 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-05-07 Thread Ubfan
Delete the above observation of a later version of the firmware being 
available, the
rtl8723bs v4.4.1_17245.20160325_BTCOEX20151223-654a  is actually the original 
Intel version.
on the Ubuntu 14.04 supplied on the Intel Compute Stick.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1877192

Title:
  RTL8723bs bluetooth not working on 20.04

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have Ubuntu 20.04 installed on atom-based tablet ACER Aspire Switch 10. And 
bluetooth does not work. In fact it looks like ubuntu does not recognize 
bluetooth HW at all. But the system does have bluetooth module which under 
windows is recognized as RTK8723 (ACPI\RTK8723\some-id)
  At the same time WiFi works without issues (the same module, if I am not 
mistaken).

  $ lsb_release -d
  Description:Ubuntu 20.04 LTS
  $ uname -vr
  5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020
  $ dmesg | grep -i 8723
  [8.087918] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
  [8.088914] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
  [8.092667] RTL8723BS: module init start
  [8.092671] RTL8723BS: rtl8723bs 
v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
  [8.092673] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
  [8.303955] RTL8723BS: rtw_ndev_init(wlan0)
  [8.304653] RTL8723BS: module init ret =0
  [   13.200223] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
  [   17.832536] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x0008
  [   17.889893] RTL8723BS: start auth
  [   17.892815] RTL8723BS: auth success, start assoc
  [   17.901012] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found 
!!
  [   17.901053] RTL8723BS: assoc success
  [   17.913846] RTL8723BS: send eapol packet
  [   17.939873] RTL8723BS: send eapol packet
  [   17.942652] RTL8723BS: set pairwise key camid:4, addr:50:c7:bf:31:a1:fa, 
kid:0, type:AES
  [   17.944712] RTL8723BS: set group key camid:5, addr:50:c7:bf:31:a1:fa, 
kid:1, type:TKIP
  $ rfkill list all
  0: acer-wireless: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: acer-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  2: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-05-07 Thread Ubfan
The bluetooth firmware load (hci0) below from a working device on a 4.19 kernel 
is missing from the
above posted dmesg output (firmware versions identical).  There are new 
firmware versions in 20.04, so that may be contributing cause to the loading 
problem.
7.768840] RTL8723BS: rtl8723bs v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
[7.768842] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
[7.933032] Bluetooth: hci0: RTL: rtl: examining hci_ver=06 hci_rev=000b 
lmp_ver=06 lmp_subver=8723
[7.941386] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8723bs_fw.bin
[7.959733] bluetooth hci0: firmware: direct-loading firmware 
rtl_bt/rtl8723bs_fw.bin
[7.959786] Bluetooth: hci0: RTL: rtl: loading 
rtl_bt/rtl8723bs_config-OBDA8723.bin
[7.960749] bluetooth hci0: firmware: direct-loading firmware 
rtl_bt/rtl8723bs_config-OBDA8723.bin
[7.965838] RTL8723BS: rtw_ndev_init(wlan0)
[7.967175] RTL8723BS: module init ret =0
[9.685612] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1877192

Title:
  RTL8723bs bluetooth not working on 20.04

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have Ubuntu 20.04 installed on atom-based tablet ACER Aspire Switch 10. And 
bluetooth does not work. In fact it looks like ubuntu does not recognize 
bluetooth HW at all. But the system does have bluetooth module which under 
windows is recognized as RTK8723 (ACPI\RTK8723\some-id)
  At the same time WiFi works without issues (the same module, if I am not 
mistaken).

  $ lsb_release -d
  Description:Ubuntu 20.04 LTS
  $ uname -vr
  5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020
  $ dmesg | grep -i 8723
  [8.087918] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
  [8.088914] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
  [8.092667] RTL8723BS: module init start
  [8.092671] RTL8723BS: rtl8723bs 
v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
  [8.092673] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
  [8.303955] RTL8723BS: rtw_ndev_init(wlan0)
  [8.304653] RTL8723BS: module init ret =0
  [   13.200223] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
  [   17.832536] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x0008
  [   17.889893] RTL8723BS: start auth
  [   17.892815] RTL8723BS: auth success, start assoc
  [   17.901012] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found 
!!
  [   17.901053] RTL8723BS: assoc success
  [   17.913846] RTL8723BS: send eapol packet
  [   17.939873] RTL8723BS: send eapol packet
  [   17.942652] RTL8723BS: set pairwise key camid:4, addr:50:c7:bf:31:a1:fa, 
kid:0, type:AES
  [   17.944712] RTL8723BS: set group key camid:5, addr:50:c7:bf:31:a1:fa, 
kid:1, type:TKIP
  $ rfkill list all
  0: acer-wireless: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: acer-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  2: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1853665] Re: Bluetooth not working with Realtek RTL8821CE

2020-01-24 Thread Ubfan
Did you scan the dmesg output for firmware loading errors?  Try dmesg
|grep -i firm  and dmesg | grep 8821 and report results here.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1853665

Title:
  Bluetooth not working with Realtek RTL8821CE

Status in linux-oem package in Ubuntu:
  Confirmed

Bug description:
  The driver installed just fine and wifi is working but bluetooth does
  not.

  I will gladly provide further debugging information.

  Ubuntu 19.10

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1581711] Re: 024C:B723 Need support for Realtek Wifi card rtl8723bs

2019-08-20 Thread Ubfan
With 19 more months of support for 16.04 (and the 4.4 kernel), consider the 
8723bs drivers in the
trusty-chestersmill repository ( http://oem.archive.canonical.com/updates/ 
trusty-chestersmill public)
These drivers worked fine through the Ubuntu 4.4.0-142 release (when the API 
change broke many drivers). The fix for that problem may be much simpler than 
changing the lwfinger or hadess drivers. Note, bug 1755309 for the header fix 
necessary for the audio packages from that repo.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1581711

Title:
  024C:B723 Need support for Realtek Wifi card rtl8723bs

Status in HWE Next:
  Won't Fix
Status in HWE Next xenial series:
  Won't Fix
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  This device is appearing in some OEM machines.

  WORKAROUND: sudo apt-get install build-essential linux-headers-generic git
  git clone https://github.com/hadess/rtl8723as.git
  cd rtl8723as
  make
  sudo make install
  sudo depmod -a
  sudo modprobe r8723bs

  cat /sys/bus/sdio/devices/mmc1:0001:1/*
  0x07
  0xb723
  cat: '/sys/bus/sdio/devices/mmc1:0001:1/firmware_node': Is a directory
  sdio:c07v024CdB723
  cat: '/sys/bus/sdio/devices/mmc1:0001:1/power': Is a directory
  cat: '/sys/bus/sdio/devices/mmc1:0001:1/subsystem': Is a directory
  SDIO_CLASS=07
  SDIO_ID=024C:B723
  MODALIAS=sdio:c07v024CdB723
  0x024c

  WORKAROUND 2: Install this DKMS driver package:
  
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1581711/+attachment/4732838/+files
  /rtl8723bs-dkms_4.4.1+17245.20160325.2_all.deb

  ---
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=e59c3a84-25cb-4931-887e-13ab29829963
  InstallationDate: Installed on 2016-05-14 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Release amd64 
(20160421)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 06cb:73f4 Synaptics, Inc.
   Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Acer One S1002
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-22-generic.efi.signed 
root=/dev/mmcblk0p2 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-22.39-generic 4.4.8
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-22-generic N/A
   linux-backports-modules-4.4.0-22-generic  N/A
   linux-firmware1.157
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  Tags:  xenial
  Uname: Linux 4.4.0-22-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 10/20/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.10
  dmi.board.name: Popcorn
  dmi.board.vendor: Acer
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.10:bd10/20/2015:svnAcer:pnOneS1002:pvr1.10:rvnAcer:rnPopcorn:rvrTobefilledbyO.E.M.:cvnAcer:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: One S1002
  dmi.product.version: 1.10
  dmi.sys.vendor: Acer

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1581711/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1581711] Re: 024C:B723 Need support for Realtek Wifi card rtl8723bs

2019-08-20 Thread Ubfan
With 19 more months of support for 16.04 (and the 4.4 kernel), consider the 
8723bs drivers in the
trusty-chestersmill repository ( http://oem.archive.canonical.com/updates/ 
trusty-chestersmill public)
These drivers worked fine through the Ubuntu 4.4.0-142 release (when the API 
change broke many drivers). The fix for that problem may be much simpler than 
changing the lwfinger or hadess drivers. Note, bug 175309 for the header fix 
necessary for the audio packages from that repo.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1581711

Title:
  024C:B723 Need support for Realtek Wifi card rtl8723bs

Status in HWE Next:
  Won't Fix
Status in HWE Next xenial series:
  Won't Fix
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  This device is appearing in some OEM machines.

  WORKAROUND: sudo apt-get install build-essential linux-headers-generic git
  git clone https://github.com/hadess/rtl8723as.git
  cd rtl8723as
  make
  sudo make install
  sudo depmod -a
  sudo modprobe r8723bs

  cat /sys/bus/sdio/devices/mmc1:0001:1/*
  0x07
  0xb723
  cat: '/sys/bus/sdio/devices/mmc1:0001:1/firmware_node': Is a directory
  sdio:c07v024CdB723
  cat: '/sys/bus/sdio/devices/mmc1:0001:1/power': Is a directory
  cat: '/sys/bus/sdio/devices/mmc1:0001:1/subsystem': Is a directory
  SDIO_CLASS=07
  SDIO_ID=024C:B723
  MODALIAS=sdio:c07v024CdB723
  0x024c

  WORKAROUND 2: Install this DKMS driver package:
  
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1581711/+attachment/4732838/+files
  /rtl8723bs-dkms_4.4.1+17245.20160325.2_all.deb

  ---
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=e59c3a84-25cb-4931-887e-13ab29829963
  InstallationDate: Installed on 2016-05-14 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Release amd64 
(20160421)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 06cb:73f4 Synaptics, Inc.
   Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Acer One S1002
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-22-generic.efi.signed 
root=/dev/mmcblk0p2 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-22.39-generic 4.4.8
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-22-generic N/A
   linux-backports-modules-4.4.0-22-generic  N/A
   linux-firmware1.157
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  Tags:  xenial
  Uname: Linux 4.4.0-22-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 10/20/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.10
  dmi.board.name: Popcorn
  dmi.board.vendor: Acer
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.10:bd10/20/2015:svnAcer:pnOneS1002:pvr1.10:rvnAcer:rnPopcorn:rvrTobefilledbyO.E.M.:cvnAcer:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: One S1002
  dmi.product.version: 1.10
  dmi.sys.vendor: Acer

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1581711/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1678665] Re: mei_me 0000:00:16.0: hbm: properties response: wrong status = 1 CLIENT_NOT_FOUND

2018-09-11 Thread Ubfan
After a few weeks running the 4.15.0-33 kernel, I have seen the hbm...
message twice, much less frequently than before turning off the security
chip, but it's not totally gone.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1678665

Title:
  mei_me :00:16.0: hbm: properties response: wrong status = 1
  CLIENT_NOT_FOUND

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [ 2089.236192] mei_me :00:16.0: hbm: properties response: wrong status = 
1 CLIENT_NOT_FOUND
  [ 2089.236196] mei_me :00:16.0: mei_irq_read_handler ret = -71.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: linux-image-4.10.0-14-generic 4.10.0-14.16
  ProcVersionSignature: Ubuntu 4.10.0-14.16-generic 4.10.3
  Uname: Linux 4.10.0-14-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   2083 F...m pulseaudio
   /dev/snd/controlC0:  caravena   2083 F pulseaudio
  CurrentDesktop: GNOME
  Date: Sun Apr  2 16:59:22 2017
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (616 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.0-14-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.10.0-14-generic N/A
   linux-backports-modules-4.10.0-14-generic  N/A
   linux-firmware 1.164
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1678665] Re: mei_me 0000:00:16.0: hbm: properties response: wrong status = 1 CLIENT_NOT_FOUND

2018-08-28 Thread Ubfan
On a Lenovo W520, kernel 4.15.0-33, changing the UEFI Settings for the
Security Chip to "disabled" from "ignore" eliminated both this mei-me
error, and the tpm error , both of which were appearing on the black
screen which appeared briefly after a resume.BIOS revision 8BET62WW
(1.42 ), Firmware revision 1.36, SMBIOS 2.6.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1678665

Title:
  mei_me :00:16.0: hbm: properties response: wrong status = 1
  CLIENT_NOT_FOUND

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [ 2089.236192] mei_me :00:16.0: hbm: properties response: wrong status = 
1 CLIENT_NOT_FOUND
  [ 2089.236196] mei_me :00:16.0: mei_irq_read_handler ret = -71.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: linux-image-4.10.0-14-generic 4.10.0-14.16
  ProcVersionSignature: Ubuntu 4.10.0-14.16-generic 4.10.3
  Uname: Linux 4.10.0-14-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   2083 F...m pulseaudio
   /dev/snd/controlC0:  caravena   2083 F pulseaudio
  CurrentDesktop: GNOME
  Date: Sun Apr  2 16:59:22 2017
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (616 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.0-14-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.10.0-14-generic N/A
   linux-backports-modules-4.10.0-14-generic  N/A
   linux-firmware 1.164
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1678665] Re: mei_me 0000:00:16.0: hbm: properties response: wrong status = 1 CLIENT_NOT_FOUND

2018-07-22 Thread Ubfan
Two weeks of running kernel 4.0.15-23 did not produce the error when
returning from suspend.  After the kernel update to 4.0.15-29, the error
appears nearly every return from suspend, much more frequent than with
the 4.0.15-24 kernel.  Again, no adverse effects are seen from the
error.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1678665

Title:
  mei_me :00:16.0: hbm: properties response: wrong status = 1
  CLIENT_NOT_FOUND

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [ 2089.236192] mei_me :00:16.0: hbm: properties response: wrong status = 
1 CLIENT_NOT_FOUND
  [ 2089.236196] mei_me :00:16.0: mei_irq_read_handler ret = -71.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: linux-image-4.10.0-14-generic 4.10.0-14.16
  ProcVersionSignature: Ubuntu 4.10.0-14.16-generic 4.10.3
  Uname: Linux 4.10.0-14-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   2083 F...m pulseaudio
   /dev/snd/controlC0:  caravena   2083 F pulseaudio
  CurrentDesktop: GNOME
  Date: Sun Apr  2 16:59:22 2017
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (616 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.0-14-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.10.0-14-generic N/A
   linux-backports-modules-4.10.0-14-generic  N/A
   linux-firmware 1.164
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1678665] Re: mei_me 0000:00:16.0: hbm: properties response: wrong status = 1 CLIENT_NOT_FOUND

2018-07-04 Thread Ubfan
After the 4.15.0-124 kernel update, I started noticing the mei_me error 
messages at the initial startup screen (which usually only had tpm errors), 
although othing fails to work.  
$ dmesg |fgrep mei
[ 2022.278241] mei_me :00:16.0: hbm: properties response: wrong status = 1 
CLIENT_NOT_FOUND
[ 2022.278246] mei_me :00:16.0: mei_irq_read_handler ret = -71.
[ 2022.278281] mei_me :00:16.0: unexpected reset: dev_state = INIT_CLIENTS 
fw status = 1E000245 6006 
[ 6477.968336] mei_me :00:16.0: hbm: properties response: wrong status = 1 
CLIENT_NOT_FOUND
[ 6477.968342] mei_me :00:16.0: mei_irq_read_handler ret = -71.
[ 6477.968374] mei_me :00:16.0: unexpected reset: dev_state = INIT_CLIENTS 
fw status = 1E000245 6006 
[42278.652813] mei_me :00:16.0: hbm: properties response: wrong status = 1 
CLIENT_NOT_FOUND
[42278.652818] mei_me :00:16.0: mei_irq_read_handler ret = -71.
[42278.652852] mei_me :00:16.0: unexpected reset: dev_state = INIT_CLIENTS 
fw status = 1E000245 6006 
$ uname -a
Linux leno 4.15.0-24-generic #26-Ubuntu SMP Wed Jun 13 08:44:47 UTC 2018 x86_64 
x86_64 x86_64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 18.04 LTS
Release:18.04
Codename:   bionic
BIOS Revision: 1.42
Firmware Revision: 1.36
Vendor: LENOVO
Version: 8BET62WW (1.42 )
Release Date: 07/26/2013
System Information
Manufacturer: LENOVO
Product Name: 42763JU
Version: ThinkPad W520

Processor Information
Socket Designation: CPU
Type: Central Processor
Family: Core i7
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Signature: Type 0, Family 6, Model 42, Stepping 7
Version: Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
Voltage: 1.2 V
External Clock: 100 MHz
Max Speed: 2400 MHz
Current Speed: 2400 MHz

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1678665

Title:
  mei_me :00:16.0: hbm: properties response: wrong status = 1
  CLIENT_NOT_FOUND

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [ 2089.236192] mei_me :00:16.0: hbm: properties response: wrong status = 
1 CLIENT_NOT_FOUND
  [ 2089.236196] mei_me :00:16.0: mei_irq_read_handler ret = -71.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: linux-image-4.10.0-14-generic 4.10.0-14.16
  ProcVersionSignature: Ubuntu 4.10.0-14.16-generic 4.10.3
  Uname: Linux 4.10.0-14-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   2083 F...m pulseaudio
   /dev/snd/controlC0:  caravena   2083 F pulseaudio
  CurrentDesktop: GNOME
  Date: Sun Apr  2 16:59:22 2017
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (616 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.0-14-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.10.0-14-generic N/A
   linux-backports-modules-4.10.0-14-generic  N/A
   linux-firmware 1.164
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1561474] Re: Bluetooth will be disable after resume from suspend on Xenial

2018-05-06 Thread Ubfan
Ubuntu 18.04 running bluez 5.37-0ubuntu5.1 has fixed the 16.04 problem
of bluetooth not running after a suspend.  My mouse has successfully
reconnected 100+ times.  The USB inputxx is still incrementing at each
resume, so that may not have been related to the problem.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1561474

Title:
  Bluetooth will be disable after resume from suspend on Xenial

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  CID: 201208-11536 Dell Latitude 6430u

  The Bluetooth will be disabled after resume from suspend.
  You will need to use "hciconfig hci0 reset" to enable it.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-15-generic 4.4.0-15.31
  ProcVersionSignature: Ubuntu 4.4.0-15.31-generic 4.4.6
  Uname: Linux 4.4.0-15-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1202 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu Mar 24 19:14:07 2016
  HibernationDevice: RESUME=UUID=25c03762-079c-4c6d-aedb-ec768318a6bf
  InstallationDate: Installed on 2016-03-24 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
  MachineType: Dell Inc. Latitude 6430U
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-15-generic 
root=UUID=18cfda3e-4f3d-40cf-8e7e-a83030819487 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-15-generic N/A
   linux-backports-modules-4.4.0-15-generic  N/A
   linux-firmware1.157
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/15/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A02
  dmi.board.asset.tag: 1234567
  dmi.board.name: 0MN74V
  dmi.board.vendor: Dell Inc.
  dmi.board.version: X01
  dmi.chassis.asset.tag: 1234567
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA02:bd11/15/2012:svnDellInc.:pnLatitude6430U:pvr01:rvnDellInc.:rn0MN74V:rvrX01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude 6430U
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1385113] Re: hid-generic 0005:099A:0500.0001: unknown main item tag 0x0

2018-05-03 Thread Ubfan
Ubuntu 18.04 still has the "unknown main item tag", occurring on a Thinkpad 
W520 after a suspend, but the Bluetooth Microsoft Sculpt Comfort Mouse now 
reconnects successfully.
dmesg grep ...
[34731.172621] hid-generic 0005:045E:07A2.0013: unknown main item tag 0x0
[34731.172743] input: Microsoft Sculpt Comfort Mouse as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/0005:045E:07A2.0013/input/input33
[34731.175807] hid-generic 0005:045E:07A2.0013: input,hidraw2: BLUETOOTH HID 
v1.29 Mouse [Microsoft Sculpt Comfort Mouse] on 60:d8:19:b1:b6:75
[35612.593797] hid-generic 0005:045E:07A2.0014: unknown main item tag 0x0
[35612.593948] input: Microsoft Sculpt Comfort Mouse as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/0005:045E:07A2.0014/input/input34
[35612.594158] hid-generic 0005:045E:07A2.0014: input,hidraw2: BLUETOOTH HID 
v1.29 Mouse [Microsoft Sculpt Comfort Mouse] on 60:d8:19:b1:b6:75


** This bug is no longer a duplicate of bug 1712176
   hid-generic 0005:099A:0500.0002: unknown main item tag 0x0

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1385113

Title:
  hid-generic 0005:099A:0500.0001: unknown main item tag 0x0

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Message with Mouse Bluetooth

  [   32.960478] hid-generic 0005:099A:0500.0001: unknown main item tag
  0x0

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: linux-image-3.16.0-23-generic 3.16.0-23.31
  ProcVersionSignature: Ubuntu 3.16.0-23.31-generic 3.16.4
  Uname: Linux 3.16.0-23-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  caravena   3344 F pulseaudio
  CurrentDesktop: GNOME
  Date: Fri Oct 24 05:22:54 2014
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2014-09-25 (29 days ago)
  InstallationMedia: Ubuntu-GNOME 14.10 "Utopic Unicorn" - Alpha amd64 
(20140923)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-3.16.0-23-generic 
root=UUID=0fb75fae-baa3-428b-ace4-498e69ff7fb6 ro rootflags=subvol=@ quiet 
splash nomdmonddf nomdmonisw nomdmonddf nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.16.0-23-generic N/A
   linux-backports-modules-3.16.0-23-generic  N/A
   linux-firmware 1.138
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1712176] Re: hid-generic 0005:099A:0500.0002: unknown main item tag 0x0

2018-05-03 Thread Ubfan
*** This bug is a duplicate of bug 1385113 ***
https://bugs.launchpad.net/bugs/1385113

** This bug has been marked a duplicate of bug 1385113
   hid-generic 0005:099A:0500.0001: unknown main item tag 0x0

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1712176

Title:
  hid-generic 0005:099A:0500.0002: unknown main item tag 0x0

Status in linux package in Ubuntu:
  Expired

Bug description:
  Hello,

  dmesg:
  [   29.239524] hid-generic 0005:099A:0500.0002: unknown main item tag 0x0

  Regards,
  --
  Cristian

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.12.0-11-generic 4.12.0-11.12
  ProcVersionSignature: Ubuntu 4.12.0-11.12-generic 4.12.5
  Uname: Linux 4.12.0-11-generic x86_64
  ApportVersion: 2.20.6-0ubuntu6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  caravena   1832 F pulseaudio
   /dev/snd/controlC1:  caravena   1832 F pulseaudio
  CurrentDesktop: GNOME
  Date: Mon Aug 21 15:58:08 2017
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2017-07-05 (46 days ago)
  InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.12.0-11-generic 
root=UUID=6b614287-8ce5-49c5-b66d-e92fa9568c2b ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.12.0-11-generic N/A
   linux-backports-modules-4.12.0-11-generic  N/A
   linux-firmware 1.167
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-07-05 (46 days ago)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.family: ChiefRiver System
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1561474] Re: Bluetooth will be disable after resume from suspend on Xenial

2017-11-20 Thread Ubfan
The bluetooth failure to resume after a suspend seems USB related. The failure 
happens 
about 50% of the time, and when it does, disabling bluetooth and restarting 
fixes
it.
On a Lenovo W520, Ubuntu 16.04, 64 bit, kernel 4.4.0-98-generic, Microsoft 
Sculpt
Comfort BT mouse.

Looking at dmesg|tail on the restoring of BT mouse after sleep and restarting
it, a new USB device is created and used.

Return from sleep, BT indicator greyed, BT says OFF, BT mouse is inactive.
>From the indicator, start BT settings, and from the settings, turn off 
>bluetooth,
(indicator disappears), one line is added to dmesg output:

[37331.845034] usb 1-1.4: USB disconnect, device number 10


>From the settings, turn back on the BT active switch (BT indicator appears):

[37353.288616] usb 1-1.4: new full-speed USB device number 11 using ehci-pci
[37353.386069] usb 1-1.4: New USB device found, idVendor=0a5c, idProduct=217f
[37353.386079] usb 1-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[37353.386084] usb 1-1.4: Product: Broadcom Bluetooth Device
[37353.386089] usb 1-1.4: Manufacturer: Broadcom Corp
[37353.386092] usb 1-1.4: SerialNumber: 60D819B1B675
[37353.578455] [UFW BLOCK] IN=wlp3s0 OUT= 
MAC=01:00:5e:00:00:01:c0:56:27:ce:27:3e:08:00 
SRC=192.168.1.1 DST=224.0.0.1 LEN=28 TOS=0x00 PREC=0xC0 TTL=1 ID=61239 
PROTO=2 

Note the USB device number 10 was disconnected, but the new USB device is 11.
BT indicator is still greyed, BT switch is off, mouse inactive. Turn on BT in 
the indicator
Indicator becomes white.
Absolutely no change in the dmesg output


Click/move mouse to connect, lock shows on BT indicator

[37414.788430] hid-generic 0005:045E:07A2.0012: unknown main item tag 0x0
[37414.789070] input: Microsoft Sculpt Comfort Mouse as 
/devices/pci:00/:00:1a.0
  
/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/0005:045E:07A2.0012/input/input32
[37414.789676] hid-generic 0005:045E:07A2.0012: input,hidraw2: BLUETOOTH HID 
v1.29 Mouse
  [Microsoft Sculpt Comfort Mouse] on 60:d8:19:b1:b6:75

Note the USB device has incremented to input32  (this has happened many times 
on this running system)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1561474

Title:
  Bluetooth will be disable after resume from suspend on Xenial

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  CID: 201208-11536 Dell Latitude 6430u

  The Bluetooth will be disabled after resume from suspend.
  You will need to use "hciconfig hci0 reset" to enable it.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-15-generic 4.4.0-15.31
  ProcVersionSignature: Ubuntu 4.4.0-15.31-generic 4.4.6
  Uname: Linux 4.4.0-15-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1202 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu Mar 24 19:14:07 2016
  HibernationDevice: RESUME=UUID=25c03762-079c-4c6d-aedb-ec768318a6bf
  InstallationDate: Installed on 2016-03-24 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
  MachineType: Dell Inc. Latitude 6430U
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-15-generic 
root=UUID=18cfda3e-4f3d-40cf-8e7e-a83030819487 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-15-generic N/A
   linux-backports-modules-4.4.0-15-generic  N/A
   linux-firmware1.157
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/15/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A02
  dmi.board.asset.tag: 1234567
  dmi.board.name: 0MN74V
  dmi.board.vendor: Dell Inc.
  dmi.board.version: X01
  dmi.chassis.asset.tag: 1234567
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA02:bd11/15/2012:svnDellInc.:pnLatitude6430U:pvr01:rvnDellInc.:rn0MN74V:rvrX01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude 6430U
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1481136] Re: Bluetooth mouse fails to reconnect after suspend + resume

2017-03-09 Thread Ubfan
Ubuntu 16.04 patched to date.
Below is the sequence of re-enabling the bluetooth mouse after suspend. Note 
that
either of two different things being blocked, tpacpi_bluetooth_sw, and hci0, 
will
keep the mouse from working.

After a resume from suspend, the title bar bluetooth icon is greyed out.
$ rfkill list
0: tpacpi_bluetooth_sw: Bluetooth
Soft blocked: yes
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no

>From title bar bluetooth icon, started bluetooth settings, and in the
settings, turned the bluetooth switch off, then on. Title bar icon disappeared,
then reappeared greyed out.
$ rfkill list
0: tpacpi_bluetooth_sw: Bluetooth
Soft blocked: no
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
26: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no

After turning on the bluetooth switch from the title bar bluetooth icon
the icon became white, and connected with the bluetooth mouse.
$ rfkill list
0: tpacpi_bluetooth_sw: Bluetooth
Soft blocked: no
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
26: hci0: Bluetooth
Soft blocked: no
Hard blocked: no

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1481136

Title:
  Bluetooth mouse fails to reconnect after suspend + resume

Status in Canonical System Image:
  Confirmed
Status in Canonical Pocket Desktop:
  In Progress
Status in bluez package in Ubuntu:
  In Progress

Bug description:
  I can connect the bluetooth mouse (Logitech M557) using the GUI and
  the device works properly.

  However, after suspend and resume the mouse fails to reconnect. It
  does "attempt" to reconnect, in that I see the padlock flashes
  momentarily onto the bluetooth icon on the toolbar applet. Similarly,
  if the Bluetooth Settings dialog is open the devices flashes
  momentarily bold as if connected. Both effects happen whenever the
  mouse is used (movement or mouse click) but the device does not
  connect.

  I have a workaround, which is to remove the device and pair it using
  the command line as follows:

  sudo bluez-test-device remove 00:1F:20:EF:B1:00
  sudo bluez-simple-agent hci0 00:1F:20:EF:B1:00 remove
  sudo bluez-simple-agent hci0 00:1F:20:EF:B1:00
  sudo bluez-test-device trusted 00:1F:20:EF:B1:00 yes
  sudo bluez-test-input connect 00:1F:20:EF:B1:00

  Once paired manually in this manner the devices appears in the
  Bluetooth Settings as normal an successfully reconnects when resuming.

  I'm submitted a new bug as this is similar but not the same as other
  bugs reported. In particular the workarounds presented in other bugs
  do not work for me and the workaround I'm using was not suggested in
  other cases.

  Thanks.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: bluez 4.101-0ubuntu25
  ProcVersionSignature: Ubuntu 3.19.0-25.26-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Aug  4 09:53:18 2015
  InstallationDate: Installed on 2014-01-23 (557 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: TOSHIBA KIRA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-25-generic.efi.signed 
root=UUID=a0fdb0ee-bbeb-4872-8e79-1a785c304e91 ro libata.force=noncq 
vesafb.invalid=1 splash quiet nopat vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/15/2013
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: Version 1.30
  dmi.board.asset.tag: 00
  dmi.board.name: KIRA
  dmi.board.vendor: TOSHIBA
  dmi.board.version: Version A0
  dmi.chassis.asset.tag: 00
  dmi.chassis.type: 10
  dmi.chassis.vendor: TOSHIBA
  dmi.chassis.version: Version 1.0
  dmi.modalias: 
dmi:bvnTOSHIBA:bvrVersion1.30:bd02/15/2013:svnTOSHIBA:pnKIRA:pvrPSU7FA-00T00K:rvnTOSHIBA:rnKIRA:rvrVersionA0:cvnTOSHIBA:ct10:cvrVersion1.0:
  dmi.product.name: KIRA
  dmi.product.version: PSU7FA-00T00K
  dmi.sys.vendor: TOSHIBA
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
    BD Address: B4:B6:76:C4:A2:88  ACL MTU: 310:10  SCO MTU: 64:8
    UP RUNNING PSCAN
    RX bytes:587136 acl:36542 sco:0 events:271 errors:0
    TX bytes:2913 acl:109 sco:0 commands:81 errors:0
  mtime.conffile..etc.bluetooth.main.conf: 2015-08-01T14:24:23.630880

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1481136/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1490349] Re: 15:10 and 16.04: bluetoothd reports "Not enough handles to register service" at start

2016-12-29 Thread Ubfan
On Lenovo w520, Ubuntu 16.04, kernel 4.4.0-57-generic, bluez 5.37-0ubuntu5, 
unity desktop.
Same error messages relating to "Not enough free handles to register service".
Resuming from suspend results in bluetooth icon in title bar grayed out, 
bluetooth switch is OFF, and bt mouse non-functional.  Invoking the bluetooth 
settings from the icon shows bt switch ON.  From the settings, turn bluetooth 
OFF, then ON again, then in the title bar icon, turn bluetooth ON also, then 
the mouse will connect.  Happens 10-20% of the time resuming from suspend, 
greatly improved from kernel 4.4.0-32.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1490349

Title:
  15:10 and 16.04: bluetoothd reports "Not enough handles to register
  service" at start

Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  On 15:10 after the bluetooth service has been stopped and restarted it
  is not possible to scan or connect to devices:

  $ sudo systemctl start bluetooth
  $ journalctl --unit=bluetooth | tail -n 19 | awk '{$1="";$2="";$4="";print 
$0}'
23:31:53  systemd[1]: Starting Bluetooth service...
23:31:53  bluetoothd[16647]: Bluetooth daemon 5.33
23:31:53  systemd[1]: Started Bluetooth service.
23:31:53  bluetoothd[16647]: Starting SDP server
23:31:53  bluetoothd[16647]: Bluetooth management interface 1.9 initialized
23:31:53  bluetoothd[16647]: Failed to obtain handles for "Service Changed" 
characteristic
23:31:53  bluetoothd[16647]: Not enough free handles to register service
23:31:53  bluetoothd[16647]: Error adding Link Loss service
23:31:53  bluetoothd[16647]: Not enough free handles to register service
23:31:53  bluetoothd[16647]: Not enough free handles to register service
23:31:53  bluetoothd[16647]: Not enough free handles to register service
23:31:53  bluetoothd[16647]: Current Time Service could not be registered
23:31:53  bluetoothd[16647]: gatt-time-server: Input/output error (5)
23:31:53  bluetoothd[16647]: Not enough free handles to register service
23:31:53  bluetoothd[16647]: Not enough free handles to register service
23:31:53  bluetoothd[16647]: Sap driver initialization failed.
23:31:53  bluetoothd[16647]: sap-server: Operation not permitted (1)
23:31:53  bluetoothd[16647]: Endpoint registered: sender=:1.440 
path=/MediaEndpoint/A2DPSource
23:31:53  bluetoothd[16647]: Endpoint registered: sender=:1.440 
path=/MediaEndpoint/A2DPSink

  And

  $ bluetoothctl
  [NEW] Controller 00:1F:3A:E0:0A:AF hephaestion.lan.iam.tj [default]
  [NEW] Device 00:0A:95:4B:BD:C2 Apple Wireless Keyboard
  [NEW] Device 00:07:61:3B:86:98 Bluetooth Travel Mouse
  [bluetooth]# scan on
  Failed to start discovery: org.bluez.Error.NotReady

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1481136] Re: Bluetooth mouse fails to reconnect after suspend + resume

2016-10-04 Thread Ubfan
The last update of Ubuntu 16.04 (kernel 4.4.0-36 to 4.4.0-38) reduced
the failure to reconnect of my Microsoft Sculpt Comfort BT mouse from
90% to 15%.  Something improved a lot.  The fix I have been using was to
pull up the settings/bluetooth, turn off bluetooth (it says on when the
window is started), turn it back on, and up in the title bar
notifications, turn the bluetooth on there too (it comes back from the
suspend in the off setting and is not changed by the bluetooth settings
window).  Then it reconnects.  Just trying to turn bluetooth back on
from the title app results in  the momentary padlock flashing described
in initial post.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1481136

Title:
  Bluetooth mouse fails to reconnect after suspend + resume

Status in Canonical System Image:
  Confirmed
Status in Canonical Pocket Desktop:
  In Progress
Status in bluez package in Ubuntu:
  In Progress

Bug description:
  I can connect the bluetooth mouse (Logitech M557) using the GUI and
  the device works properly.

  However, after suspend and resume the mouse fails to reconnect. It
  does "attempt" to reconnect, in that I see the padlock flashes
  momentarily onto the bluetooth icon on the toolbar applet. Similarly,
  if the Bluetooth Settings dialog is open the devices flashes
  momentarily bold as if connected. Both effects happen whenever the
  mouse is used (movement or mouse click) but the device does not
  connect.

  I have a workaround, which is to remove the device and pair it using
  the command line as follows:

  sudo bluez-test-device remove 00:1F:20:EF:B1:00
  sudo bluez-simple-agent hci0 00:1F:20:EF:B1:00 remove
  sudo bluez-simple-agent hci0 00:1F:20:EF:B1:00
  sudo bluez-test-device trusted 00:1F:20:EF:B1:00 yes
  sudo bluez-test-input connect 00:1F:20:EF:B1:00

  Once paired manually in this manner the devices appears in the
  Bluetooth Settings as normal an successfully reconnects when resuming.

  I'm submitted a new bug as this is similar but not the same as other
  bugs reported. In particular the workarounds presented in other bugs
  do not work for me and the workaround I'm using was not suggested in
  other cases.

  Thanks.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: bluez 4.101-0ubuntu25
  ProcVersionSignature: Ubuntu 3.19.0-25.26-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Aug  4 09:53:18 2015
  InstallationDate: Installed on 2014-01-23 (557 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: TOSHIBA KIRA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-25-generic.efi.signed 
root=UUID=a0fdb0ee-bbeb-4872-8e79-1a785c304e91 ro libata.force=noncq 
vesafb.invalid=1 splash quiet nopat vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/15/2013
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: Version 1.30
  dmi.board.asset.tag: 00
  dmi.board.name: KIRA
  dmi.board.vendor: TOSHIBA
  dmi.board.version: Version A0
  dmi.chassis.asset.tag: 00
  dmi.chassis.type: 10
  dmi.chassis.vendor: TOSHIBA
  dmi.chassis.version: Version 1.0
  dmi.modalias: 
dmi:bvnTOSHIBA:bvrVersion1.30:bd02/15/2013:svnTOSHIBA:pnKIRA:pvrPSU7FA-00T00K:rvnTOSHIBA:rnKIRA:rvrVersionA0:cvnTOSHIBA:ct10:cvrVersion1.0:
  dmi.product.name: KIRA
  dmi.product.version: PSU7FA-00T00K
  dmi.sys.vendor: TOSHIBA
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
    BD Address: B4:B6:76:C4:A2:88  ACL MTU: 310:10  SCO MTU: 64:8
    UP RUNNING PSCAN
    RX bytes:587136 acl:36542 sco:0 events:271 errors:0
    TX bytes:2913 acl:109 sco:0 commands:81 errors:0
  mtime.conffile..etc.bluetooth.main.conf: 2015-08-01T14:24:23.630880

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1481136/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1286388] Re: changes to the boot order made via efibootmgr are not sticking

2015-07-09 Thread Ubfan
After the Software Updater run of 7/9/2015, a new 3.13.0-57 kernel
(signed and unsigned) was added, and something added the Boot,
ubuntu, shim bootloader entry again, at the first position (where it
originally was).  I did nothing explicit to add this shim entry, and the
machine is running with secure boot disabled.  Attached is the
efibootmgr output and the diff of fwts outputs.  My Ubuntu boot default
was restored, but something seems wrong with the update process changing
nvram.

$ sudo efibootmgr -v

BootCurrent:    

Timeout: 2 seconds  

BootOrder: ,0004,0003,2003,2001,2002

Boot* ubuntu
HD(2,e1800,82000,04b9edc2-fc48-11e1-8ec1-e7137b3aaf29)File(\EFI\ubuntu\shimx64.efi)
 
Boot0001* EFI Network 0 for IPv6 (00-8C-FA-3B-27-AA)
ACPI(a0341d0,0)PCI(1c,0)PCI(0,0)MAC(008cfa3b27aa,0)030d3c00$
Boot0002* EFI Network 0 for IPv4 (00-8C-FA-3B-27-AA)
ACPI(a0341d0,0)PCI(1c,0)PCI(0,0)MAC(008cfa3b27aa,0)IPv4(0.0.0.0$
Boot0003* Ubuntu
HD(2,e1800,82000,04b9edc2-fc48-11e1-8ec1-e7137b3aaf29)File(\EFI\ubuntu\grubx64.efi)RC
   
Boot0004* Windows Boot Manager  
HD(2,e1800,82000,04b9edc2-fc48-11e1-8ec1-e7137b3aaf29)File(\EFI\Microsoft\Boot\bootmgfw$
Boot2001* EFI USB DeviceRC  

Boot2002* EFI DVD/CDROM RC  

Boot2003* EFI Network   RC 


$ diff results.log fwtwuefidumpnewdefault.log
6c6
 This test run on 09/07/15 at 21:55:03 on host Linux tosi 3.19.8-992-generic
---
 This test run on 09/07/15 at 13:27:54 on host Linux tosi 3.19.8-992-generic
51,57d50
 Name: Boot.
   GUID: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C
   Attr: 0x7 (NonVolatile,BootServ,RunTime).
   Active: Yes
   Info: ubuntu
   Path: 
\HARDDRIVE(2,e1800,82000,c2edb90448fce111,8e,c1)\FILE('\EFI\ubuntu\shimx64.efi').
 
110c103
   BootCurrent: 0x.
---
   BootCurrent: 0x0003.
115c108
   Boot Order: 0x,0x0004,0x0003,0x2003,0x2001,0x2002.
---
   Boot Order: 0x0004,0x0003,0x2003,0x2001,0x2002.
121c114
   Data: : 00 00..
---
   Data: : 03 00..
133c126
   Data: 0060: 5c 00 73 00 68 00 69 00 6d 00 78 00 36 00 34 00  
\.s.h.i.m.x.6.4.
---
   Data: 0060: 5c 00 67 00 72 00 75 00 62 00 78 00 36 00 34 00  
 \.g.r.u.b.x.6.4.
1119,1120c1112,1113
   Size: 10 bytes of data.
   Data: : 00 00 04 00 03 00 02 00 01 00..
---
   Size: 8 bytes of data.
   Data: : 04 00 03 00 02 00 01 00  

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1286388

Title:
  changes to the boot order made via efibootmgr are not sticking

Status in grub2 package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I installed Ubuntu 14.04 beta on my HP Elitebook Folio laptop. Fresh
  install, complete hard disk formatted. After successful installation I
  rebooted. The system tells me I am missing the OS. Then from BIOS menu
  F9 I could manually boot via EFI and got the system working. However I
  could not change bios settings such that the system would boot
  automatically via UEFI. After long trial and error with advice from
  several IRC colleagues I somehow managed to get the system boot via
  BIOS. But it seems that changes that are done to boot order, do not
  stay permanent.

  I was told that my  boot firmware assumes that a drive without a boot flag 
on any of its primary partitions 
  in its msdos label cannot be booted via BIOS (again, only true with Windows).

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: grub-efi-amd64 (not installed)
  ProcVersionSignature: Ubuntu 3.13.0-13.33-generic 3.13.5
  Uname: Linux 3.13.0-13-generic x86_64
  ApportVersion: 2.13.2-0ubuntu5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Mar  1 00:10:27 2014
  InstallationDate: Installed on 2014-02-28 (0 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140224)
  SourcePackage: grub2
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : 

[Kernel-packages] [Bug 1286388] Re: changes to the boot order made via efibootmgr are not sticking

2015-07-09 Thread Ubfan
BIOS Insyd 6.60
EFI version 2.31 by INSYDE
Firmware 6.10
Toshiba Satellite S955, UEFI with Secure boot disabled.
OS 64 bit Ubuntu 14.04.2, running kernel 3.19.8-992-generic
Dual boot with Windows 8.1

After a Windows 8.1 update 7/8/2015 (two important updates, all optional (2) 
ignored, the EFI boot order is for each boot, always returned to the default 
order with Windows first.  This machine has been running 14.04 for a year, and 
I have successfully changed the boot order before.
Ubuntu may still be selected at boot time (F12, select hdd, then select ubuntu) 
and it successfully boots.,  efibootmgr can still alter the boot order to put 
ubuntu first, and reorder the USB/Net entries:
(ubuntu, windows, USB, DVD, Net).
 Checking the order with another efibootmgr -v shows the new order, but a 
reboot will have the origial EFI order restored:
 Windows,Ubuntu,Network,USB,DVD
The EFI Settings order was unchanged from USB, DVD, HDD, NET. The ubuntu entry 
had the name ubuntu, and that still works
when selected from the EFI device/os selection (F12).
  Looks like some nvram entry was changed by Windows to force the order reset 
at each boot.  The efibootmgr reordering only
changes the Boot Order variable (as named by fwts uefidump.
There are other variables, like Physical Boot Order, which might need changing 
to make the boot order permanent.

I am examining the differences on the fwts uefi outputs from before the problem 
and now, but at first pass, nothing obvious
turned up.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1286388

Title:
  changes to the boot order made via efibootmgr are not sticking

Status in grub2 package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I installed Ubuntu 14.04 beta on my HP Elitebook Folio laptop. Fresh
  install, complete hard disk formatted. After successful installation I
  rebooted. The system tells me I am missing the OS. Then from BIOS menu
  F9 I could manually boot via EFI and got the system working. However I
  could not change bios settings such that the system would boot
  automatically via UEFI. After long trial and error with advice from
  several IRC colleagues I somehow managed to get the system boot via
  BIOS. But it seems that changes that are done to boot order, do not
  stay permanent.

  I was told that my  boot firmware assumes that a drive without a boot flag 
on any of its primary partitions 
  in its msdos label cannot be booted via BIOS (again, only true with Windows).

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: grub-efi-amd64 (not installed)
  ProcVersionSignature: Ubuntu 3.13.0-13.33-generic 3.13.5
  Uname: Linux 3.13.0-13-generic x86_64
  ApportVersion: 2.13.2-0ubuntu5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Mar  1 00:10:27 2014
  InstallationDate: Installed on 2014-02-28 (0 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140224)
  SourcePackage: grub2
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 879120] Re: 11.10 shutdown delay of 1 min when using the open source Broadcom firmware

2014-10-31 Thread Ubfan
Ubuntu 14.04.1 using the open source firmware in /lib/firmware/b43-open,
without the /lib/firmware/b43 files no longer displays the 60 second
delay on shutdown (on the same hardware with the original problem).
Looks like this has been fixed sometime in the last two years.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to b43-fwcutter in Ubuntu.
https://bugs.launchpad.net/bugs/879120

Title:
  11.10 shutdown delay of 1 min when using the open source Broadcom
  firmware

Status in “b43-fwcutter” package in Ubuntu:
  Invalid

Bug description:
  The Broadcom 4311/12 wireless chips require firmware when using the b43 
driver.
  This firmware is available from Broadcom (which is put into /lib/firmware/b43)
  or as open source (which is put into /lib/firmware/b43-open).  Either firmware
  works, but when the proprietary Broadcom firmware is not present in .../b43,
  shutdown takes an extra minute, after the log file line could not find
  .../b43/ucode5.fw.  After a minute, shutdown completes normally.
  Adding in the Broadcom firmware lets shutdown proceed without the minute
  delay.  This behavior is new with the 11.10 release.

  Note the below udev items from /var/log/udev are probably the cause of this
  problem. 
  ...
  KERNEL[18.445953] remove   
/devices/pci:00/:00:02.0/:01:00.0/ssb0:0$
  UDEV_LOG=3
  ACTION=remove
  DEVPATH=/devices/pci:00/:00:02.0/:01:00.0/ssb0:0/firmware/ssb0:0
  SUBSYSTEM=firmware
  FIRMWARE=b43/ucode5.fw
  TIMEOUT=60
  ASYNC=0
  SEQNUM=1822
  .
  and many other FIRMWARE=b43/...fw  paragraphs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/b43-fwcutter/+bug/879120/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1170150] Re: vmlinuz/initrd.img symlinks do not point to signed versions on kernel updates of secure boot UEFI machines

2013-09-22 Thread Ubfan
Downloaded the Sept 20 desktop 64 bit ISO, and on a Secure Boot UEFI
laptop running 13.04, created USB install media, and installed to
another USB set up with gpt and an EFI partition.  Booting the target
USB worked in secure mode, with the signed kernel being used, but the
symlink for the kernel is still to the unsigned kernel.As an aside
here, to be entered into another bug, note that the above
straightforward procedure left the laptop unbootable, with the grub.cfg
file on the hard disk's EFI reset to the uuid of the USB stick, (and an
additional unnecessary NVRAM boot entry added).

** Changed in: linux (Ubuntu Saucy)
   Status: Incomplete = Confirmed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1170150

Title:
  vmlinuz/initrd.img symlinks do not point to signed versions on kernel
  updates of secure boot UEFI machines

Status in “linux” package in Ubuntu:
  Confirmed
Status in “linux” source package in Raring:
  Won't Fix
Status in “linux” source package in Saucy:
  Confirmed

Bug description:
  Kernel updates on a UEFI pc with secure boot enabled have the vmlinuz
  and initrd.img symlinks updated, but they point to the unsigned
  versions of the kernel instead of the signed ones.  The pc was set up
  with secure boot on, has never been booted with secure boot off, and
  no runtime problems have been noted from the wrong symlinks.  Having
  the links to the signed versions is highly desirable, in order to set
  up a USB stick with its own EFI directory to boot Ubuntu, and not have
  to worry about changing the USB stick's grub.cfg files.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp