[Kernel-packages] [Bug 2059712] [NEW] `perf report` complains about missing tips.txt file

2024-03-28 Thread Tom Smeding
Public bug reported:

The `perf` command-line tool expects a tips.txt file at
/usr/share/doc/perf-tip/tips.txt, from which it displays random tips in
`perf report` mode. If this file is not present (it is not on Ubuntu
22.04 LTS), `perf report` complains, both in interactive and in non-
interactive mode, that:

> Cannot load tips.txt file, please install perf!

Reproduction:

$ mkdir tmpdir; cd tmpdir
$ perf record ls
$ perf report | cat

The expected behaviour is that this message is not shown (and a
(useful?) tip is shown instead).

This has led to bug reports (and fixes) on various other Linux
distributions: at least Fedora [1] and Arch [2].

[1]: https://bugzilla.redhat.com/show_bug.cgi?id=1448402
[2]: https://bugs.archlinux.org/task/48788

Further info:
$ lsb_release -rd
Description:Ubuntu 22.04.4 LTS
Release:22.04

$ apt-cache policy linux-tools-common | head -5
linux-tools-common:
  Installed: 5.15.0-101.111
  Candidate: 5.15.0-101.111
  Version table:
 *** 5.15.0-101.111 500

$ cat /proc/version_signature 
Ubuntu 5.15.0-101.111-generic 5.15.143

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

-- 
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/2059712

Title:
  `perf report` complains about missing tips.txt file

Status in linux package in Ubuntu:
  New

Bug description:
  The `perf` command-line tool expects a tips.txt file at
  /usr/share/doc/perf-tip/tips.txt, from which it displays random tips
  in `perf report` mode. If this file is not present (it is not on
  Ubuntu 22.04 LTS), `perf report` complains, both in interactive and in
  non-interactive mode, that:

  > Cannot load tips.txt file, please install perf!

  Reproduction:

  $ mkdir tmpdir; cd tmpdir
  $ perf record ls
  $ perf report | cat

  The expected behaviour is that this message is not shown (and a
  (useful?) tip is shown instead).

  This has led to bug reports (and fixes) on various other Linux
  distributions: at least Fedora [1] and Arch [2].

  [1]: https://bugzilla.redhat.com/show_bug.cgi?id=1448402
  [2]: https://bugs.archlinux.org/task/48788

  Further info:
  $ lsb_release -rd
  Description:  Ubuntu 22.04.4 LTS
  Release:  22.04

  $ apt-cache policy linux-tools-common | head -5
  linux-tools-common:
Installed: 5.15.0-101.111
Candidate: 5.15.0-101.111
Version table:
   *** 5.15.0-101.111 500

  $ cat /proc/version_signature 
  Ubuntu 5.15.0-101.111-generic 5.15.143

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2059712/+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 2052597] [NEW] NVreg_PreserveVideoMemoryAllocations=1 should be the default

2024-02-07 Thread Tom Cook
Public bug reported:

As far as I can tell, any system with an NVIDIA graphics card won't
resume from sleep correctly when running mantic unless the NVIDIA driver
has the option `NVreg_PreserveVideoMemoryAllocations=1` set.  This is
because by default most video memory allocations are not preserved on
suspend and the user space needs to handle the case where (from the
application's point of view) they suddenly and mysteriously go missing.

The GNOME shell fails to do this and fails fairly spectacularly.  This
results in a wide variety of visual defects but leaves the system
unusable.

The suggested option works around this by making the driver write video
memory out to file while suspending and restoring video memory from file
when resuming.  It's important that the path where this temporary file
is written out has enough free space to hold all of video memory; on
mantic, `/tmp` (the default) seems appropriate as it is not a ramfs but
this could be configured elsewhere.

While there are obviously cases where this behaviour is not desired
(mainly where GPUs are used for non-display purposes), it seems likely
that in the vast majority of cases where such a GPU is present and the
system is regularly put into a sleep state that the GPU will be used for
display and not as a GPGPU.  Systems that are put into sleep states tend
to be portables, where the GPU is primarily for display; systems used
for GPGPU tend not to be portable and are not usually put into sleep
states where the GPU is shut down.  Obviously these are generalisations,
but they are _generally_ true.  It's also likely that users doing GPGPU
will already have to go and reconfigure their systems for optimal
performance whereas desktop users generally expect the system to work
correctly out of the box.  I'm a long-term Ubuntu user and software
engineer and it took me a couple of weeks to figure out that suspend
isn't broken on my new laptop, I just need to set GPU driver options;
the chances of a normal user figuring this out are slim.

I'd suggest that putting the option in /etc/modprobe.d/nvidia-graphics-
drivers-kms.conf is likely to be the right way to achieve this.

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 23.10
Release:23.10
Codename:   mantic

$ apt-cache policy nvidia-kernel-common-535
nvidia-kernel-common-535:
  Installed: 535.154.05-0ubuntu0.23.10.1
  Candidate: 535.154.05-0ubuntu0.23.10.1
  Version table:
 *** 535.154.05-0ubuntu0.23.10.1 500
500 http://gb.archive.ubuntu.com/ubuntu mantic-updates/restricted amd64 
Packages
500 http://security.ubuntu.com/ubuntu mantic-security/restricted amd64 
Packages
100 /var/lib/dpkg/status
 535.113.01-0ubuntu3 500
500 http://gb.archive.ubuntu.com/ubuntu mantic/rest

** Affects: nvidia-graphics-drivers-535 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  NVreg_PreserveVideoMemoryAllocations=1 should be the default

Status in nvidia-graphics-drivers-535 package in Ubuntu:
  New

Bug description:
  As far as I can tell, any system with an NVIDIA graphics card won't
  resume from sleep correctly when running mantic unless the NVIDIA
  driver has the option `NVreg_PreserveVideoMemoryAllocations=1` set.
  This is because by default most video memory allocations are not
  preserved on suspend and the user space needs to handle the case where
  (from the application's point of view) they suddenly and mysteriously
  go missing.

  The GNOME shell fails to do this and fails fairly spectacularly.  This
  results in a wide variety of visual defects but leaves the system
  unusable.

  The suggested option works around this by making the driver write
  video memory out to file while suspending and restoring video memory
  from file when resuming.  It's important that the path where this
  temporary file is written out has enough free space to hold all of
  video memory; on mantic, `/tmp` (the default) seems appropriate as it
  is not a ramfs but this could be configured elsewhere.

  While there are obviously cases where this behaviour is not desired
  (mainly where GPUs are used for non-display purposes), it seems likely
  that in the vast majority of cases where such a GPU is present and the
  system is regularly put into a sleep state that the GPU will be used
  for display and not as a GPGPU.  Systems that are put into sleep
  states tend to be portables, where the GPU is primarily for display;
  systems used for GPGPU tend not to be portable and are not usually put
  into sleep states where the GPU is shut down.  Obviously these are
  generalisations, but they are _generally_ true.  It's also likely that
  users doing GPGPU will already have to go and reconfigure their
  systems for optimal performance whereas 

[Kernel-packages] [Bug 2044512] Re: Build failure if run in a console

2024-01-04 Thread Tom Cook
Thanks!

-- 
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/2044512

Title:
  Build failure if run in a console

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Mantic:
  Fix Committed
Status in linux source package in Noble:
  Confirmed

Bug description:
  [Impact]

  Build fails if run in a console:

  $ debian/rules binary
  ...
  # Compress kernel modules
  find debian/linux-unstable-tools-6.6.0-12 -name '*.ko' -print0 | xargs -0 -n1 
-P 8 zstd -19 --quiet --rm
  stdout is a console, aborting
  make: *** [debian/rules.d/2-binary-arch.mk:769: binary-perarch] Error 123

  [Test Case]

  See above.

  [Where Problems Could Occur]

  Build failures.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2044512/+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 2044512] Re: Build failure if run in a console

2024-01-04 Thread Tom Cook
Is there a workaround for this defect?  Could you please link to the fix
that has been committed?

-- 
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/2044512

Title:
  Build failure if run in a console

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Mantic:
  Fix Committed
Status in linux source package in Noble:
  Confirmed

Bug description:
  [Impact]

  Build fails if run in a console:

  $ debian/rules binary
  ...
  # Compress kernel modules
  find debian/linux-unstable-tools-6.6.0-12 -name '*.ko' -print0 | xargs -0 -n1 
-P 8 zstd -19 --quiet --rm
  stdout is a console, aborting
  make: *** [debian/rules.d/2-binary-arch.mk:769: binary-perarch] Error 123

  [Test Case]

  See above.

  [Where Problems Could Occur]

  Build failures.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2044512/+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 2011385] Re: [950XED, Realtek ALC298, Speaker, Internal] No sound at all

2023-11-23 Thread Tom Mason
I'm not the original bug reporter, but thought the extra diagnostics may
assist.

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] ProcEnviron.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/2011385/+attachment/5722767/+files/ProcEnviron.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] ProcCpuinfoMinimal.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/2011385/+attachment/5722766/+files/ProcCpuinfoMinimal.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] PaInfo.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/2011385/+attachment/5722765/+files/PaInfo.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] Dependencies.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/2011385/+attachment/5722764/+files/Dependencies.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] CurrentDmesg.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/2011385/+attachment/5722763/+files/CurrentDmesg.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] AudioDevicesInUse.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "AudioDevicesInUse.txt"
   
https://bugs.launchpad.net/bugs/2011385/+attachment/5722762/+files/AudioDevicesInUse.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] AlsaInfo.txt

2023-11-23 Thread Tom Mason
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/2011385/+attachment/5722761/+files/AlsaInfo.txt

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2011385] Re: [950XED, Realtek ALC298, Speaker, Internal] No sound at all

2023-11-23 Thread Tom Mason
ProblemType: Bug
ApportVersion: 2.27.0-0ubuntu5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
DistroRelease: Ubuntu 23.10
InstallationDate: Installed on 2023-04-04 (233 days ago)
InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
NonfreeKernelModules: nvidia_modeset nvidia
Package: alsa-base 1.0.25+dfsg-0ubuntu7
PackageArchitecture: all
ProcVersionSignature: Ubuntu 6.5.0-10.10-generic 6.5.3
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RebootRequiredPkgs: Error: path contained symlinks.
Tags: mantic
Uname: Linux 6.5.0-10-generic x86_64
UpgradeStatus: Upgraded to mantic on 2023-10-24 (30 days ago)
UserGroups: adm cdrom dip docker lpadmin lxd plugdev sambashare sudo
_MarkForUpload: True
dmi.bios.date: 01/18/2023
dmi.bios.release: 1.6
dmi.bios.vendor: Razer
dmi.bios.version: 1.06
dmi.board.name: SO690
dmi.board.vendor: Razer
dmi.board.version: 4
dmi.chassis.type: 10
dmi.chassis.vendor: Razer
dmi.ec.firmware.release: 1.8
dmi.modalias: 
dmi:bvnRazer:bvr1.06:bd01/18/2023:br1.6:efr1.8:svnRazer:pnBlade16-RZ09-0483:pvr9.04:rvnRazer:rnSO690:rvr4:cvnRazer:ct10:cvr:skuRZ09-0483UWJ4:
dmi.product.family: 1A583006 Razer Blade
dmi.product.name: Blade 16 - RZ09-0483
dmi.product.sku: RZ09-0483UWJ4
dmi.product.version: 9.04
dmi.sys.vendor: Razer


** Tags added: apport-collected mantic

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

Title:
  [950XED, Realtek ALC298, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  New

Bug description:
  only bluetooth can work,im sungsang book2 pro

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 5.19.0-35.36~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-35-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar 13 15:41:47 2023
  InstallationDate: Installed on 2023-03-08 (4 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:sofhdadsp failed
  Symptom_Card: sof-hda-dsp - sof-hda-dsp
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  wang   1658 F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [950XED, Realtek ALC298, Speaker, Internal] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/17/2022
  dmi.bios.release: 5.25
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: P08RGF.054.220817.ZQ
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NT950XEW-A51AS
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SGLFREEDOS-C00-R000-S+1.0.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrP08RGF.054.220817.ZQ:bd08/17/2022:br5.25:svnSAMSUNGELECTRONICSCO.,LTD.:pn950XED:pvrP08RGF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNT950XEW-A51AS:rvrSGLFREEDOS-C00-R000-S+1.0.:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:skuSCAI-ICPS-A5A5-ADLP-PRGF:
  dmi.product.family: Galaxy Book2 Pro
  dmi.product.name: 950XED
  dmi.product.sku: SCAI-ICPS-A5A5-ADLP-PRGF
  dmi.product.version: P08RGF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/2011385/+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 2032535] Re: [Google_Puff] Screen blank crashes system

2023-10-25 Thread Tom Anschutz
I just wanted to wrap up a loose thread.   I upgraded my system to
ubuntu 23.10 (not a fresh install) and after the upgrade I no longer
have this issue.  The system blanks the screen perfectly.

Thanks for taking the time to help troubleshoot.

-- 
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/2032535

Title:
  [Google_Puff] Screen blank crashes system

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 23.04 screen blank crashes system.   Not a sleep problem, I can
  enter and resume from S2idle, S2ram. (Using command line or
  Power/Suspend GUI)  However, when screen blanks, computer has a hard
  crash.  Just rebooting with power button may not work (operating
  system not found error)  I have to unplug the computer and plug it
  back in again to reboot properly.  I would just turn off screen sleep,
  but when the S2ram suspend mode engages it often, but not always,
  crashes as well.

  I've tried live disks with other OS, and this is not a problem on
  Linux Mint 21.2, nor on Xubuntu 23.04.Windows 10 works too.  I
  tried Ubuntu 22.04 and it also crashed - using either gnome or
  wayland.

  I'm happy to help debug, but I'm not a developer.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 6.2.0-27.28-generic 6.2.15
  Uname: Linux 6.2.0-27-generic x86_64
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Aug 21 15:11:21 2023
  DistUpgraded: Fresh install
  DistroCodename: lunar
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a week
  GpuHangReproducibility: Yes, I can easily reproduce it
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41] (rev 02) 
(prog-if 00 [VGA controller])
 Subsystem: Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41]
  InstallationDate: Installed on 2023-06-13 (69 days ago)
  InstallationMedia: Ubuntu 23.04 "Lunar Lobster" - Release amd64 (20230418)
  MachineType: Google Noibat
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.2.0-27-generic 
root=UUID=77b0ab13-596d-4e94-8648-e6aeda300b7a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 4.20
  dmi.bios.vendor: coreboot
  dmi.bios.version: MrChromebox-4.20.0
  dmi.board.name: Noibat
  dmi.board.vendor: HP
  dmi.board.version: rev4
  dmi.chassis.type: 3
  dmi.chassis.vendor: Google
  dmi.ec.firmware.release: 0.0
  dmi.modalias: 
dmi:bvncoreboot:bvrMrChromebox-4.20.0:bd05/15/2023:br4.20:efr0.0:svnGoogle:pnNoibat:pvrrev4:rvnHP:rnNoibat:rvrrev4:cvnGoogle:ct3:cvr:skusku83886080:
  dmi.product.family: Google_Puff
  dmi.product.name: Noibat
  dmi.product.sku: sku83886080
  dmi.product.version: rev4
  dmi.sys.vendor: Google
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.114-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 23.0.4-0ubuntu1~23.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.7-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2032535/+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 2036287] Re: 6.2.0-32 kernel doesn't work with Asus Vivobook

2023-09-25 Thread Tom Birdshill
I'm new to Launchpad and I couldn't find a way to upload multiple files
with one comment. So here is the syslog-file

** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036287/+attachment/5704288/+files/syslog.txt

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

Title:
   6.2.0-32 kernel doesn't work with Asus Vivobook

Status in linux-signed-hwe-6.2 package in Ubuntu:
  Confirmed

Bug description:
  I have both kernel 6.2.0-32 and 6.2.0-26 installed on my Asus
  Vivobook. Since 6.2.0-32 install boot has been impossible. I think
  this may be a common problem as I'm seeing issues with Ubuntu:
  https://ubuntuforums.org/showthread.php?t=2490616 and Linux Mint:
  https://forums.linuxmint.com/viewtopic.php?t=403618

  https://askubuntu.com/questions/1485350/booting-ubuntu-22-with-
  kernel-6-2-0-32-is-impossible

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-26-generic 6.2.0-26.26~22.04.1
  ProcVersionSignature: Ubuntu 6.2.0-26.26~22.04.1-generic 6.2.13
  Uname: Linux 6.2.0-26-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Sep 15 20:38:11 2023
  InstallationDate: Installed on 2023-01-20 (238 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  RebootRequiredPkgs: Error: path contained symlinks.
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036287/+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 2036287] Re: 6.2.0-32 kernel doesn't work with Asus Vivobook

2023-09-25 Thread Tom Birdshill
Hi,

my Asus Vivobook S14 OLED (same as Brian Buesker) keeps cycling through USB 
devices on boot-up. I'm no expert, but to me it looks as if the 
fingerprint-reader is the cause of this phenomenon
I was able to access the kern.log and syslog.txt with an USB-install-stick of 
Ubuntu, so these files didn't get overwritten by a succesful boot. I backuped 
the latest files of /var/log/. So if there are any other files of interest, 
please let me know. My working Kernel is 6.2.0-26. Both, 6.2.0-32 and the 
freshly rolled out 6.2.0-33 show the exact same issue

/tom

** Attachment added: "kern.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036287/+attachment/5704287/+files/kern.log

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

Title:
   6.2.0-32 kernel doesn't work with Asus Vivobook

Status in linux-signed-hwe-6.2 package in Ubuntu:
  Confirmed

Bug description:
  I have both kernel 6.2.0-32 and 6.2.0-26 installed on my Asus
  Vivobook. Since 6.2.0-32 install boot has been impossible. I think
  this may be a common problem as I'm seeing issues with Ubuntu:
  https://ubuntuforums.org/showthread.php?t=2490616 and Linux Mint:
  https://forums.linuxmint.com/viewtopic.php?t=403618

  https://askubuntu.com/questions/1485350/booting-ubuntu-22-with-
  kernel-6-2-0-32-is-impossible

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-26-generic 6.2.0-26.26~22.04.1
  ProcVersionSignature: Ubuntu 6.2.0-26.26~22.04.1-generic 6.2.13
  Uname: Linux 6.2.0-26-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Sep 15 20:38:11 2023
  InstallationDate: Installed on 2023-01-20 (238 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  RebootRequiredPkgs: Error: path contained symlinks.
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036287/+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 2032535] Re: [Google_Puff] Screen blank crashes system

2023-09-21 Thread Tom Anschutz
I went back to confirm the problem on other systems.   Despite what I
wrote before, Ubuntu 22.04.3 does crash when sleeping.  My first post
stands as correct.   Also, I tried Debian 12 with gnome and wayland.
That system does not crash - and it has a very similar look and feel to
Ubuntu.

-- 
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/2032535

Title:
  [Google_Puff] Screen blank crashes system

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 23.04 screen blank crashes system.   Not a sleep problem, I can
  enter and resume from S2idle, S2ram. (Using command line or
  Power/Suspend GUI)  However, when screen blanks, computer has a hard
  crash.  Just rebooting with power button may not work (operating
  system not found error)  I have to unplug the computer and plug it
  back in again to reboot properly.  I would just turn off screen sleep,
  but when the S2ram suspend mode engages it often, but not always,
  crashes as well.

  I've tried live disks with other OS, and this is not a problem on
  Linux Mint 21.2, nor on Xubuntu 23.04.Windows 10 works too.  I
  tried Ubuntu 22.04 and it also crashed - using either gnome or
  wayland.

  I'm happy to help debug, but I'm not a developer.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 6.2.0-27.28-generic 6.2.15
  Uname: Linux 6.2.0-27-generic x86_64
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Aug 21 15:11:21 2023
  DistUpgraded: Fresh install
  DistroCodename: lunar
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a week
  GpuHangReproducibility: Yes, I can easily reproduce it
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41] (rev 02) 
(prog-if 00 [VGA controller])
 Subsystem: Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41]
  InstallationDate: Installed on 2023-06-13 (69 days ago)
  InstallationMedia: Ubuntu 23.04 "Lunar Lobster" - Release amd64 (20230418)
  MachineType: Google Noibat
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.2.0-27-generic 
root=UUID=77b0ab13-596d-4e94-8648-e6aeda300b7a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 4.20
  dmi.bios.vendor: coreboot
  dmi.bios.version: MrChromebox-4.20.0
  dmi.board.name: Noibat
  dmi.board.vendor: HP
  dmi.board.version: rev4
  dmi.chassis.type: 3
  dmi.chassis.vendor: Google
  dmi.ec.firmware.release: 0.0
  dmi.modalias: 
dmi:bvncoreboot:bvrMrChromebox-4.20.0:bd05/15/2023:br4.20:efr0.0:svnGoogle:pnNoibat:pvrrev4:rvnHP:rnNoibat:rvrrev4:cvnGoogle:ct3:cvr:skusku83886080:
  dmi.product.family: Google_Puff
  dmi.product.name: Noibat
  dmi.product.sku: sku83886080
  dmi.product.version: rev4
  dmi.sys.vendor: Google
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.114-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 23.0.4-0ubuntu1~23.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.7-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2032535/+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 2032535] Re: [Google_Puff] Screen blank crashes system

2023-09-18 Thread Tom Anschutz
Hello again.   Something strange happened today.  The computer booted,
and bingwall ran successfully.  (normally it hangs from some new
interaction with apparmor (I think).  Also on this boot, the screen
blank went directly from on to off.  (Normally it slowly dims the screen
before turning it off).  In this state the computer did not lock up.  I
tried letting the screen blank several times and waited a longer time,
and it was not locking up.  The system was otherwise completely idle.

So, I rebooted, and things went back to normal.  Bingwall hung  (and I
killed that process to see if it was bingwall causing the crash)  The
screen dimmed before going to sleep, and the system crashed.   However,
before the crash I captured a prevboot-good file to attach along with a
prevboot that crashed afterwards.

** Attachment added: "prevboot-good.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2032535/+attachment/5701813/+files/prevboot-good.txt

-- 
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/2032535

Title:
  [Google_Puff] Screen blank crashes system

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 23.04 screen blank crashes system.   Not a sleep problem, I can
  enter and resume from S2idle, S2ram. (Using command line or
  Power/Suspend GUI)  However, when screen blanks, computer has a hard
  crash.  Just rebooting with power button may not work (operating
  system not found error)  I have to unplug the computer and plug it
  back in again to reboot properly.  I would just turn off screen sleep,
  but when the S2ram suspend mode engages it often, but not always,
  crashes as well.

  I've tried live disks with other OS, and this is not a problem on
  Linux Mint 21.2, nor on Xubuntu 23.04.Windows 10 works too.  I
  tried Ubuntu 22.04 and it also crashed - using either gnome or
  wayland.

  I'm happy to help debug, but I'm not a developer.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 6.2.0-27.28-generic 6.2.15
  Uname: Linux 6.2.0-27-generic x86_64
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Aug 21 15:11:21 2023
  DistUpgraded: Fresh install
  DistroCodename: lunar
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a week
  GpuHangReproducibility: Yes, I can easily reproduce it
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41] (rev 02) 
(prog-if 00 [VGA controller])
 Subsystem: Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41]
  InstallationDate: Installed on 2023-06-13 (69 days ago)
  InstallationMedia: Ubuntu 23.04 "Lunar Lobster" - Release amd64 (20230418)
  MachineType: Google Noibat
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.2.0-27-generic 
root=UUID=77b0ab13-596d-4e94-8648-e6aeda300b7a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 4.20
  dmi.bios.vendor: coreboot
  dmi.bios.version: MrChromebox-4.20.0
  dmi.board.name: Noibat
  dmi.board.vendor: HP
  dmi.board.version: rev4
  dmi.chassis.type: 3
  dmi.chassis.vendor: Google
  dmi.ec.firmware.release: 0.0
  dmi.modalias: 
dmi:bvncoreboot:bvrMrChromebox-4.20.0:bd05/15/2023:br4.20:efr0.0:svnGoogle:pnNoibat:pvrrev4:rvnHP:rnNoibat:rvrrev4:cvnGoogle:ct3:cvr:skusku83886080:
  dmi.product.family: Google_Puff
  dmi.product.name: Noibat
  dmi.product.sku: sku83886080
  dmi.product.version: rev4
  dmi.sys.vendor: Google
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.114-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 23.0.4-0ubuntu1~23.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.7-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2032535/+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 2032535] Re: [Google_Puff] Screen blank crashes system

2023-09-18 Thread Tom Anschutz
Seems I can only attach one file per comment.  Attached is the prevboot
that crashed from my previous comment.

** Attachment added: "prevboot.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2032535/+attachment/5701814/+files/prevboot.txt

-- 
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/2032535

Title:
  [Google_Puff] Screen blank crashes system

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 23.04 screen blank crashes system.   Not a sleep problem, I can
  enter and resume from S2idle, S2ram. (Using command line or
  Power/Suspend GUI)  However, when screen blanks, computer has a hard
  crash.  Just rebooting with power button may not work (operating
  system not found error)  I have to unplug the computer and plug it
  back in again to reboot properly.  I would just turn off screen sleep,
  but when the S2ram suspend mode engages it often, but not always,
  crashes as well.

  I've tried live disks with other OS, and this is not a problem on
  Linux Mint 21.2, nor on Xubuntu 23.04.Windows 10 works too.  I
  tried Ubuntu 22.04 and it also crashed - using either gnome or
  wayland.

  I'm happy to help debug, but I'm not a developer.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 6.2.0-27.28-generic 6.2.15
  Uname: Linux 6.2.0-27-generic x86_64
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Aug 21 15:11:21 2023
  DistUpgraded: Fresh install
  DistroCodename: lunar
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a week
  GpuHangReproducibility: Yes, I can easily reproduce it
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41] (rev 02) 
(prog-if 00 [VGA controller])
 Subsystem: Intel Corporation CometLake-U GT2 [UHD Graphics] [8086:9b41]
  InstallationDate: Installed on 2023-06-13 (69 days ago)
  InstallationMedia: Ubuntu 23.04 "Lunar Lobster" - Release amd64 (20230418)
  MachineType: Google Noibat
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.2.0-27-generic 
root=UUID=77b0ab13-596d-4e94-8648-e6aeda300b7a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 4.20
  dmi.bios.vendor: coreboot
  dmi.bios.version: MrChromebox-4.20.0
  dmi.board.name: Noibat
  dmi.board.vendor: HP
  dmi.board.version: rev4
  dmi.chassis.type: 3
  dmi.chassis.vendor: Google
  dmi.ec.firmware.release: 0.0
  dmi.modalias: 
dmi:bvncoreboot:bvrMrChromebox-4.20.0:bd05/15/2023:br4.20:efr0.0:svnGoogle:pnNoibat:pvrrev4:rvnHP:rnNoibat:rvrrev4:cvnGoogle:ct3:cvr:skusku83886080:
  dmi.product.family: Google_Puff
  dmi.product.name: Noibat
  dmi.product.sku: sku83886080
  dmi.product.version: rev4
  dmi.sys.vendor: Google
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.114-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 23.0.4-0ubuntu1~23.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.7-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2032535/+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 2018960] Re: linux-image-5.4.0-149-generic (regression): 0 at net/core/stream.c:212 sk_stream_kill_queues+0xcf/0xe0

2023-07-10 Thread Tom Söderlund
Saw this on U18 based nodes in gateway roles running
4.15.0-{211,212}-generic. It seems to be fixed in 4.15.0-213-generic.

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

Title:
  linux-image-5.4.0-149-generic (regression): 0 at net/core/stream.c:212
  sk_stream_kill_queues+0xcf/0xe0

Status in linux-signed package in Ubuntu:
  Fix Released
Status in linux-signed-kvm package in Ubuntu:
  Fix Released

Bug description:
  After upgrading and rebooting this Ubuntu 20.04 LTS server (Ubuntu
  Focal), I noticed that it was suddenly getting a bunch of kernel log
  (dmesg) reports like:

  WARNING: CPU: 4 PID: 0 at net/core/stream.c:212
  sk_stream_kill_queues+0xcf/0xe0

  while investigating I determined that it is currently running the
  focal-proposed kernel (linux-image-5.4.0-149-generic), which it turns
  out was enabled for this server (clearly it seemed like a good idea at
  the time).

  I'm not expecting focal-proposed to be fixed as if it were a release
  package, but since I couldn't find any reports on Launchpad I figured
  I should let y'all know this focal-proposed package could do with some
  additional work before it's actually released :-)

  There have been at least 80 such reports in the last 5 hours since the
  server was rebooted, differing only by the CPU core and the process
  reported, although it seems the last one was a couple of hours ago, so
  I guess it's traffic dependent/timing dependent.

  ewen@naosr620:~$ uptime
   16:27:32 up  5:19,  1 user,  load average: 0.08, 0.14, 0.06
  ewen@naosr620:~$ dmesg -t | grep WARNING | sed 's/CPU: [0-9]*/CPU: N/; s/PID: 
[0-9]*/PID: N/;' | uniq -c
   88 WARNING: CPU: N PID: N at net/core/stream.c:212 
sk_stream_kill_queues+0xcf/0xe0
  ewen@naosr620:~$ 

  Ubuntu Release:

  ewen@naosr620:~$ lsb_release -rd
  Description:  Ubuntu 20.04.6 LTS
  Release:  20.04
  ewen@naosr620:~$ 

  
  Kernel/package version affected:

  ewen@naosr620:~$ uname -a
  Linux naosr620 5.4.0-149-generic #166-Ubuntu SMP Tue Apr 18 16:51:45 UTC 2023 
x86_64 x86_64 x86_64 GNU/Linux
  ewen@naosr620:~$ dpkg -l | grep linux-image | grep 149
  ii  linux-image-5.4.0-149-generic  5.4.0-149.166  
   amd64Signed kernel image generic
  ii  linux-image-generic5.4.0.149.147  
   amd64Generic Linux kernel image
  ewen@naosr620:~$ apt-cache policy linux-image-5.4.0-149-generic 
  linux-image-5.4.0-149-generic:
Installed: 5.4.0-149.166
Candidate: 5.4.0-149.166
Version table:
   *** 5.4.0-149.166 500
  500 https://mirror.fsmg.org.nz/ubuntu focal-proposed/main amd64 
Packages
  100 /var/lib/dpkg/status
  ewen@naosr620:~$ apt-cache policy linux-image-generic
  linux-image-generic:
Installed: 5.4.0.149.147
Candidate: 5.4.0.149.147
Version table:
   *** 5.4.0.149.147 500
  500 https://mirror.fsmg.org.nz/ubuntu focal-proposed/main amd64 
Packages
  100 /var/lib/dpkg/status
   5.4.0.148.146 500
  500 https://mirror.fsmg.org.nz/ubuntu focal-updates/main amd64 
Packages
  500 https://mirror.fsmg.org.nz/ubuntu focal-security/main amd64 
Packages
   5.4.0.26.32 500
  500 https://mirror.fsmg.org.nz/ubuntu focal/main amd64 Packages
  ewen@naosr620:~$ 
  ewen@naosr620:~$ apt-cache show linux-image-5.4.0-149-generic | grep Source:
  Source: linux-signed
  ewen@naosr620:~$ 

  
  Full example dmesg, including stack trace (they all seem to be WARNINGs, and 
other than filling dmesg / system logs the system "appears to be running okay", 
so I'm not going to rush another reboot now -- near end of business day):

  ewen@naosr620:~$ date
  Tue 09 May 2023 16:34:56 NZST
  ewen@naosr620:~$ dmesg -T | tail -100 | grep -B 150 "end trace" | grep -A 999 
"cut here"
  [Tue May  9 14:21:18 2023] [ cut here ]
  [Tue May  9 14:21:18 2023] WARNING: CPU: 10 PID: 0 at net/core/stream.c:212 
sk_stream_kill_queues+0xcf/0xe0
  [Tue May  9 14:21:18 2023] Modules linked in: mpt3sas raid_class 
scsi_transport_sas mptctl mptbase vhost_net vhost tap ip6t_REJECT 
nf_reject_ipv6 ip6table_mangle ip6table_nat ip6table_raw nf_log_ipv6 xt_recent 
ipt_REJECT nf_reject_ipv4 xt_hashlimit xt_addrtype xt_multiport xt_comment 
xt_conntrack xt_mark iptable_mangle xt_MASQUERADE iptable_nat xt_CT xt_tcpudp 
iptable_raw nfnetlink_log xt_NFLOG nf_log_ipv4 nf_log_common xt_LOG nf_nat_tftp 
nf_nat_snmp_basic nf_conntrack_snmp nf_nat_sip nf_nat_pptp nf_nat_irc 
ebtable_filter nf_nat_h323 ebtables nf_nat_ftp nf_nat_amanda ts_kmp 
ip6table_filter nf_conntrack_amanda nf_nat ip6_tables nf_conntrack_sane 
nf_conntrack_tftp nf_conntrack_sip nf_conntrack_pptp nf_conntrack_netlink 
nfnetlink nf_conntrack_netbios_ns nf_conntrack_broadcast nf_conntrack_irc 
nf_conntrack_h323 nf_conntrack_ftp nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 

[Kernel-packages] [Bug 2018960] Re: linux-image-5.4.0-149-generic (regression): 0 at net/core/stream.c:212 sk_stream_kill_queues+0xcf/0xe0

2023-06-12 Thread Tom Söderlund
Seeing this on U18 based gateway nodes running 4.15.0-212-generic.

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

Title:
  linux-image-5.4.0-149-generic (regression): 0 at net/core/stream.c:212
  sk_stream_kill_queues+0xcf/0xe0

Status in linux-signed package in Ubuntu:
  Confirmed
Status in linux-signed-kvm package in Ubuntu:
  Confirmed

Bug description:
  After upgrading and rebooting this Ubuntu 20.04 LTS server (Ubuntu
  Focal), I noticed that it was suddenly getting a bunch of kernel log
  (dmesg) reports like:

  WARNING: CPU: 4 PID: 0 at net/core/stream.c:212
  sk_stream_kill_queues+0xcf/0xe0

  while investigating I determined that it is currently running the
  focal-proposed kernel (linux-image-5.4.0-149-generic), which it turns
  out was enabled for this server (clearly it seemed like a good idea at
  the time).

  I'm not expecting focal-proposed to be fixed as if it were a release
  package, but since I couldn't find any reports on Launchpad I figured
  I should let y'all know this focal-proposed package could do with some
  additional work before it's actually released :-)

  There have been at least 80 such reports in the last 5 hours since the
  server was rebooted, differing only by the CPU core and the process
  reported, although it seems the last one was a couple of hours ago, so
  I guess it's traffic dependent/timing dependent.

  ewen@naosr620:~$ uptime
   16:27:32 up  5:19,  1 user,  load average: 0.08, 0.14, 0.06
  ewen@naosr620:~$ dmesg -t | grep WARNING | sed 's/CPU: [0-9]*/CPU: N/; s/PID: 
[0-9]*/PID: N/;' | uniq -c
   88 WARNING: CPU: N PID: N at net/core/stream.c:212 
sk_stream_kill_queues+0xcf/0xe0
  ewen@naosr620:~$ 

  Ubuntu Release:

  ewen@naosr620:~$ lsb_release -rd
  Description:  Ubuntu 20.04.6 LTS
  Release:  20.04
  ewen@naosr620:~$ 

  
  Kernel/package version affected:

  ewen@naosr620:~$ uname -a
  Linux naosr620 5.4.0-149-generic #166-Ubuntu SMP Tue Apr 18 16:51:45 UTC 2023 
x86_64 x86_64 x86_64 GNU/Linux
  ewen@naosr620:~$ dpkg -l | grep linux-image | grep 149
  ii  linux-image-5.4.0-149-generic  5.4.0-149.166  
   amd64Signed kernel image generic
  ii  linux-image-generic5.4.0.149.147  
   amd64Generic Linux kernel image
  ewen@naosr620:~$ apt-cache policy linux-image-5.4.0-149-generic 
  linux-image-5.4.0-149-generic:
Installed: 5.4.0-149.166
Candidate: 5.4.0-149.166
Version table:
   *** 5.4.0-149.166 500
  500 https://mirror.fsmg.org.nz/ubuntu focal-proposed/main amd64 
Packages
  100 /var/lib/dpkg/status
  ewen@naosr620:~$ apt-cache policy linux-image-generic
  linux-image-generic:
Installed: 5.4.0.149.147
Candidate: 5.4.0.149.147
Version table:
   *** 5.4.0.149.147 500
  500 https://mirror.fsmg.org.nz/ubuntu focal-proposed/main amd64 
Packages
  100 /var/lib/dpkg/status
   5.4.0.148.146 500
  500 https://mirror.fsmg.org.nz/ubuntu focal-updates/main amd64 
Packages
  500 https://mirror.fsmg.org.nz/ubuntu focal-security/main amd64 
Packages
   5.4.0.26.32 500
  500 https://mirror.fsmg.org.nz/ubuntu focal/main amd64 Packages
  ewen@naosr620:~$ 
  ewen@naosr620:~$ apt-cache show linux-image-5.4.0-149-generic | grep Source:
  Source: linux-signed
  ewen@naosr620:~$ 

  
  Full example dmesg, including stack trace (they all seem to be WARNINGs, and 
other than filling dmesg / system logs the system "appears to be running okay", 
so I'm not going to rush another reboot now -- near end of business day):

  ewen@naosr620:~$ date
  Tue 09 May 2023 16:34:56 NZST
  ewen@naosr620:~$ dmesg -T | tail -100 | grep -B 150 "end trace" | grep -A 999 
"cut here"
  [Tue May  9 14:21:18 2023] [ cut here ]
  [Tue May  9 14:21:18 2023] WARNING: CPU: 10 PID: 0 at net/core/stream.c:212 
sk_stream_kill_queues+0xcf/0xe0
  [Tue May  9 14:21:18 2023] Modules linked in: mpt3sas raid_class 
scsi_transport_sas mptctl mptbase vhost_net vhost tap ip6t_REJECT 
nf_reject_ipv6 ip6table_mangle ip6table_nat ip6table_raw nf_log_ipv6 xt_recent 
ipt_REJECT nf_reject_ipv4 xt_hashlimit xt_addrtype xt_multiport xt_comment 
xt_conntrack xt_mark iptable_mangle xt_MASQUERADE iptable_nat xt_CT xt_tcpudp 
iptable_raw nfnetlink_log xt_NFLOG nf_log_ipv4 nf_log_common xt_LOG nf_nat_tftp 
nf_nat_snmp_basic nf_conntrack_snmp nf_nat_sip nf_nat_pptp nf_nat_irc 
ebtable_filter nf_nat_h323 ebtables nf_nat_ftp nf_nat_amanda ts_kmp 
ip6table_filter nf_conntrack_amanda nf_nat ip6_tables nf_conntrack_sane 
nf_conntrack_tftp nf_conntrack_sip nf_conntrack_pptp nf_conntrack_netlink 
nfnetlink nf_conntrack_netbios_ns nf_conntrack_broadcast nf_conntrack_irc 
nf_conntrack_h323 nf_conntrack_ftp nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 
iptable_filter bpfilter dell_rbu nls_iso8859_1 ipmi_ssif 

[Kernel-packages] [Bug 1993318] Re: ZFS + Encryption installations of Ubuntu Desktop do not come up correctly on first boot, systemd unmounts many of the zfs volumes

2023-04-30 Thread Tom Reynolds
This can be a dupe of bug 1970066

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

Title:
  ZFS + Encryption installations of Ubuntu Desktop do not come up
  correctly on first boot, systemd unmounts many of the zfs volumes

Status in Ubuntu Manual Tests:
  New
Status in Release Notes for Ubuntu:
  Fix Released
Status in snapd package in Ubuntu:
  Invalid
Status in systemd package in Ubuntu:
  Invalid
Status in ubiquity package in Ubuntu:
  Fix Released
Status in zfs-linux package in Ubuntu:
  Confirmed
Status in zsys package in Ubuntu:
  Invalid
Status in ubiquity source package in Jammy:
  Fix Released

Bug description:
  This is *probably* the wrong package, but it's the best I can figure
  for this, so here goes.

  Hardware: Kubuntu Focus XE, 32 GB RAM, 1 TB SSD, 11th Gen Intel Core
  i5, UEFI, no secure boot. Testing done in GNOME Boxes, BIOS, 4 GB RAM,
  50 GB disk space . OS is Ubuntu Desktop, Kinetic Final ISO.

  [Testcase]

  tl;dr encrypted-zfs, firstboot, `systemctl daemon-reload` must not
  unmount half of mountpoints, ie. /var/lib.

  Steps to reproduce:

  1. Boot the Ubuntu desktop ISO.
  2. Select "Install Ubuntu" and proceed with the installation process.
  3. When you get to the "Installation type" screen, select "Advanced Options", 
and enable ZFS + Encryption.
  4. Proceed with the rest of the installation as normal.
  5. Reboot into the newly installed system.
  6. Log in.
  7. Run "sudo apt update" in a terminal.

  Expected result: The package database should be updated normally.

  Actual result: You are presented with the following errors at the end
  of the apt output:

  Reading package lists... Error!
  E: flAbsPath on /var/lib/dpkg/status failed - realpath (2: No such file or 
directory)
  E: Could not open file  - open (2: No such file or directory)
  E: Problem opening
  E: The package lists or status file could not be parsed or opened.

  Notes: Switching to a TTY will print a crash error message related to
  the same missing /var/lib/dpkg/status file. Running "sudo touch
  /var/lib/dpkg/status" will allow "sudo apt update" to function and fix
  the crashed process in the TTY.

  [End Testcase]

  Once you log in, you'll notice that Firefox is missing (bug #1993279),
  and you will likely be presented with a ton of error messages and
  other scary junk. At least one of those error messages was related to
  update-manager in my experience, and another one was from "check-new-
  release-gtk".

  ProblemType: Bug
  DistroRelease: Ubuntu 22.10
  Package: zsys (not installed)
  ProcVersionSignature: Ubuntu 5.19.0-21.21-generic 5.19.7
  Uname: Linux 5.19.0-21-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.23.1-0ubuntu3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Oct 18 09:55:27 2022
  InstallationDate: Installed on 2022-10-18 (0 days ago)
  InstallationMedia: Ubuntu 22.10 "Kinetic Kudu" - Release amd64 (20221018)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no username)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: zsys
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-manual-tests/+bug/1993318/+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 2015794] Re: Ubuntu 23.04-beta failed to boot on HP x2 Detachable 10 with Intel Atom Cherry Trail x5-Z8350

2023-04-28 Thread Tom Reynolds
Possible dupe of bug 2017444

-- 
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/2015794

Title:
  Ubuntu 23.04-beta failed to boot on HP x2 Detachable 10 with Intel
  Atom Cherry Trail x5-Z8350

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Regression started from linux kernel 6.2

  [57.794591] atomisp-isp2 :00:03.0: atomisp: Error -2 while requesting 
firmware shisp_2401a0_v21.bin
  ^ this line was present in dmesg on the old kernels too

  [57.851197] atomisp-isp2 :00:03.0: IUNIT power-off timeout.
  [57.853085] atomisp-isp2 :00:03.0: Failed to switch off ISP
  [84.174915] watchdog: BUG: soft lockup - CPU#3 stuck for 26s! [systemd-udevd: 
1089]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2015794/+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 2017444] Re: Computer with Intel Atom CPU will not boot with Kernel 6.2.0-20

2023-04-28 Thread Tom Reynolds
** Also affects: linux-firmware (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Computer with Intel Atom CPU will  not boot with Kernel 6.2.0-20

Status in linux package in Ubuntu:
  Confirmed
Status in linux-firmware package in Ubuntu:
  New

Bug description:
  Computers with Intel Atom CPU will not boot with Kernel 6.2.0-20 OR
  any other Kernel in 6.2 series or Kernel 6.3.0.

  This bug affects all Intel Atom CPU computers in all Linux
  distributions making unpossible to install or boot to OS with kernel
  6.2 or higher.

  SOLUTION FOR THIS BUG IS FOUND:

  Installing file shisp_2401a0_v21.bin from:

  https://github.com/intel-aero/meta-intel-aero-
  base/blob/master/recipes-kernel/linux/linux-yocto/shisp_2401a0_v21.bin

  to /lib/firmware will solve the bug.

  (dmesg.log with shisp-file with kernel 6.2.0-06 and 6.3.0-06 as
  attachments 9. and 10.)

  Afterwards Intel Atom CPU computer will be able to boot with kernel
  6.2.

  The last stable Ubuntu Kernel Intel Atom CPU computer will boot with
  is 6.1.25.

  The bug is caused by Intel atomisp camera driver module which has
  driver missing: shisp_2401a_v21.bin.

  This bug was already in 5.19, as you can see from dmesg.logs it
  appears that atomisp failes to launch in both 5.19.0-40 and 6.1.25 but
  still the computer boots.

  This bug is also reported in Manjaro ( " https://github.com/linux-
  surface/linux-surface/issues/1095 ")and Arch Linux ("
  https://bbs.archlinux.org/viewtopic.php?id=283920 ") so it is not
  limited to Ubuntu Kernels.


  This bug has already been reported for Ubuntu 23.04 Beta in Ubuntu
  bugtracking system (" https://www.mail-archive.com/kernel-
  packa...@lists.launchpad.net/msg501664.html ") with Bug number
  #2015794.

  Attachments:
  1. Picture of stuck boot sequence of HP x2 210 G2 with Intel Atom CPU trying 
to boot in to Kubuntu 23.04 with Kernel 6.2.0-20.

  2. dmesg.log of the computer with Ubuntu Kernel 6.1.25.
  3. xsession-errors of the computer with Ubuntu Kernel 6.1.25.
  4. dmesg.log of the computer with Ubuntu Kernel 5.19.0-40.
  5. Video of boot sequence with Kernel 6.2.0-20.
  6. uname-a.log of Kernel 6.1.25.
  7. lspci-vvnn.log of Kernel 6.1.25.
  8. version.log of Kernel 5.19.0-40.

  P.S. The apport-collect data is from Kernel 5.19.0-40.
  P.S.P.S I had difficulty determining Tags so they are to be changed by you.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2017444/+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 2007050] Re: Microsoft Surface keyboard not available during initrd

2023-02-14 Thread Tom Reynolds
Thanks to oerheks for pointing me to a related (though AMD there) report at
https://github.com/linux-surface/linux-surface/issues/839#issuecomment-1140287888

Placing the following in /etc/initramfs-tools/modules
#-- Starts here --
surface_hid_core
surface_hid
surface_aggregator_registry
surface_aggregator
pinctrl_tigerlake
8250_dw
#-- Ends here --

then running
  sudo update-initramfs -c -k $(uname -r)
and finally rebooting works around it for me.

It appears that whatever detects the modules to be included in the
(default) "MOST" set when generating an initrd will need updating.

(It may be possible to reduce the above list of modules to specifically
include in the initrd can be reduced, yet - let me know if you want me
to work this out.)

** Bug watch added: github.com/linux-surface/linux-surface/issues #839
   https://github.com/linux-surface/linux-surface/issues/839

** Package changed: linux (Ubuntu) => initramfs-tools (Ubuntu)

** Summary changed:

- Microsoft Surface  keyboard not available during initrd
+ Check for Microsoft Surface keyboard modules when generating initrd

-- 
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/2007050

Title:
  Check for Microsoft Surface keyboard modules when generating initrd

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   

[Kernel-packages] [Bug 2007050] WifiSyslog.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646621/+files/WifiSyslog.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] UdevDb.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/2007050/+attachment/5646620/+files/UdevDb.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping 

[Kernel-packages] [Bug 2007050] RfKill.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/2007050/+attachment/5646619/+files/RfKill.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping 

[Kernel-packages] [Bug 2007050] ProcModules.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646617/+files/ProcModules.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] PulseList.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646618/+files/PulseList.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] ProcEnviron.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646615/+files/ProcEnviron.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] ProcCpuinfoMinimal.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646614/+files/ProcCpuinfoMinimal.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 

[Kernel-packages] [Bug 2007050] acpidump.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646622/+files/acpidump.txt

** Changed in: linux (Ubuntu)
   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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   

[Kernel-packages] [Bug 2007050] ProcInterrupts.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646616/+files/ProcInterrupts.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 

[Kernel-packages] [Bug 2007050] Lspci-vt.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646608/+files/Lspci-vt.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] PaInfo.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/2007050/+attachment/5646612/+files/PaInfo.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping 

[Kernel-packages] [Bug 2007050] ProcCpuinfo.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646613/+files/ProcCpuinfo.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] Lsusb-t.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646610/+files/Lsusb-t.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping  

[Kernel-packages] [Bug 2007050] Lsusb-v.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646611/+files/Lsusb-v.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping  

[Kernel-packages] [Bug 2007050] Lsusb.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/2007050/+attachment/5646609/+files/Lsusb.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping : 

[Kernel-packages] [Bug 2007050] Lspci.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/2007050/+attachment/5646607/+files/Lspci.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping : 

[Kernel-packages] [Bug 2007050] IwConfig.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646606/+files/IwConfig.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] CurrentDmesg.txt

2023-02-12 Thread Tom Reynolds
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/2007050/+attachment/5646605/+files/CurrentDmesg.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   

[Kernel-packages] [Bug 2007050] Re: Microsoft Surface keyboard not available during initrd

2023-02-12 Thread Tom Reynolds
apport information

** Tags added: apport-collected jammy

** Description changed:

  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no effect.
  Connecting an external keyboard via USB and typing the passphrase from
  there works around it.
  
  The keyboard works fine on the fully booted system.
  
  Secure boot is disabled on this system.
  
  
  --
  
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
   stepping : 1
   microcode: 0xa4
   cpu MHz  : 4643.410
   cache size   : 12288 KB
   physical id  : 0
   siblings : 8
   core id  : 3
   cpu cores: 4
   apicid   : 7
   initial apicid   : 7
   fpu  : yes
   fpu_exception: yes
   cpuid level  : 27
   wp   : yes
   flags

[Kernel-packages] [Bug 2007050] Re: Microsoft Surface keyboard not available during initrd

2023-02-12 Thread Tom Reynolds
/proc/bus/input/devices

** Attachment added: "/proc/bus/input/devices"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2007050/+attachment/5646603/+files/proc_bus_input_devices.txt

-- 
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/2007050

Title:
  Microsoft Surface  keyboard not available during initrd

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
  (linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
  kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
  1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
  not available during early boot, such as for entering a full disk
  encryption passphrase. Just pressing enter at said prompt has no
  effect. Connecting an external keyboard via USB and typing the
  passphrase from there works around it.

  The keyboard works fine on the fully booted system.

  Secure boot is disabled on this system.

  
  --

  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb 13 00:53:34 2023
  Dependencies:
   adduser 3.118ubuntu5
   apt 2.4.8
   apt-utils 2.4.8
   busybox-initramfs 1:1.30.1-7ubuntu3
   ca-certificates 20211016ubuntu0.22.04.1
   coreutils 8.32-4.1ubuntu1
   cpio 2.13+dfsg-7
   debconf 1.5.79ubuntu1
   debconf-i18n 1.5.79ubuntu1
   dmsetup 2:1.02.175-2.1ubuntu4
   dpkg 1.21.1ubuntu2.1
   gcc-12-base 12.1.0-2ubuntu1~22.04
   gettext-base 0.21-4ubuntu4
   gpgv 2.2.27-3ubuntu2.1
   grub-common 2.06-2ubuntu7.1
   grub-gfxpayload-lists 0.7
   grub-pc 2.06-2ubuntu7.1
   grub-pc-bin 2.06-2ubuntu7.1
   grub2-common 2.06-2ubuntu7.1
   init-system-helpers 1.62
   initramfs-tools 0.140ubuntu13.1
   initramfs-tools-bin 0.140ubuntu13.1
   initramfs-tools-core 0.140ubuntu13.1
   klibc-utils 2.0.10-4
   kmod 29-1ubuntu1
   libacl1 2.3.1-1
   libapt-pkg6.0 2.4.8
   libattr1 1:2.5.1-1build1
   libaudit-common 1:3.0.7-1build1
   libaudit1 1:3.0.7-1build1
   libblkid1 2.37.2-4ubuntu3
   libbrotli1 1.0.9-2build6
   libbz2-1.0 1.0.8-5build1
   libc6 2.35-0ubuntu3.1
   libcap-ng0 0.7.9-2.2build3
   libcap2 1:2.44-1build3
   libcom-err2 1.46.5-2ubuntu1.1
   libcrypt1 1:4.4.27-1
   libdb5.3 5.3.28+dfsg1-0.8ubuntu3
   libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
   libefiboot1 37-6ubuntu2
   libefivar1 37-6ubuntu2
   libffi8 3.4.2-4
   libfreetype6 2.11.1+dfsg-1ubuntu0.1
   libfuse3-3 3.10.5-1build1
   libgcc-s1 12.1.0-2ubuntu1~22.04
   libgcrypt20 1.9.4-3ubuntu3
   libgmp10 2:6.2.1+dfsg-3ubuntu1
   libgnutls30 3.7.3-4ubuntu1.1
   libgpg-error0 1.43-3
   libgssapi-krb5-2 1.19.2-2ubuntu0.1
   libhogweed6 3.7.3-1build2
   libidn2-0 2.3.2-2build1
   libk5crypto3 1.19.2-2ubuntu0.1
   libkeyutils1 1.6.1-2ubuntu3
   libklibc 2.0.10-4
   libkmod2 29-1ubuntu1
   libkrb5-3 1.19.2-2ubuntu0.1
   libkrb5support0 1.19.2-2ubuntu0.1
   liblocale-gettext-perl 1.07-4build3
   liblz4-1 1.9.3-2build2
   liblzma5 5.2.5-2ubuntu1
   libmount1 2.37.2-4ubuntu3
   libnettle8 3.7.3-1build2
   libnsl2 1.3.0-2build2
   libp11-kit0 0.24.0-6build1
   libpam-modules 1.4.0-11ubuntu2.3
   libpam-modules-bin 1.4.0-11ubuntu2.3
   libpam0g 1.4.0-11ubuntu2.3
   libpcre2-8-0 10.39-3ubuntu0.1
   libpng16-16 1.6.37-3build5
   libseccomp2 2.5.3-2ubuntu2
   libselinux1 3.3-1build2
   libsemanage-common 3.3-1build2
   libsemanage2 3.3-1build2
   libsepol2 3.3-1build1
   libsmartcols1 2.37.2-4ubuntu3
   libssl3 3.0.2-0ubuntu1.8
   libstdc++6 12.1.0-2ubuntu1~22.04
   libsystemd0 249.11-0ubuntu3.6
   libtasn1-6 4.18.0-4build1
   libtext-charwidth-perl 0.04-10build3
   libtext-iconv-perl 1.7-7build3
   libtext-wrapi18n-perl 0.06-9
   libtinfo6 6.3-2
   libtirpc-common 1.3.2-2ubuntu0.1
   libtirpc3 1.3.2-2ubuntu0.1
   libudev1 249.11-0ubuntu3.6
   libunistring2 1.0-1
   libuuid1 2.37.2-4ubuntu3
   libxxhash0 0.8.1-1
   libzstd1 1.4.8+dfsg-3build1
   linux-base 4.5ubuntu9
   linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
   logsave 1.46.5-2ubuntu1.1
   lsb-base 11.1.0ubuntu4
   mount 2.37.2-4ubuntu3
   openssl 3.0.2-0ubuntu1.8
   os-prober 1.79ubuntu2
   passwd 1:4.8.1-2ubuntu2.1
   perl-base 5.34.0-3ubuntu1.1
   sensible-utils 0.0.17
   systemd-hwe-hwdb 249.11.2
   tar 1.34+dfsg-1build3
   ubuntu-keyring 2021.03.26
   ucf 3.0043
   udev 249.11-0ubuntu3.6
   util-linux 2.37.2-4ubuntu3
   uuid-runtime 2.37.2-4ubuntu3
   zlib1g 1:1.2.11.dfsg-2ubuntu9.2
   zstd 1.4.8+dfsg-3build1
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2023-02-12 (0 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
  PackageArchitecture: amd64
  ProcCpuinfoMinimal:
   processor: 7
   vendor_id: GenuineIntel
   cpu family   : 6
   model: 140
   model name   : 11th 

[Kernel-packages] [Bug 2007050] [NEW] Microsoft Surface keyboard not available during initrd

2023-02-12 Thread Tom Reynolds
Public bug reported:

With 22.04 LTS, fully updated, freshly built initrd's for both 5.15
(linux-generic-hwe-22.04) and 5.19 (linux-generic-hwe-22.04-edge)
kernels, the embedded keyboard of a Microsoft Surface 4 Laptop model
1950 (Intel Gen 11), namely "Microsoft Surface 045E:09AE Keyboard", is
not available during early boot, such as for entering a full disk
encryption passphrase. Just pressing enter at said prompt has no effect.
Connecting an external keyboard via USB and typing the passphrase from
there works around it.

The keyboard works fine on the fully booted system.

Secure boot is disabled on this system.


--

ProblemType: Bug
ApportVersion: 2.20.11-0ubuntu82.3
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon Feb 13 00:53:34 2023
Dependencies:
 adduser 3.118ubuntu5
 apt 2.4.8
 apt-utils 2.4.8
 busybox-initramfs 1:1.30.1-7ubuntu3
 ca-certificates 20211016ubuntu0.22.04.1
 coreutils 8.32-4.1ubuntu1
 cpio 2.13+dfsg-7
 debconf 1.5.79ubuntu1
 debconf-i18n 1.5.79ubuntu1
 dmsetup 2:1.02.175-2.1ubuntu4
 dpkg 1.21.1ubuntu2.1
 gcc-12-base 12.1.0-2ubuntu1~22.04
 gettext-base 0.21-4ubuntu4
 gpgv 2.2.27-3ubuntu2.1
 grub-common 2.06-2ubuntu7.1
 grub-gfxpayload-lists 0.7
 grub-pc 2.06-2ubuntu7.1
 grub-pc-bin 2.06-2ubuntu7.1
 grub2-common 2.06-2ubuntu7.1
 init-system-helpers 1.62
 initramfs-tools 0.140ubuntu13.1
 initramfs-tools-bin 0.140ubuntu13.1
 initramfs-tools-core 0.140ubuntu13.1
 klibc-utils 2.0.10-4
 kmod 29-1ubuntu1
 libacl1 2.3.1-1
 libapt-pkg6.0 2.4.8
 libattr1 1:2.5.1-1build1
 libaudit-common 1:3.0.7-1build1
 libaudit1 1:3.0.7-1build1
 libblkid1 2.37.2-4ubuntu3
 libbrotli1 1.0.9-2build6
 libbz2-1.0 1.0.8-5build1
 libc6 2.35-0ubuntu3.1
 libcap-ng0 0.7.9-2.2build3
 libcap2 1:2.44-1build3
 libcom-err2 1.46.5-2ubuntu1.1
 libcrypt1 1:4.4.27-1
 libdb5.3 5.3.28+dfsg1-0.8ubuntu3
 libdevmapper1.02.1 2:1.02.175-2.1ubuntu4
 libefiboot1 37-6ubuntu2
 libefivar1 37-6ubuntu2
 libffi8 3.4.2-4
 libfreetype6 2.11.1+dfsg-1ubuntu0.1
 libfuse3-3 3.10.5-1build1
 libgcc-s1 12.1.0-2ubuntu1~22.04
 libgcrypt20 1.9.4-3ubuntu3
 libgmp10 2:6.2.1+dfsg-3ubuntu1
 libgnutls30 3.7.3-4ubuntu1.1
 libgpg-error0 1.43-3
 libgssapi-krb5-2 1.19.2-2ubuntu0.1
 libhogweed6 3.7.3-1build2
 libidn2-0 2.3.2-2build1
 libk5crypto3 1.19.2-2ubuntu0.1
 libkeyutils1 1.6.1-2ubuntu3
 libklibc 2.0.10-4
 libkmod2 29-1ubuntu1
 libkrb5-3 1.19.2-2ubuntu0.1
 libkrb5support0 1.19.2-2ubuntu0.1
 liblocale-gettext-perl 1.07-4build3
 liblz4-1 1.9.3-2build2
 liblzma5 5.2.5-2ubuntu1
 libmount1 2.37.2-4ubuntu3
 libnettle8 3.7.3-1build2
 libnsl2 1.3.0-2build2
 libp11-kit0 0.24.0-6build1
 libpam-modules 1.4.0-11ubuntu2.3
 libpam-modules-bin 1.4.0-11ubuntu2.3
 libpam0g 1.4.0-11ubuntu2.3
 libpcre2-8-0 10.39-3ubuntu0.1
 libpng16-16 1.6.37-3build5
 libseccomp2 2.5.3-2ubuntu2
 libselinux1 3.3-1build2
 libsemanage-common 3.3-1build2
 libsemanage2 3.3-1build2
 libsepol2 3.3-1build1
 libsmartcols1 2.37.2-4ubuntu3
 libssl3 3.0.2-0ubuntu1.8
 libstdc++6 12.1.0-2ubuntu1~22.04
 libsystemd0 249.11-0ubuntu3.6
 libtasn1-6 4.18.0-4build1
 libtext-charwidth-perl 0.04-10build3
 libtext-iconv-perl 1.7-7build3
 libtext-wrapi18n-perl 0.06-9
 libtinfo6 6.3-2
 libtirpc-common 1.3.2-2ubuntu0.1
 libtirpc3 1.3.2-2ubuntu0.1
 libudev1 249.11-0ubuntu3.6
 libunistring2 1.0-1
 libuuid1 2.37.2-4ubuntu3
 libxxhash0 0.8.1-1
 libzstd1 1.4.8+dfsg-3build1
 linux-base 4.5ubuntu9
 linux-modules-5.19.0-28-generic 5.19.0-28.29~22.04.1
 logsave 1.46.5-2ubuntu1.1
 lsb-base 11.1.0ubuntu4
 mount 2.37.2-4ubuntu3
 openssl 3.0.2-0ubuntu1.8
 os-prober 1.79ubuntu2
 passwd 1:4.8.1-2ubuntu2.1
 perl-base 5.34.0-3ubuntu1.1
 sensible-utils 0.0.17
 systemd-hwe-hwdb 249.11.2
 tar 1.34+dfsg-1build3
 ubuntu-keyring 2021.03.26
 ucf 3.0043
 udev 249.11-0ubuntu3.6
 util-linux 2.37.2-4ubuntu3
 uuid-runtime 2.37.2-4ubuntu3
 zlib1g 1:1.2.11.dfsg-2ubuntu9.2
 zstd 1.4.8+dfsg-3build1
DistroRelease: Ubuntu 22.04
InstallationDate: Installed on 2023-02-12 (0 days ago)
InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
Package: linux-image-5.19.0-28-generic 5.19.0-28.29~22.04.1
PackageArchitecture: amd64
ProcCpuinfoMinimal:
 processor  : 7
 vendor_id  : GenuineIntel
 cpu family : 6
 model  : 140
 model name : 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
 stepping   : 1
 microcode  : 0xa4
 cpu MHz: 4643.410
 cache size : 12288 KB
 physical id: 0
 siblings   : 8
 core id: 3
 cpu cores  : 4
 apicid : 7
 initial apicid : 7
 fpu: yes
 fpu_exception  : yes
 cpuid level: 27
 wp : yes
 flags  : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl 
vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic 

[Kernel-packages] [Bug 1239459] Re: 1814:3290 [Asus X200CA] wifi doesn't connect or disconnects after few seconds

2023-01-05 Thread Tom Tyson
Thanks for Sharing such an amazing article.
https://www.oneclickactivate.com/pch-com-final/

-- 
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/1239459

Title:
  1814:3290 [Asus X200CA] wifi doesn't connect or disconnects after few
  seconds

Status in Linux:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  With the new 3.11.0-12-generic kernel, wifi has problems to connect with many 
errors like these:
  Oct 13 23:50:03 ubuntotto kernel: [ 1186.580726] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 0 failed to flush
  Oct 13 23:50:03 ubuntotto kernel: [ 1186.740659] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
  Oct 13 23:50:04 ubuntotto kernel: [ 1186.900544] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 0 failed to flush
  Oct 13 23:50:04 ubuntotto kernel: [ 1187.060571] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
  Oct 13 23:50:04 ubuntotto kernel: [ 1187.096576] ieee80211 phy0: 
rt2x00queue_write_tx_frame: Error - Dropping frame due to full tx queue 0
  Oct 13 23:50:05 ubuntotto kernel: [ 1188.280106] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 0 failed to flush
  Oct 13 23:50:05 ubuntotto kernel: [ 1188.440128] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
  Oct 13 23:51:06 ubuntotto kernel: [ 1249.560697] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 0 failed to flush
  Oct 13 23:51:06 ubuntotto kernel: [ 1249.720644] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
  Oct 13 23:51:07 ubuntotto kernel: [ 1249.880590] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 0 failed to flush
  Oct 13 23:51:07 ubuntotto kernel: [ 1250.040543] ieee80211 phy0: 
rt2x00queue_flush_queue: Warning - Queue 2 failed to flush

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-12-generic 3.11.0-12.19
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  andrea 1791 F pulseaudio
  Date: Sun Oct 13 23:45:04 2013
  HibernationDevice: RESUME=UUID=297ef090-5420-41f6-8439-f1254f3e9e15
  InstallationDate: Installed on 2013-10-12 (1 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. X200CA
  MarkForUpload: True
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=088f2a7d-b78f-4bdd-a184-754b70a3184a ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-12-generic N/A
   linux-backports-modules-3.11.0-12-generic  N/A
   linux-firmware 1.116
  SourcePackage: linux
  UpgradeStatus: Upgraded to saucy on 2013-10-13 (0 days ago)
  dmi.bios.date: 09/18/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: X200CA.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: X200CA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX200CA.208:bd09/18/2013:svnASUSTeKCOMPUTERINC.:pnX200CA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX200CA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: X200CA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1239459/+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 2001558] [NEW] legacy nas units fail using 22.04 mount cifs and nfs

2023-01-03 Thread Tom Stover
Public bug reported:

My legacy nas units are Quantum SnapServers. They can support Microsoft
networking and NFS. Using the linux mount cifs utilities, I can access
the Microsoft-networking server and everything works (ls, mkdir, touch,
rm, etc) but I cannot write to a file no mattter what options I try.
Using 20.04, I could access the nfs server thru linux mount nfs and
everything worked. After upgrading to 22.04, I lost nfs access to the
nas.

I am unable to make any software changes to the nas units.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: linux-image-5.15.0-56-generic 5.15.0-56.62
ProcVersionSignature: Ubuntu 5.15.0-56.62-generic 5.15.64
Uname: Linux 5.15.0-56-generic x86_64
ApportVersion: 2.20.11-0ubuntu82.3
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  tom1534 F pulseaudio
CRDA: N/A
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Tue Jan  3 15:48:23 2023
HotplugNewDevices:
 
HotplugNewMounts:
 
InstallationDate: Installed on 2021-01-11 (721 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
MachineType: Dell Inc. OptiPlex 780
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-56-generic 
root=UUID=d2457659-a716-47d5-aa0c-1c2a3fb6edf8 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.15.0-56-generic N/A
 linux-backports-modules-5.15.0-56-generic  N/A
 linux-firmware 20220329.git681281e4-0ubuntu3.7
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Symptom: storage
UdevMonitorLog:
 monitor will print the received events for:
 UDEV - the event which udev sends out after rule processing
UdisksMonitorLog:
 Monitoring the udisks daemon. Press Ctrl+C to exit.
 15:49:20.493: The udisks-daemon is running (name-owner :1.14).
UpgradeStatus: Upgraded to jammy on 2022-12-31 (3 days ago)
dmi.bios.date: 04/30/2010
dmi.bios.release: 5.0
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A04
dmi.board.name: 03NVJ6
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 15
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA04:bd04/30/2010:br5.0:svnDellInc.:pnOptiPlex780:pvr:rvnDellInc.:rn03NVJ6:rvrA00:cvnDellInc.:ct15:cvr:sku:
dmi.product.name: OptiPlex 780
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug jammy wayland-session

-- 
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/2001558

Title:
  legacy nas units fail using 22.04 mount cifs and nfs

Status in linux package in Ubuntu:
  New

Bug description:
  My legacy nas units are Quantum SnapServers. They can support
  Microsoft networking and NFS. Using the linux mount cifs utilities, I
  can access the Microsoft-networking server and everything works (ls,
  mkdir, touch, rm, etc) but I cannot write to a file no mattter what
  options I try. Using 20.04, I could access the nfs server thru linux
  mount nfs and everything worked. After upgrading to 22.04, I lost nfs
  access to the nas.

  I am unable to make any software changes to the nas units.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-56-generic 5.15.0-56.62
  ProcVersionSignature: Ubuntu 5.15.0-56.62-generic 5.15.64
  Uname: Linux 5.15.0-56-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tom1534 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Jan  3 15:48:23 2023
  HotplugNewDevices:
   
  HotplugNewMounts:
   
  InstallationDate: Installed on 2021-01-11 (721 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  MachineType: Dell Inc. OptiPlex 780
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-56-generic 
root=UUID=d2457659-a716-47d5-aa0c-1c2a3fb6edf8 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-56-generic N/A
   linux-backports-modules-5.15.0-56-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.7
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Symptom: storage
  UdevMonitorLog:
   monitor will print the received events for:
   UDEV - the event which udev sends out after rule processing
  UdisksMonitorLog:
   Monitoring the udisks daemon. Press Ctrl+C to exit.
   15:49:20.493: The udisks-daemon is running (name-owner :1.14).
  Upg

[Kernel-packages] [Bug 2000843] Re: No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

2023-01-01 Thread Tom Reynolds
UBSAN excerpt from dmesg (plus a few lines before that):

[   55.506132] wl: loading out-of-tree module taints kernel.
[   55.506147] wl: module license 'MIXED/Proprietary' taints kernel.
[   55.506149] Disabling lock debugging due to kernel taint
[   55.516025] wl: module verification failed: signature and/or required key 
missing - tainting kernel
[   56.017067] sof-audio-acpi-intel-byt 808622A8:00: Firmware info: version 
1:6:0-e9637
[   56.017082] sof-audio-acpi-intel-byt 808622A8:00: Firmware: ABI 3:17:0 
Kernel ABI 3:18:0
[   56.346079] intel_rapl_common: Found RAPL domain package
[   56.346087] intel_rapl_common: Found RAPL domain core
[   56.443742] input: gpio-keys as 
/devices/platform/ACPI0011:00/gpio-keys.1.auto/input/input11
[   56.464522] input: gpio-keys as 
/devices/platform/ACPI0011:00/gpio-keys.2.auto/input/input12
[   56.817561] brcmfmac :01:00.0 wlp1s0: renamed from wlan0
[   56.897941] sof-audio-acpi-intel-byt 808622A8:00: Topology: ABI 3:17:0 
Kernel ABI 3:18:0
[   56.908253] sof-audio-acpi-intel-byt 808622A8:00: ASoC: Parent card not yet 
available, widget card binding deferred
[   56.917561] 

[   56.920605] UBSAN: shift-out-of-bounds in 
/build/linux-hwe-5.15-jemPrJ/linux-hwe-5.15-5.15.0/sound/soc/soc-dapm.c:815:15
[   56.923682] shift exponent 16384 is too large for 32-bit type 'unsigned int'
[   56.926763] CPU: 0 PID: 444 Comm: systemd-udevd Tainted: P   OE 
5.15.0-56-generic #62~20.04.1-Ubuntu
[   56.926769] Hardware name: Default string Default string/Default string, 
BIOS 5.11 08/07/2017
[   56.926773] Call Trace:
[   56.926777]  
[   56.926804]  __ubsan_handle_shift_out_of_bounds.cold+0x61/0x10e
[   56.926809]  ? __cond_resched+0x19/0x40
[   56.926817]  snd_soc_dapm_add_path.cold+0x87/0x135 [snd_soc_core]
[   56.926864]  snd_soc_dapm_add_route+0xfb/0x320 [snd_soc_core]
[   56.926896]  ? __snd_ctl_add_replace+0x175/0x1e0 [snd]
[   56.926916]  ? snd_ctl_add_replace+0x53/0xa0 [snd]
[   56.926929]  snd_soc_dapm_add_routes+0x50/0x90 [snd_soc_core]
[   56.926961]  soc_probe_component+0x21a/0x2a0 [snd_soc_core]
[   56.926990]  snd_soc_bind_card+0x52e/0x8b0 [snd_soc_core]
[   56.927020]  snd_soc_register_card+0x154/0x170 [snd_soc_core]
[   56.927049]  devm_snd_soc_register_card+0x48/0x90 [snd_soc_core]
[   56.927081]  snd_cht_mc_probe+0x45c/0x610 [snd_soc_sst_cht_bsw_rt5645]
[   56.927089]  ? kernfs_add_one+0xe6/0x130
[   56.927096]  ? acpi_dev_pm_attach+0x25/0xd0
[   56.927102]  platform_probe+0x49/0xd0
[   56.927108]  really_probe.part.0+0xcb/0x380
[   56.927113]  really_probe+0x40/0x80
[   56.927117]  __driver_probe_device+0x119/0x190
[   56.927120]  driver_probe_device+0x23/0xb0
[   56.927124]  __driver_attach+0xbd/0x170
[   56.927128]  ? __device_attach_driver+0x120/0x120
[   56.927131]  bus_for_each_dev+0x7e/0xd0
[   56.927137]  driver_attach+0x1e/0x30
[   56.927140]  bus_add_driver+0x178/0x220
[   56.927144]  driver_register+0x74/0xe0
[   56.927148]  ? 0xc0f05000
[   56.927151]  __platform_driver_register+0x1e/0x30
[   56.927155]  snd_cht_mc_driver_init+0x1c/0x1000 [snd_soc_sst_cht_bsw_rt5645]
[   56.927161]  do_one_initcall+0x48/0x1e0
[   56.927168]  ? __cond_resched+0x19/0x40
[   56.927172]  ? kmem_cache_alloc_trace+0x15a/0x420
[   56.927177]  do_init_module+0x52/0x230
[   56.927183]  load_module+0x138d/0x1610
[   56.927190]  __do_sys_finit_module+0xbf/0x120
[   56.927194]  ? __do_sys_finit_module+0xbf/0x120
[   56.927200]  __x64_sys_finit_module+0x1a/0x20
[   56.927204]  do_syscall_64+0x5c/0xc0
[   56.927208]  ? do_syscall_64+0x69/0xc0
[   56.927212]  ? exit_to_user_mode_prepare+0x3d/0x1c0
[   56.927218]  ? syscall_exit_to_user_mode+0x27/0x50
[   56.927222]  ? __x64_sys_newfstat+0x16/0x20
[   56.927229]  ? do_syscall_64+0x69/0xc0
[   56.927233]  ? __x64_sys_lseek+0x1a/0x20
[   56.927236]  ? do_syscall_64+0x69/0xc0
[   56.927240]  ? sysvec_apic_timer_interrupt+0x4e/0x90
[   56.927244]  entry_SYSCALL_64_after_hwframe+0x61/0xcb
[   56.927249] RIP: 0033:0x7f7169c2c73d
[   56.927254] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 
f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 
f0 ff ff 73 01 c3 48 8b 0d 23 37 0d 00 f7 d8 64 89 01 48
[   56.927258] RSP: 002b:7ffc408ab548 EFLAGS: 0246 ORIG_RAX: 
0139
[   56.927263] RAX: ffda RBX: 560f4dee8690 RCX: 7f7169c2c73d
[   56.927266] RDX:  RSI: 7f7169b0cded RDI: 0006
[   56.927268] RBP: 0002 R08:  R09: 
[   56.927270] R10: 0006 R11: 0246 R12: 7f7169b0cded
[   56.927273] R13:  R14: 560f4dee2a90 R15: 560f4dee8690
[   56.927277]  
[   56.927278] 

[   56.993998] input: sof-bytcht rt5645 Headset as 

[Kernel-packages] [Bug 2000843] Re: No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

2023-01-01 Thread Tom Reynolds
** Attachment added: "dmesg"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.15/+bug/2000843/+attachment/5638801/+files/dmesg.txt

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

Title:
  No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

Status in linux-signed-hwe-5.15 package in Ubuntu:
  New

Bug description:
  I have no audio output on internal speaker (headphones untested) with
  HWE kernel (5.15.0-56-generic). Audio does work on GA kernel
  (5.4.0-135-generic).

  It appears that due to UBSAN striking against intel-sof, the codec is
  not loaded properly during boot - but I may be misinterpreting this.

  Kernel tainted due to wl.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.15.0-56-generic 5.15.0-56.62~20.04.1
  ProcVersionSignature: Ubuntu 5.15.0-56.62~20.04.1-generic 5.15.64
  Uname: Linux 5.15.0-56-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.11-0ubuntu27.25
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Jan  1 21:19:16 2023
  InstallationDate: Installed on 2018-01-28 (1799 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  SourcePackage: linux-signed-hwe-5.15
  UpgradeStatus: Upgraded to focal on 2021-09-07 (480 days ago)
  mtime.conffile..etc.apport.crashdb.conf: 2019-10-29T13:43:56.309114

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.15/+bug/2000843/+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 2000843] Re: No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

2023-01-01 Thread Tom Reynolds
** Attachment added: "alsa-info"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.15/+bug/2000843/+attachment/5638802/+files/alsa-info.txt

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

Title:
  No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

Status in linux-signed-hwe-5.15 package in Ubuntu:
  New

Bug description:
  I have no audio output on internal speaker (headphones untested) with
  HWE kernel (5.15.0-56-generic). Audio does work on GA kernel
  (5.4.0-135-generic).

  It appears that due to UBSAN striking against intel-sof, the codec is
  not loaded properly during boot - but I may be misinterpreting this.

  Kernel tainted due to wl.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.15.0-56-generic 5.15.0-56.62~20.04.1
  ProcVersionSignature: Ubuntu 5.15.0-56.62~20.04.1-generic 5.15.64
  Uname: Linux 5.15.0-56-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.11-0ubuntu27.25
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Jan  1 21:19:16 2023
  InstallationDate: Installed on 2018-01-28 (1799 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  SourcePackage: linux-signed-hwe-5.15
  UpgradeStatus: Upgraded to focal on 2021-09-07 (480 days ago)
  mtime.conffile..etc.apport.crashdb.conf: 2019-10-29T13:43:56.309114

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.15/+bug/2000843/+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 2000843] [NEW] No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

2023-01-01 Thread Tom Reynolds
Public bug reported:

I have no audio output on internal speaker (headphones untested) with
HWE kernel (5.15.0-56-generic). Audio does work on GA kernel
(5.4.0-135-generic).

It appears that due to UBSAN striking against intel-sof, the codec is
not loaded properly during boot - but I may be misinterpreting this.

Kernel tainted due to wl.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.15.0-56-generic 5.15.0-56.62~20.04.1
ProcVersionSignature: Ubuntu 5.15.0-56.62~20.04.1-generic 5.15.64
Uname: Linux 5.15.0-56-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.11-0ubuntu27.25
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Jan  1 21:19:16 2023
InstallationDate: Installed on 2018-01-28 (1799 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
SourcePackage: linux-signed-hwe-5.15
UpgradeStatus: Upgraded to focal on 2021-09-07 (480 days ago)
mtime.conffile..etc.apport.crashdb.conf: 2019-10-29T13:43:56.309114

** Affects: linux-signed-hwe-5.15 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal regression-release wayland-session

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

Title:
  No audio on GPD pocket 1 with Linux 5.15 / intel-sof hits UBSAN

Status in linux-signed-hwe-5.15 package in Ubuntu:
  New

Bug description:
  I have no audio output on internal speaker (headphones untested) with
  HWE kernel (5.15.0-56-generic). Audio does work on GA kernel
  (5.4.0-135-generic).

  It appears that due to UBSAN striking against intel-sof, the codec is
  not loaded properly during boot - but I may be misinterpreting this.

  Kernel tainted due to wl.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.15.0-56-generic 5.15.0-56.62~20.04.1
  ProcVersionSignature: Ubuntu 5.15.0-56.62~20.04.1-generic 5.15.64
  Uname: Linux 5.15.0-56-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.11-0ubuntu27.25
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Jan  1 21:19:16 2023
  InstallationDate: Installed on 2018-01-28 (1799 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  SourcePackage: linux-signed-hwe-5.15
  UpgradeStatus: Upgraded to focal on 2021-09-07 (480 days ago)
  mtime.conffile..etc.apport.crashdb.conf: 2019-10-29T13:43:56.309114

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.15/+bug/2000843/+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 1992679] Re: Can not login after new kernel installed (nvidia driver crashed)

2022-10-15 Thread Tom
Exactly the same issue.

5.15.0-50 did not boot at all.

Went back to 5.15.0-48, Ubuntu software manager claimed some updates had
to be done and I did them.

Now 5.15.0-48 no longer boots, my machine is unusable... Not ideal at
all...

-- 
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/1992679

Title:
  Can not login after new kernel installed (nvidia driver crashed)

Status in linux package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-510 package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-515 package in Ubuntu:
  Confirmed
Status in linux source package in Jammy:
  Confirmed
Status in nvidia-graphics-drivers-510 source package in Jammy:
  Confirmed
Status in nvidia-graphics-drivers-515 source package in Jammy:
  Confirmed

Bug description:
  Hello. Today i have installed new kernel from. I installed 5.15.0-50
  and after that i can not login to system... I see boot text, but after
  booting i see black log screen and can not login. I able boot and
  login with old kernel  (5.15.0-48).

  I updated these packages:
  Install: linux-headers-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-cloud-tools-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-modules-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-modules-extra-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-cloud-tools-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-tools-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-headers-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-image-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-tools-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic)
  Upgrade: linux-headers-generic:amd64 (5.15.0.48.48, 5.15.0.50.50), 
google-chrome-stable:amd64 (106.0.5249.103-1, 106.0.5249.119-1), 
linux-generic:amd64 (5.15.0.48.48, 5.15.0.50.50), linux-image-generic:amd64 
(5.15.0.48.48, 5.15.0.50.50), linux-tools-generic:amd64 (5.15.0.48.48, 
5.15.0.50.50), linux-cloud-tools-generic:amd64 (5.15.0.48.48, 5.15.0.50.50)

  Updated logs see in attachement.

  Logs from journalctl see in attachements.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-50-generic 5.15.0-50.56
  ProcVersionSignature: Ubuntu 5.15.0-48.54-generic 5.15.53
  Uname: Linux 5.15.0-48-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  vodka  1819 F pulseaudio
   /dev/snd/controlC1:  vodka  1819 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Wed Oct 12 19:56:43 2022
  InstallationDate: Installed on 2018-05-02 (1623 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 003: ID 09da:fa18 A4Tech Co., Ltd. USB Device
   Bus 001 Device 002: ID 046d:c084 Logitech, Inc. G203 Gaming Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Gigabyte Technology Co., Ltd. H610M S2H DDR4
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-48-generic 
root=UUID=b27e8e45-cedd-4ab6-b2e6-ab6bef5e9336 ro
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-48-generic N/A
   linux-backports-modules-5.15.0-48-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.5
  RfKill:

  SourcePackage: linux
  UpgradeStatus: Upgraded to jammy on 2022-04-27 (167 days ago)
  dmi.bios.date: 03/28/2022
  dmi.bios.release: 5.24
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: F7a
  dmi.board.asset.tag: Default string
  dmi.board.name: H610M S2H DDR4
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrF7a:bd03/28/2022:br5.24:svnGigabyteTechnologyCo.,Ltd.:pnH610MS2HDDR4:pvr-CF:rvnGigabyteTechnologyCo.,Ltd.:rnH610MS2HDDR4:rvrx.x:cvnDefaultstring:ct3:cvrDefaultstring:skuDefaultstring:
  dmi.product.family: H610 MB
  dmi.product.name: H610M S2H DDR4
  dmi.product.sku: Default string
  dmi.product.version: -CF
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1992679/+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 1978359] Re: boot kernel errors

2022-08-28 Thread Tom Reynolds
This is probably a duplicate of bug 1981783.

-- 
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/1978359

Title:
  boot kernel errors

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: fbcon: Taking over console
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR01._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR02._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR03._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR04._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR05._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR06._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)
  Jun 10 23:34:40 luke kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_PR.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Local Variables are initialized for Method 
[_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: No Arguments are initialized for method [_CPC]
  Jun 10 23:34:40 luke kernel: 
  Jun 10 23:34:40 luke kernel: ACPI Error: Aborting method \_PR.PR07._CPC due 
to previous error (AE_NOT_FOUND) (20210730/psparse-529)

  This happens while booting a newer kernel than the gm kernel (-25) 
  bug is reported here and a fix already posted 
https://github.com/intel/linux-intel-lts/issues/22

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-37-generic 5.15.0-37.39
  ProcVersionSignature: Ubuntu 5.15.0-37.39-generic 5.15.35
  Uname: Linux 5.15.0-37-generic x86_64
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alorenz1772 F pulseaudio
   /dev/snd/pcmC0D0p:   alorenz1772 F...m pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Jun 10 23:45:45 2022
  InstallationDate: Installed on 2022-06-06 (4 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  Lsusb:
   Bus 002 Device 001: ID 

[Kernel-packages] [Bug 1983180] Re: ACPI Error _CPC not found

2022-08-28 Thread Tom Reynolds
** Bug watch added: Linux Kernel Bug Tracker #213023
   https://bugzilla.kernel.org/show_bug.cgi?id=213023

** Also affects: linux via
   https://bugzilla.kernel.org/show_bug.cgi?id=213023
   Importance: Unknown
   Status: Unknown

-- 
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/1983180

Title:
  ACPI Error _CPC not found

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

Bug description:
  just recently (I guess since the last update) I get a few ACPI error
  messages during start up. Those are also visible with dmesg:

  ...
  [0.713907] ACPI: AC: AC Adapter [AC] (on-line)
  [0.713978] input: Sleep Button as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
  [0.714011] ACPI: button: Sleep Button [SLPB]
  [0.714040] input: Lid Switch as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
  [0.714061] ACPI: button: Lid Switch [LID]
  [0.714087] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
  [0.714105] ACPI: button: Power Button [PWRF]
  [0.714187] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.714199] No Local Variables are initialized for Method [_CPC]
  [0.714201] No Arguments are initialized for method [_CPC]
  [0.714203] ACPI Error: Aborting method \_SB.PR01._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.714395] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.714404] No Local Variables are initialized for Method [_CPC]
  [0.714405] No Arguments are initialized for method [_CPC]
  [0.714407] ACPI Error: Aborting method \_SB.PR02._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.714480] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.714488] No Local Variables are initialized for Method [_CPC]
  [0.714490] No Arguments are initialized for method [_CPC]
  [0.714492] ACPI Error: Aborting method \_SB.PR03._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.714640] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.714651] No Local Variables are initialized for Method [_CPC]
  [0.714653] No Arguments are initialized for method [_CPC]
  [0.714655] ACPI Error: Aborting method \_SB.PR04._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.714940] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.714952] No Local Variables are initialized for Method [_CPC]
  [0.714953] No Arguments are initialized for method [_CPC]
  [0.714955] ACPI Error: Aborting method \_SB.PR05._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.715106] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.715118] No Local Variables are initialized for Method [_CPC]
  [0.715119] No Arguments are initialized for method [_CPC]
  [0.715121] ACPI Error: Aborting method \_SB.PR06._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.715309] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.715321] No Local Variables are initialized for Method [_CPC]
  [0.715322] No Arguments are initialized for method [_CPC]
  [0.715324] ACPI Error: Aborting method \_SB.PR07._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.715611] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.715623] No Local Variables are initialized for Method [_CPC]
  [0.715624] No Arguments are initialized for method [_CPC]
  [0.715626] ACPI Error: Aborting method \_SB.PR08._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.716055] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.716067] No Local Variables are initialized for Method [_CPC]
  [0.716069] No Arguments are initialized for method [_CPC]
  [0.716071] ACPI Error: Aborting method \_SB.PR09._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.716360] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
  [0.716371] No Local Variables are initialized for Method [_CPC]
  [0.716373] No Arguments are initialized for method [_CPC]
  [0.716375] ACPI Error: Aborting method \_SB.PR10._CPC due to previous 
error (AE_NOT_FOUND) (20210730/psparse-529)
  [0.716669] ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PR00._CPC], AE_NOT_FOUND 

[Kernel-packages] [Bug 1976481] [NEW] ath9k driver takes 100% of CPU since update to 22.04

2022-06-01 Thread Tom Barbette
Public bug reported:

Hi all,

I recently updated my home server to Ubuntu 22.04, and since then my
WiFi access point (ath9k driver) fails after an hour or so.

I saw with htop that one of my CPU core is at 100% of the kernel.

With perf top I could find it's spending time in the ath9k driver, in
ioread32, see the attachment.

Looks like an infinite loop or so. It worked very well before the
upgrade.

Any idea?

Thanks,
Tom

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: linux-image-5.15.0-33-generic 5.15.0-33.34
ProcVersionSignature: Ubuntu 5.15.0-33.34-generic 5.15.30
Uname: Linux 5.15.0-33-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  gdm3274 F pulseaudio
 /dev/snd/controlC1:  gdm3274 F pulseaudio
CasperMD5CheckResult: unknown
Date: Wed Jun  1 10:35:42 2022
InstallationDate: Installed on 2020-08-25 (644 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
MachineType: ASUSTeK COMPUTER INC. N550JV
ProcEnviron:
 LANG=fr_BE.UTF-8
 LANGUAGE=fr_BE:fr
 PATH=(custom, no user)
 TERM=screen-256color
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-33-generic 
root=/dev/mapper/lvgroup-system ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-5.15.0-33-generic N/A
 linux-backports-modules-5.15.0-33-generic  N/A
 linux-firmware 20220329.git681281e4-0ubuntu3.2
SourcePackage: linux
UpgradeStatus: Upgraded to jammy on 2022-05-19 (12 days ago)
dmi.bios.date: 11/19/2013
dmi.bios.release: 4.6
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N550JV.208
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N550JV
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:br4.6:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:skuASUS-NotebookSKU:
dmi.product.family: N
dmi.product.name: N550JV
dmi.product.sku: ASUS-NotebookSKU
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug jammy

** Attachment added: "Capture d’écran 2022-06-01 104143.png"
   
https://bugs.launchpad.net/bugs/1976481/+attachment/5594244/+files/Capture%20d%E2%80%99%C3%A9cran%202022-06-01%20104143.png

-- 
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/1976481

Title:
  ath9k driver takes 100% of CPU since update to 22.04

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hi all,

  I recently updated my home server to Ubuntu 22.04, and since then my
  WiFi access point (ath9k driver) fails after an hour or so.

  I saw with htop that one of my CPU core is at 100% of the kernel.

  With perf top I could find it's spending time in the ath9k driver, in
  ioread32, see the attachment.

  Looks like an infinite loop or so. It worked very well before the
  upgrade.

  Any idea?

  Thanks,
  Tom

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-33-generic 5.15.0-33.34
  ProcVersionSignature: Ubuntu 5.15.0-33.34-generic 5.15.30
  Uname: Linux 5.15.0-33-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gdm3274 F pulseaudio
   /dev/snd/controlC1:  gdm3274 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Wed Jun  1 10:35:42 2022
  InstallationDate: Installed on 2020-08-25 (644 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcEnviron:
   LANG=fr_BE.UTF-8
   LANGUAGE=fr_BE:fr
   PATH=(custom, no user)
   TERM=screen-256color
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-33-generic 
root=/dev/mapper/lvgroup-system ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-33-generic N/A
   linux-backports-modules-5.15.0-33-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  SourcePackage: linux
  UpgradeStatus: Upgraded to jammy on 2022-05-19 (12 da

[Kernel-packages] [Bug 1970066] Re: using snap after fresh 22.04 install with (encrypted) ZFS breaks APT, snapd

2022-04-24 Thread Tom Reynolds
** Tags added: regression-release

** Summary changed:

- using snap after fresh 22.04 install with (encrypted) ZFS breaks APT, snapd
+ (Encrypted) ZFS breaks 22.04 installation

** Also affects: zfs-linux (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  (Encrypted) ZFS breaks 22.04 installation

Status in snapd package in Ubuntu:
  New
Status in zfs-linux package in Ubuntu:
  New
Status in snapd source package in Jammy:
  New
Status in zfs-linux source package in Jammy:
  New

Bug description:
  On a freshly installed 22.04.0 amd64 Desktop with (encrypted) ZFS, removing 
the Firefox snap breaks:
  * the current gnome-shell session - it returns to gdm3 login prompt
  * snapd - all snaps are marked 'broken'
  * dpkg - dpkg status database is lost

  Reproducible on dedicated hardware and VMs. Not reproducible on a
  default (/ on ext4) installation.

  Video showing the whole process on a freshly installed system:
  
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1970066/+attachment/5583102/+files/1970066.webm

  journalctl -b output:
  
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1970066/+attachment/5583100/+files/1970066_journal.txt

  /proc/self/mountinfo:
  
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1970066/+attachment/5583101/+files/1970066_mountinfo.txt

  Installation procedure: 
  - Minimal installation
  - Tick 'download updates'
  - Tick 'install third party software'
  - Erase disk and use ZFS + encrypt
  - Require password to log in

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1970066/+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 1896350] Re: nbd locks system?

2022-04-01 Thread Tom Zhou
** Tags added: sts

-- 
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/1896350

Title:
  nbd locks system?

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use nbd on ubuntu 20.04 like so:

  qemu-img create -f qcow2 foo.img 500M
  sudo modprobe nbd
  sudo qemu-nbd --disconnect /dev/nbd15 || true
  sudo qemu-nbd --connect=/dev/nbd15 --cache=writeback --format=qcow2 foo.img
  sudo mkfs.ext4 -L root -O "^64bit" -E nodiscard /dev/nbd15
  sudo qemu-nbd --disconnect /dev/nbd15

  It seems to work on some systems, but even on those systems, strange things 
show up
  in syslog, e.g.

  Sep 19 15:46:02 thinky kernel: [27042.757768] block nbd15: Possible stuck 
request dd2d7f93: control (read@135168,126976B). Runtime 450 seconds
  Sep 19 15:46:26 thinky kernel: [27067.333867] INFO: task systemd-udevd:17364 
blocked for more than 241 seconds.

  and in kern.log, e.g.

  ...
  Sep 19 16:17:27 thinky kernel: [   71.676026] Buffer I/O error on dev nbd15, 
logical block 7, async page read
  Sep 19 16:17:27 thinky kernel: [   71.676049] blk_update_request: I/O error, 
dev nbd15, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  Sep 19 16:17:27 thinky kernel: [   71.676051] Buffer I/O error on dev nbd15, 
logical block 0, async page read
  Sep 19 16:17:27 thinky kernel: [   71.676061] blk_update_request: I/O error, 
dev nbd15, sector 1 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  Sep 19 16:17:27 thinky kernel: [   71.676063] Buffer I/O error on dev nbd15, 
logical block 1, async page read
  Sep 19 16:17:27 thinky kernel: [   71.676147] ldm_validate_partition_table(): 
Disk read failed.
  Sep 19 16:17:27 thinky kernel: [   71.676324] Dev nbd15: unable to read RDB 
block 0
  Sep 19 16:17:27 thinky kernel: [   71.676473]  nbd15: unable to read 
partition table
  Sep 19 16:17:27 thinky kernel: [   71.678340] nbd15: detected capacity change 
from 0 to 524288000
  Sep 19 16:17:27 thinky kernel: [   71.678536] ldm_validate_partition_table(): 
Disk read failed.
  Sep 19 16:17:27 thinky kernel: [   71.678719] Dev nbd15: unable to read RDB 
block 0
  Sep 19 16:17:27 thinky kernel: [   71.678947]  nbd15: unable to read 
partition table
  Sep 19 16:17:27 thinky kernel: [   71.679985] ldm_validate_partition_table(): 
Disk read failed.
  Sep 19 16:17:27 thinky kernel: [   71.680172] Dev nbd15: unable to read RDB 
block 0
  Sep 19 16:17:27 thinky kernel: [   71.680366]  nbd15: unable to read 
partition table
  Sep 19 16:17:27 thinky kernel: [   71.680647] block nbd15: Attempted send on 
invalid socket

  and the system seems to hang on reboot.

  Also, on another system (an up to date mac, running ubuntu 20.04 in 
virtualbox), 
  the mkfs.ext4 fails, complaining the device is zero size.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-47-generic 5.4.0-47.51
  ProcVersionSignature: Ubuntu 5.4.0-47.51-generic 5.4.55
  Uname: Linux 5.4.0-47-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair nvidia_modeset 
nvidia
  ApportVersion: 2.20.11-0ubuntu27.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  dank   2948 F pulseaudio
   /dev/snd/controlC2:  dank   2948 F pulseaudio
   /dev/snd/controlC0:  dank   2948 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Sep 19 16:28:43 2020
  HibernationDevice: RESUME=UUID=7aecd5d3-2f5b-4c07-8867-801e63868a0f
  InstallationDate: Installed on 2017-04-29 (1239 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Release amd64 (20170412)
  MachineType: LENOVO ThinkServer TS140
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-47-generic 
root=UUID=ff9a24e4-277d-4baf-819b-826a33d5bb5e ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-47-generic N/A
   linux-backports-modules-5.4.0-47-generic  N/A
   linux-firmware1.187.2
  RfKill:
   
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-05-01 (141 days ago)
  dmi.bios.date: 09/19/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: FBKT99AUS
  dmi.board.name: ThinkServer TS140
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.type: 7
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnLENOVO:bvrFBKT99AUS:bd09/19/2014:svnLENOVO:pnThinkServerTS140:pvr70A4000HUX:rvnLENOVO:rnThinkServerTS140:rvrNotDefined:cvnLENOVO:ct7:cvrToBeFilledByO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: ThinkServer TS140
  dmi.product.sku: LENOVO_PN_ThinkServer TS140
  dmi.product.version: 70A4000HUX
  dmi.sys.vendor: LENOVO

To manage 

[Kernel-packages] [Bug 1956401] Re: amdgpu hangs for 90 seconds at a time in 5.13.0-23, but 5.13.0-22 works

2022-01-09 Thread Tom Cook
Confirmed on Ryzen 7 3700U, and that the -24 pre-release update fixes
it.  Standby has never worked on this system so I can't comment on that.

-- 
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/1956401

Title:
  amdgpu hangs for 90 seconds at a time in 5.13.0-23, but 5.13.0-22
  works

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Impish:
  Confirmed

Bug description:
  SRU Justification

  Impact:

  This does not occur with linux-image-5.13.0-22-generic, but does with 
linux-image-5.13.0-23-generic.
  On startup, I get about a 60 second hang, with the following in the kernel 
dmesg:
  Jan  4 15:26:36 inspiron-3505 kernel: [   34.160572] amdgpu :04:00.0: 
amdgp : failed to write reg 28b4 wait reg 28c6
  Jan  4 15:26:56 inspiron-3505 kernel: [   54.189055] amdgpu :04:00.0: 
amdgp : failed to write reg 1a6f4 wait reg 1a706
  Jan  4 15:27:16 inspiron-3505 kernel: [   74.329264] amdgpu :04:00.0: 
amdgp : failed to write reg 28b4 wait reg 28c6
  Jan  4 15:27:36 inspiron-3505 kernel: [   94.337904] amdgpu :04:00.0: 
amdgp : failed to write reg 1a6f4 wait reg 1a706
  I have the following GPU:
  04:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] 
Picass
  o (rev c2) (prog-if 00 [VGA controller])
  04:00.0 0300: 1002:15d8 (rev c2)
  (This is a Ryzen 5 3450U CPU with Radeon Vega Mobile.)

  I get a similar hang if I start firefox (when it's probing OpenGL
  contexts), and even with glxgears and glxinfo. Seems like anything
  that'd kick on a OpenGL context does it.  I had a freeze as well when
  I tried running firefox and glxgears both.  Along with odd BUG:
  messages logged (I have some in the attached log.)

  I was running with "iommu=pt", but did try with this removed, still
  got the errors (I think amdgpu driver uses the IOMMU even when it's
  set to IOMMU=pt though.).  See the attached log for some very odd
  "[Hardware Error]" messages that were logged on one test run.  I think
  this was when I tried to run firestorm (second life viewer) -- that
  had a large pause then opened to a black window.

  Per Google, I see there was a bug like this that turned up in kernel
  5.14.15 but fixed in 5.14.17.  See
  https://gitlab.freedesktop.org/drm/amd/-/issues/1770

  Thanks!
  --Henry

  Fix:
  upstream commit afd18180c070 ("drm/amdkfd: fix boot failure when iommu is 
disabled in Picasso.")

  Patch was included in the Impish kernel in -proposed (5.13.0.24.24)
  from an upstream patch set. multiple confirmations the problem is
  resolved with the kernel in -proposed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1956401/+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 1856608] Re: [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is bad?

2021-08-18 Thread Tom
I am getting the same bug. 21' System76 Gazelle (gaze16), Ubuntu 20.04LTS.
I am getting this bug with the new INC-004 Belkin CONNECT 11-in-1 USB-C 
Multiport Hub. Ethernet and HDMI display output are working but USB throws 
errors.

-uname -a
5.11.0-7620-generic #21~1626191760~20.04~55de9c3~dev-Ubuntu SMP Tue Jul 20 
18:02:09  x86_64 x86_64 x86_64 GNU/Linux

-cat /var/log/syslog | grep kernel
Aug 18 13:48:25 exfil kernel: [ 5659.363129] usb 2-3: new SuperSpeed Gen 1 USB 
device number 9 using xhci_hcd
Aug 18 13:48:25 exfil kernel: [ 5659.385549] usb 2-3: New USB device found, 
idVendor=2109, idProduct=0817, bcdDevice= 3.b4
Aug 18 13:48:25 exfil kernel: [ 5659.385559] usb 2-3: New USB device strings: 
Mfr=1, Product=2, SerialNumber=3
Aug 18 13:48:25 exfil kernel: [ 5659.385562] usb 2-3: Product: USB3.0 Hub   
  
Aug 18 13:48:25 exfil kernel: [ 5659.385565] usb 2-3: Manufacturer: VIA Labs, 
Inc. 
Aug 18 13:48:25 exfil kernel: [ 5659.387948] hub 2-3:1.0: USB hub found
Aug 18 13:48:25 exfil kernel: [ 5659.388502] hub 2-3:1.0: 4 ports detected
Aug 18 13:48:29 exfil kernel: [ 5663.471049] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:29 exfil kernel: [ 5663.471134] usb usb1-port3: attempt power cycle
Aug 18 13:48:33 exfil kernel: [ 5667.906931] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:37 exfil kernel: [ 5672.003075] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:37 exfil kernel: [ 5672.003155] usb usb1-port3: unable to 
enumerate USB device
Aug 18 13:48:41 exfil kernel: [ 5676.235101] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:46 exfil kernel: [ 5680.323145] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:46 exfil kernel: [ 5680.323227] usb usb1-port3: attempt power cycle
Aug 18 13:48:50 exfil kernel: [ 5684.731150] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:54 exfil kernel: [ 5688.819059] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:48:54 exfil kernel: [ 5688.819109] usb usb1-port3: unable to 
enumerate USB device
Aug 18 13:48:58 exfil kernel: [ 5693.051196] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:49:02 exfil kernel: [ 5697.139187] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:49:02 exfil kernel: [ 5697.139272] usb usb1-port3: attempt power cycle
Aug 18 13:49:07 exfil kernel: [ 5701.551207] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:49:11 exfil kernel: [ 5705.639242] usb usb1-port3: Cannot enable. 
Maybe the USB cable is bad?
Aug 18 13:49:11 exfil kernel: [ 5705.639326] usb usb1-port3: unable to 
enumerate USB device

-- 
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/1856608

Title:
  [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is
  bad?

Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Disco:
  Fix Released
Status in linux source package in Eoan:
  Fix Released
Status in linux source package in Focal:
  Confirmed

Bug description:
  This appears to be a regression between 4.15.0-70.79 and 4.15.0-72.81.
  This bug was fixed by simply reverting the offending change. Bug 1859873 
tracks root causing the issue and reapplying the change w/ any necessary fixes.

  [Impact]
  USB port unusable and boot time takes ~5 minutes longer to complete.

  Kernel emits messages like:
  usb usb2-port2: Cannot enable. Maybe the USB cable is bad?

  [Test Case]
  dmesg | grep "Cannot enable"

  [Fix]
  [Regression Risk]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1856608/+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 1932360] Re: IR receiver broken by 5.8.0-55, worked in -48

2021-06-25 Thread Tom Horsley
*** This bug is a duplicate of bug 1901089 ***
https://bugs.launchpad.net/bugs/1901089

** This bug has been marked a duplicate of bug 1901089
   Ubuntu kernels 5.4.0-51 and 5.4.0-52 break ir-keytable loading

-- 
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/1932360

Title:
  IR receiver broken by 5.8.0-55, worked in -48

Status in linux package in Ubuntu:
  New

Bug description:
  On intel nuc used as media server running ubuntu 20.04, the IR remote
  broke in kernel 5.8.0-55. Running ir-keytable -t shows that a single
  IR button press spews key down codes forever, and never does a key up.
  Going back to kernel 5.8.0-48 makes the remote work properly again.
  Here's a sample of the working output:

  Testing events. Please, press CTRL-C to abort.
  381.380140: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
  381.380213: event type EV_MSC(0x04): scancode = 0x800f0423
  381.380213: event type EV_KEY(0x01) key_down: KEY_ESC(0x0001)
  381.380213: event type EV_SYN(0x00).
  ^[381.485706: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
  381.485722: event type EV_MSC(0x04): scancode = 0x800f0423
  381.485722: event type EV_SYN(0x00).
  381.592718: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
  381.592736: event type EV_MSC(0x04): scancode = 0x800f0423
  381.592736: event type EV_SYN(0x00).
  381.725662: event type EV_KEY(0x01) key_up: KEY_ESC(0x0001)
  381.725662: event type EV_SYN(0x00).

  The key down part just repeats over and over in the busted kernel.

  root@nuc:~# lsb_release -rd
  Description:Ubuntu 20.04.2 LTS
  Release:20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1932360/+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 1901089] Re: Ubuntu kernels 5.4.0-51 and 5.4.0-52 break ir-keytable loading

2021-06-17 Thread Tom Horsley
Looks like the bug I just added at
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1932360 is a
duplicate of this which I didn't find in any searches before I added it.

-- 
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/1901089

Title:
  Ubuntu kernels 5.4.0-51 and 5.4.0-52 break ir-keytable loading

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I run mythtv on Ubuntu 20.04 and I used a custom remote control keymap
  in /etc/rc_keymaps to correctly map buttons on my IR remote.  The
  above kernel seems to break custom keymap loading for my remote
  (certain buttons no longer work in mythtv).  Reverting to kernel
  5.4.0-48 corrects the problem.

  Description:  Ubuntu 20.04.1 LTS
  Release:  20.04

  linux-image-5.4.0-52-generic:
Installed: 5.4.0-52.57
Candidate: 5.4.0-52.57
Version table:
   *** 5.4.0-52.57 500
  500 http://us.archive.ubuntu.com/ubuntu focal-updates/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu focal-security/main amd64 
Packages
  100 /var/lib/dpkg/status

  belongs to the linux source package

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-52-generic 5.4.0-52.57
  ProcVersionSignature: Ubuntu 5.4.0-48.52-generic 5.4.60
  Uname: Linux 5.4.0-48-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  pdaniel1552 F pulseaudio
   /dev/snd/controlC0:  pdaniel1552 F pulseaudio
  CasperMD5CheckResult: skip
  Date: Thu Oct 22 16:16:58 2020
  InstallationDate: Installed on 2017-04-17 (1284 days ago)
  InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
  MachineType: MSI MS-7792
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-48-generic 
root=UUID=38b7dfb0-9848-4919-890b-fdc027e936f1 ro radeon.dpm=0 quiet splash 
vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-48-generic N/A
   linux-backports-modules-5.4.0-48-generic  N/A
   linux-firmware1.187.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-05-11 (164 days ago)
  dmi.bios.date: 02/12/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V2.4
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: FM2-A75IA-E53 (MS-7792)
  dmi.board.vendor: MSI
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV2.4:bd02/12/2015:svnMSI:pnMS-7792:pvr1.0:rvnMSI:rnFM2-A75IA-E53(MS-7792):rvr1.0:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7792
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 1.0
  dmi.sys.vendor: MSI

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901089/+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 1932360] [NEW] IR receiver broken by 5.8.0-55, worked in -48

2021-06-17 Thread Tom Horsley
Public bug reported:

On intel nuc used as media server running ubuntu 20.04, the IR remote
broke in kernel 5.8.0-55. Running ir-keytable -t shows that a single IR
button press spews key down codes forever, and never does a key up.
Going back to kernel 5.8.0-48 makes the remote work properly again.
Here's a sample of the working output:

Testing events. Please, press CTRL-C to abort.
381.380140: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
381.380213: event type EV_MSC(0x04): scancode = 0x800f0423
381.380213: event type EV_KEY(0x01) key_down: KEY_ESC(0x0001)
381.380213: event type EV_SYN(0x00).
^[381.485706: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
381.485722: event type EV_MSC(0x04): scancode = 0x800f0423
381.485722: event type EV_SYN(0x00).
381.592718: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
381.592736: event type EV_MSC(0x04): scancode = 0x800f0423
381.592736: event type EV_SYN(0x00).
381.725662: event type EV_KEY(0x01) key_up: KEY_ESC(0x0001)
381.725662: event type EV_SYN(0x00).

The key down part just repeats over and over in the busted kernel.

root@nuc:~# lsb_release -rd
Description:Ubuntu 20.04.2 LTS
Release:20.04

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

** Attachment added: "lspci -vnvn from system (currently booted in working 
kernel)"
   
https://bugs.launchpad.net/bugs/1932360/+attachment/5505355/+files/lspci-vnvn.log

-- 
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/1932360

Title:
  IR receiver broken by 5.8.0-55, worked in -48

Status in linux package in Ubuntu:
  New

Bug description:
  On intel nuc used as media server running ubuntu 20.04, the IR remote
  broke in kernel 5.8.0-55. Running ir-keytable -t shows that a single
  IR button press spews key down codes forever, and never does a key up.
  Going back to kernel 5.8.0-48 makes the remote work properly again.
  Here's a sample of the working output:

  Testing events. Please, press CTRL-C to abort.
  381.380140: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
  381.380213: event type EV_MSC(0x04): scancode = 0x800f0423
  381.380213: event type EV_KEY(0x01) key_down: KEY_ESC(0x0001)
  381.380213: event type EV_SYN(0x00).
  ^[381.485706: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
  381.485722: event type EV_MSC(0x04): scancode = 0x800f0423
  381.485722: event type EV_SYN(0x00).
  381.592718: lirc protocol(rc6_mce): scancode = 0x800f0423 toggle=1
  381.592736: event type EV_MSC(0x04): scancode = 0x800f0423
  381.592736: event type EV_SYN(0x00).
  381.725662: event type EV_KEY(0x01) key_up: KEY_ESC(0x0001)
  381.725662: event type EV_SYN(0x00).

  The key down part just repeats over and over in the busted kernel.

  root@nuc:~# lsb_release -rd
  Description:Ubuntu 20.04.2 LTS
  Release:20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1932360/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-02-15 Thread Tom Anschutz
Hi Po-Hsu,

Happy New Year.  I guess I was just too eager.  Today I saw an update to
a proposed kernel in focal.  That kernel was 5.8.0-44 and it works just
fine.   So you can mark all of these as good to go.

Regards,
Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-02-10 Thread Tom Anschutz
Hi Po-Hsu,

Just reiterating that Groovy checked out fine.  I did not see a proposed
kernel for Focal, even through the Bot said to try it.  I get kernel
5.8.0-43 both before and after enabling proposed.  Am I missing
something again, like with Bionic?  It seems that regardless of the
20.04.* I install I always end up with the 5.8.0-43 kernel.

Thanks,
Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-01-30 Thread Tom Anschutz
Hi,  I loaded groovy, enabled proposed, and the new kernel works just
fine.  There were other problems with this install.  I let the installer
update while installing, and that failed bad.  I had to tell grub to
boot the previous kernel.  I let the reporting app send those details.

But, after rebooting with 5.8.0-25 and then upgrading, I got a working
system with 5.8.0-42.

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-01-21 Thread Tom Anschutz
Hi Po-Hsu,
That one worked.  Freshly installed, I had 4.15.0-29 and after enabling 
proposed and upgrading I was left with 4.15.0-135   That kernel worked just 
fine.  
How long until I can expect to see the proposed kernels for Focal/Groovy?
Thanks and Regards,
Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-01-20 Thread Tom Anschutz
Hi Po-Hsu,
Maybe I'm installing the wrong Bionic?  I've installed 
ubuntu-18.04.5-desktop-amd64.iso.  That gives me kernel 5.4.0-62 before 
proposed, and 5.4.0-64 after enabling proposed.
Thanks,
Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

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


Re: [Kernel-packages] [Bug 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-01-19 Thread Tom Anschutz
Hi Po-Hsu,
I spent this evening installing Ubuntu.   I tried Xenial, Bionic, Focal and 
Groovy.
The proposed release worked on Xenial, but not on any of the others. 

Just to confirm the process: I installed a fresh copy of the release,
then went to the developer options tab and ticked the proposed box.
Then updated and then upgraded.   Rebooted and then tested for the
trackpad function.

Let me know if I needed to do something different or to try again.
Regards,Tom

On Sunday, January 17, 2021, 10:15:47 PM EST, Po-Hsu Lin 
<1906...@bugs.launchpad.net> wrote:  
 
 Hello Tom,

It will be great if you can help out to verify this.

To do so for Xenial, you will need to install Ubuntu Xenial and enable
the "proposed" pocket [1] on it, then dist-upgrade to the latest kernel
and reboot to see if it works.

The same applies to other releases, you can verify the version that you can.
Thanks!

[1] https://wiki.ubuntu.com/Testing/EnableProposed

-- 
You received this bug notification because you are subscribed to the bug
report.
https://bugs.launchpad.net/bugs/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.  Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USER        PID ACCESS COMMAND
   /dev/snd/controlC1:  tom        1395 F pulseaudio
   /dev/snd/controlC0:  tom        1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware                            1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

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

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B lapto

[Kernel-packages] [Bug 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-01-18 Thread Tom Anschutz
Hi Po-Hsu

I spent this evening installing Ubuntu.   I tried Xenial, Bionic, Focal
and Groovy.

The proposed release worked on Xenial, but not on any of the others.

Just to confirm the process: I installed a fresh copy of the release,
then went to the developer options tab in the Software and Updates app
and ticked the proposed box. When this was done, the app updated the
cache.  Then I used Software updater to upgrade and it worked (or not).
For the releases that didn't work I also tried using apt from the
terminal.  Updated and then upgraded.   Rebooted and then tested for the
trackpad function.  Only worked in Xenial.

Let me know if I needed to do something different or to try again.

Regards,
Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2021-01-09 Thread Tom Herbert
The issue recently reported for "4.15.0-128.131-generic" occurs also
with "4.15.0-129.132-generic" and "4.15.0-130.134-generic".

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1910738] Re: package linux-modules-5.8.0-36-generic (not installed) failed to install/upgrade: unable to open '/usr/share/doc/linux-modules-5.8.0-36-generic/copyright.dpkg-new':

2021-01-08 Thread Tom Reynolds
Possible duplicate report: bug 1904724

Thanks for reporting. This is more likely a support topic, not a bug - please 
provide further information if you are convinced it is a bug. Support options 
(incl. free community support - on the bottom) are listed on
https://ubuntu.com/support

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

-- 
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/1910738

Title:
  package linux-modules-5.8.0-36-generic (not installed) failed to
  install/upgrade: unable to open '/usr/share/doc/linux-
  modules-5.8.0-36-generic/copyright.dpkg-new': Operation not permitted

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  No problematic behaviour except for push-up notification showing this
  bug.

  ProblemType: Package
  DistroRelease: Ubuntu 20.10
  Package: linux-modules-5.8.0-36-generic (not installed)
  ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
  Uname: Linux 5.8.0-33-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  euler  1632 F pulseaudio
  CasperMD5CheckResult: skip
  Date: Fri Jan  8 10:26:39 2021
  DpkgTerminalLog:
   Preparing to unpack 
.../0-linux-modules-5.8.0-36-generic_5.8.0-36.40_amd64.deb ...
   Unpacking linux-modules-5.8.0-36-generic (5.8.0-36.40) ...
   dpkg: error processing archive 
/tmp/apt-dpkg-install-fkWCCt/0-linux-modules-5.8.0-36-generic_5.8.0-36.40_amd64.deb
 (--unpack):
unable to open 
'/usr/share/doc/linux-modules-5.8.0-36-generic/copyright.dpkg-new': Operation 
not permitted
  DuplicateSignature:
   package:linux-modules-5.8.0-36-generic:(not installed)
   Unpacking linux-modules-5.8.0-36-generic (5.8.0-36.40) ...
   dpkg: error processing archive 
/tmp/apt-dpkg-install-fkWCCt/0-linux-modules-5.8.0-36-generic_5.8.0-36.40_amd64.deb
 (--unpack):
unable to open 
'/usr/share/doc/linux-modules-5.8.0-36-generic/copyright.dpkg-new': Operation 
not permitted
  ErrorMessage: unable to open 
'/usr/share/doc/linux-modules-5.8.0-36-generic/copyright.dpkg-new': Operation 
not permitted
  InstallationDate: Installed on 2018-12-22 (748 days ago)
  InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.3)
  MachineType: PC Specialist LTD N2x0WU
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-33-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  RebootRequiredPkgs:
   linux-image-5.8.0-34-generic
   linux-base
  RelatedPackageVersions: grub-pc 2.04-1ubuntu35.1
  SourcePackage: linux
  Title: package linux-modules-5.8.0-36-generic (not installed) failed to 
install/upgrade: unable to open 
'/usr/share/doc/linux-modules-5.8.0-36-generic/copyright.dpkg-new': Operation 
not permitted
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (76 days ago)
  dmi.bios.date: 06/02/2018
  dmi.bios.release: 7.13
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.07.13
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: N2x0WU
  dmi.board.vendor: CLEVO
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.ec.firmware.release: 7.13
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.07.13:bd06/02/2018:br7.13:efr7.13:svnPCSpecialistLTD:pnN2x0WU:pvrNotApplicable:rvnCLEVO:rnN2x0WU:rvrNotApplicable:cvnNoEnclosure:ct10:cvrN/A:
  dmi.product.family: Not Applicable
  dmi.product.name: N2x0WU
  dmi.product.sku: Not Applicable
  dmi.product.version: Not Applicable
  dmi.sys.vendor: PC Specialist LTD

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1910738/+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 1904724] Re: package linux-modules-extra-5.8.0-29-generic (not installed) failed to install/upgrade: unable to open '/lib/modules/5.8.0-29-generic/kernel/kernel/torture.ko.dpkg-

2021-01-08 Thread Tom Reynolds
Possible duplicate report: bug 1910738

This is most likely a support topic, not a bug - please provide further 
information if you are convinced it is a bug. Support options (incl. free 
community support - on the bottom) are listed on
https://ubuntu.com/support

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

-- 
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/1904724

Title:
  package linux-modules-extra-5.8.0-29-generic (not installed) failed to
  install/upgrade: unable to open
  '/lib/modules/5.8.0-29-generic/kernel/kernel/torture.ko.dpkg-new':
  Operation not permitted

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  New kernel installation 5.8.0-29 was corrupted.
  Problem with sudo apt upgrade:

  You might want to run 'apt --fix-broken install' to correct these.
  The following packages have unmet dependencies.
   linux-image-generic : Depends: linux-modules-extra-5.8.0-29-generic but it 
is not installed

  ProblemType: Package
  DistroRelease: Ubuntu 20.10
  Package: linux-modules-extra-5.8.0-29-generic (not installed)
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  Uname: Linux 5.8.0-26-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  euler  1581 F pulseaudio
  CasperMD5CheckResult: skip
  Date: Wed Nov 18 11:50:28 2020
  ErrorMessage: unable to open 
'/lib/modules/5.8.0-29-generic/kernel/kernel/torture.ko.dpkg-new': Operation 
not permitted
  InstallationDate: Installed on 2018-12-22 (697 days ago)
  InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.3)
  MachineType: PC Specialist LTD N2x0WU
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  RebootRequiredPkgs:
   linux-image-5.8.0-28-generic
   linux-base
  RelatedPackageVersions: grub-pc 2.04-1ubuntu35
  SourcePackage: linux
  Title: package linux-modules-extra-5.8.0-29-generic (not installed) failed to 
install/upgrade: unable to open 
'/lib/modules/5.8.0-29-generic/kernel/kernel/torture.ko.dpkg-new': Operation 
not permitted
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (25 days ago)
  dmi.bios.date: 06/02/2018
  dmi.bios.release: 7.13
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.07.13
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: N2x0WU
  dmi.board.vendor: CLEVO
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.ec.firmware.release: 7.13
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.07.13:bd06/02/2018:br7.13:efr7.13:svnPCSpecialistLTD:pnN2x0WU:pvrNotApplicable:rvnCLEVO:rnN2x0WU:rvrNotApplicable:cvnNoEnclosure:ct10:cvrN/A:
  dmi.product.family: Not Applicable
  dmi.product.name: N2x0WU
  dmi.product.sku: Not Applicable
  dmi.product.version: Not Applicable
  dmi.sys.vendor: PC Specialist LTD

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1904724/+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 1910796] Re: package linux-libc-dev 5.4.0-59.65 failed to install/upgrade: unable to open '/usr/share/doc/linux-libc-dev/copyright.dpkg-new': Operation not permitted

2021-01-08 Thread Tom Reynolds
This is probably a 'feature' of your Sophos AV software. 
talpa_* modules are part of it: 
https://support.sophos.com/support/s/article/KB-37103
See also the various 'talpa' error messages in your kernel log: 
https://launchpadlibrarian.net/516159223/CurrentDmesg.txt

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

-- 
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/1910796

Title:
  package linux-libc-dev 5.4.0-59.65 failed to install/upgrade: unable
  to open '/usr/share/doc/linux-libc-dev/copyright.dpkg-new': Operation
  not permitted

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  No adapter wifi found
  my wifi faded away suddenly

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: linux-libc-dev 5.4.0-59.65
  ProcVersionSignature: Ubuntu 5.4.0-59.65-generic 5.4.78
  Uname: Linux 5.4.0-59-generic x86_64
  NonfreeKernelModules: talpa_vfshook talpa_pedconnector talpa_pedevice 
talpa_vcdevice talpa_core talpa_linux talpa_syscallhook
  ApportVersion: 2.20.11-0ubuntu27.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  elysium1878 F pulseaudio
   /dev/snd/controlC0:  elysium1878 F pulseaudio
  CasperMD5CheckResult: skip
  Date: Fri Jan  8 21:05:35 2021
  Dependencies:
   
  DuplicateSignature:
   package:linux-libc-dev:5.4.0-59.65
   Unpacking linux-libc-dev:amd64 (5.4.0-60.67) over (5.4.0-59.65) ...
   dpkg: error processing archive 
/tmp/apt-dpkg-install-nkvRs4/10-linux-libc-dev_5.4.0-60.67_amd64.deb (--unpack):
unable to open '/usr/share/doc/linux-libc-dev/copyright.dpkg-new': 
Operation not permitted
  ErrorMessage: unable to open 
'/usr/share/doc/linux-libc-dev/copyright.dpkg-new': Operation not permitted
  InstallationDate: Installed on 2020-07-19 (173 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  IwConfig:
   lono wireless extensions.
   
   enp9s0no wireless extensions.
  MachineType: LENOVO 20238
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-59-generic 
root=UUID=4df4b488-8b85-439c-ac68-a02733c47c50 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions: grub-pc 2.04-1ubuntu26.7
  SourcePackage: linux
  Title: package linux-libc-dev 5.4.0-59.65 failed to install/upgrade: unable 
to open '/usr/share/doc/linux-libc-dev/copyright.dpkg-new': Operation not 
permitted
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/20/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 79CN50WW(V3.09)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: INVALID
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G510
  dmi.modalias: 
dmi:bvnLENOVO:bvr79CN50WW(V3.09):bd10/20/2014:svnLENOVO:pn20238:pvrLenovoG510:rvnLENOVO:rnINVALID:rvrNotDefined:cvnLENOVO:ct10:cvrLenovoG510:
  dmi.product.family: IDEAPAD
  dmi.product.name: 20238
  dmi.product.sku: LENOVO_MT_20238
  dmi.product.version: Lenovo G510
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1910796/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2021-01-07 Thread Tom Anschutz
Hi - I'm happy to help test if desired.  If it's the right thing, I can
install and test kernels using these instructions:
https://askubuntu.com/questions/700214/how-do-i-install-an-old-kernel

However, I need a clue to exactly which kernels I should test.  from
https://kernel.ubuntu.com/%7Ekernel-ppa/mainline/  ??

Thanks, Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Groovy:
  Fix Committed
Status in linux source package in Hirsute:
  In Progress

Bug description:
  [Impact]
  Touchpad on a ByteSpeed C15B laptop is not working.
  User will need to add i8042.noloop=1 to boot options to make it work.

  [Fix]
  * a48491c65b513e ("Input: i8042 - add ByteSpeed touchpad to noloop table")

  This fix can be cherry-picked into all affected releases.

  [Test Case]
  Test kernel for Bionic / Focal can be found here:
  https://people.canonical.com/~phlin/kernel/lp-1906128-C15B/

  And they have been tested with positive test results.

  [Where problems could occur]
  The fix is just a small and simple hardware quirk. I can't think of any 
potential problem for now.

  == Original Bug Report ==
  Touchpad hardware is OK and works for Win10.  Not working for live disc, not 
for 18.04 and not for 20.04 after upgrading.  I've attached a Logitech wireless 
mouse with its USB adapter and that works.   Bluetooth is also missing, but I 
have not started trying to skull that out.  I'm happy to help try debugging 
things, and to help resolve the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
Sorry, I did not find a way to upload all attachments in one run. Please
let me know, if any necessary information is missing.

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "systemctl_bluetooth_off_4.15.0-128.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446561/+files/systemctl_bluetooth_off_4.15.0-128.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "lspci-vv.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446553/+files/lspci-vv.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "systemctl_bluetooth_off_4.15.0-124.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446560/+files/systemctl_bluetooth_off_4.15.0-124.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "lspci-vnvn.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446555/+files/lspci-vnvn.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "systemctl_bluetooth_on_4.15.0-128.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446562/+files/systemctl_bluetooth_on_4.15.0-128.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "journalctl-b_BT_off_4.15.0-128.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446558/+files/journalctl-b_BT_off_4.15.0-128.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "journalctl-b_BT_on_4.15.0-128.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446559/+files/journalctl-b_BT_on_4.15.0-128.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "dmesg.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446556/+files/dmesg.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "lspci-vvn.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446554/+files/lspci-vvn.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] Re: Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
** Attachment added: "journalctl-b_BT_off_4.15.0-124.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+attachment/5446557/+files/journalctl-b_BT_off_4.15.0-124.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1909236] [NEW] Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical target when bluetooth is off

2020-12-24 Thread Tom Herbert
Public bug reported:

1) System
Linux Mint Mate 19.3

2) Kernel version
linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

3) What you expected to happen
After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

4) What happened instead
The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

I did not have these problems before the upgrade to kernel
4.15.0-128.131. And I do not have these problems on my desktop system,
which lacks a bluetooth card.

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

** Attachment added: "cat /proc/version_signature > version.log"
   
https://bugs.launchpad.net/bugs/1909236/+attachment/5446552/+files/version.log

-- 
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/1909236

Title:
  Ubuntu 4.15.0-128.131-generic 4.15.18: Boot delay into graphical
  target when bluetooth is off

Status in linux package in Ubuntu:
  New

Bug description:
  1) System
  Linux Mint Mate 19.3

  2) Kernel version
  linux-headers-4.15.0-128/bionic-updates,bionic-security,now 4.15.0-128.131 all
  linux-headers-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-image-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64
  linux-modules-extra-4.15.0-128-generic/bionic-updates,bionic-security,now 
4.15.0-128.131 amd64

  3) What you expected to happen
  After the upgrade from kernel 4.15.0-124.127 to kernel 4.15.0-128.131 I 
expected a similar fluent boot procedure until the graphical target is reached 
and the login mask of LightDM is displayed. I did not expect a significant 
difference in the time needed to reach the login mask of LightDM.

  4) What happened instead
  The time needed to reach the login mask of LightDM depends on the bluetooth 
status. When bluetooth has been turned off in a previous user session per 
blueberry tray icon, a black screen with only the mouse pointer in the center 
is displayed for ~6s before the LightDM login mask is displayed. This does not 
happen, when bluetooth is turned on or when the older kernel 4.15.0-124.127 is 
used to boot the system.

  Kernel 4.15.0-124 AND bluetooth turned on or off => normal boot time
  Kernel 4.15.0-128 AND bluetooth turned on=> normal boot time
  Kernel 4.15.0-128 AND bluetooth turned off   => 6s longer boot time

  I did not have these problems before the upgrade to kernel
  4.15.0-128.131. And I do not have these problems on my desktop system,
  which lacks a bluetooth card.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909236/+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 1906128] Re: Touchpad not detected on ByteSpeed C15B laptop

2020-12-01 Thread Tom Anschutz
Hi Po-Hsu,
I installed the Bionic kernel and booted it.  Yes, it is also fixed.  
4.15.0-127 works.
Thanks again for your help and Best Regards,
Tom

-- 
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/1906128

Title:
  Touchpad not detected on ByteSpeed C15B laptop

Status in linux package in Ubuntu:
  In Progress

Bug description:
  Touchpad hardware is OK and works for Win10.  Not working for live
  disc, not for 18.04 and not for 20.04 after upgrading.  I've attached
  a Logitech wireless mouse with its USB adapter and that works.
  Bluetooth is also missing, but I have not started trying to skull that
  out.  I'm happy to help try debugging things, and to help resolve the
  issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not deteced on Bytespeed C15B laptop

2020-11-30 Thread Tom Anschutz
Hi Po-Hsu,

I installed the Focal kernel (using dpkg -i) then removed the
i8042.noloop=1 boot option and rebooted.  The touchpad still works, and
I confirmed that I was actually running the 5.0.4-57 kernel you
provided.   Looks really good for Focal.

Would you like me to do the same for the Bionic kernel, or was that just
a choice in case I needed it?

Thanks and Very Best Regards!
Tom

-- 
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/1906128

Title:
  Touchpad not deteced on Bytespeed C15B laptop

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Touchpad hardware is OK and works for Win10.  Not working for live
  disc, not for 18.04 and not for 20.04 after upgrading.  I've attached
  a Logitech wireless mouse with its USB adapter and that works.
  Bluetooth is also missing, but I have not started trying to skull that
  out.  I'm happy to help try debugging things, and to help resolve the
  issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not deteced on Bytespeed C15B laptop

2020-11-28 Thread Tom Anschutz
Found something for same motherboard but different OEM:

commit 2e2679a168fe1a0a9089e4e401d6a51b26c4f557
Author: Marcos Paulo de Souza 
Date:   Sun Dec 18 15:26:12 2016 -0800

Input: i8042 - add Pegatron touchpad to noloop table

commit 41c567a5d7d1a986763e58c3394782813c3bcb03 upstream.

Avoid AUX loopback in Pegatron C15B touchpad, so input subsystem is able
to recognize a Synaptics touchpad in the AUX port.

Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=93791
(Touchpad is not detected on DNS 0801480 notebook (PEGATRON C15B))

Suggested-by: Dmitry Torokhov 
Signed-off-by: Marcos Paulo de Souza 
Signed-off-by: Dmitry Torokhov 
Signed-off-by: Greg Kroah-Hartman 

__
Following that bug report (93791), I tried adding i8042.noloop=1 to boo options 
and that *DOES* fix the problem.Perhaps this laptop needs same patch as the 
other pegatron?

Thanks!

-- 
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/1906128

Title:
  Touchpad not deteced on Bytespeed C15B laptop

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Touchpad hardware is OK and works for Win10.  Not working for live
  disc, not for 18.04 and not for 20.04 after upgrading.  I've attached
  a Logitech wireless mouse with its USB adapter and that works.
  Bluetooth is also missing, but I have not started trying to skull that
  out.  I'm happy to help try debugging things, and to help resolve the
  issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not deteced on Bytespeed C15B laptop

2020-11-28 Thread Tom Anschutz
Found something for same motherboard but different OEM:

commit 2e2679a168fe1a0a9089e4e401d6a51b26c4f557
Author: Marcos Paulo de Souza 
Date:   Sun Dec 18 15:26:12 2016 -0800

Input: i8042 - add Pegatron touchpad to noloop table

commit 41c567a5d7d1a986763e58c3394782813c3bcb03 upstream.

Avoid AUX loopback in Pegatron C15B touchpad, so input subsystem is able
to recognize a Synaptics touchpad in the AUX port.

Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=93791
(Touchpad is not detected on DNS 0801480 notebook (PEGATRON C15B))

Suggested-by: Dmitry Torokhov 
Signed-off-by: Marcos Paulo de Souza 
Signed-off-by: Dmitry Torokhov 
Signed-off-by: Greg Kroah-Hartman 

-- 
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/1906128

Title:
  Touchpad not deteced on Bytespeed C15B laptop

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Touchpad hardware is OK and works for Win10.  Not working for live
  disc, not for 18.04 and not for 20.04 after upgrading.  I've attached
  a Logitech wireless mouse with its USB adapter and that works.
  Bluetooth is also missing, but I have not started trying to skull that
  out.  I'm happy to help try debugging things, and to help resolve the
  issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] Re: Touchpad not deteced on Bytespeed C15B laptop

2020-11-28 Thread Tom Anschutz
I've tried adding kernel boot switches: i8042.reset i8042.nomux
i8042.nopnp i8042noloop

and also noapic.   They made no difference.

** Bug watch added: Linux Kernel Bug Tracker #93791
   https://bugzilla.kernel.org/show_bug.cgi?id=93791

-- 
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/1906128

Title:
  Touchpad not deteced on Bytespeed C15B laptop

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Touchpad hardware is OK and works for Win10.  Not working for live
  disc, not for 18.04 and not for 20.04 after upgrading.  I've attached
  a Logitech wireless mouse with its USB adapter and that works.
  Bluetooth is also missing, but I have not started trying to skull that
  out.  I'm happy to help try debugging things, and to help resolve the
  issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: ByteSpeed LLC
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: PEGA Family
  dmi.product.name: ByteSpeed Laptop C15B
  dmi.product.sku: 0
  dmi.product.version: 1.0
  dmi.sys.vendor: ByteSpeed LLC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1906128/+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 1906128] [NEW] Touchpad not deteced on Bytespeed C15B laptop

2020-11-28 Thread Tom Anschutz
Public bug reported:

Touchpad hardware is OK and works for Win10.  Not working for live disc,
not for 18.04 and not for 20.04 after upgrading.  I've attached a
Logitech wireless mouse with its USB adapter and that works.   Bluetooth
is also missing, but I have not started trying to skull that out.  I'm
happy to help try debugging things, and to help resolve the issue.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-54-generic 5.4.0-54.60
ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
Uname: Linux 5.4.0-54-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.12
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  tom1395 F pulseaudio
 /dev/snd/controlC0:  tom1395 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sat Nov 28 19:09:05 2020
InstallationDate: Installed on 2020-01-26 (307 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-54-generic N/A
 linux-backports-modules-5.4.0-54-generic  N/A
 linux-firmware1.187.4
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
dmi.bios.date: 03/18/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: C15B.616
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: C15B
dmi.board.vendor: PEGATRON CORPORATION
dmi.board.version: 1.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: ByteSpeed LLC
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrC15B.616:bd03/18/2014:svnByteSpeedLLC:pnByteSpeedLaptopC15B:pvr1.0:rvnPEGATRONCORPORATION:rnC15B:rvr1.0:cvnByteSpeedLLC:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: PEGA Family
dmi.product.name: ByteSpeed Laptop C15B
dmi.product.sku: 0
dmi.product.version: 1.0
dmi.sys.vendor: ByteSpeed LLC

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug focal

** Attachment added: "devices"
   https://bugs.launchpad.net/bugs/1906128/+attachment/5439165/+files/devices

-- 
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/1906128

Title:
  Touchpad not deteced on Bytespeed C15B laptop

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Touchpad hardware is OK and works for Win10.  Not working for live
  disc, not for 18.04 and not for 20.04 after upgrading.  I've attached
  a Logitech wireless mouse with its USB adapter and that works.
  Bluetooth is also missing, but I have not started trying to skull that
  out.  I'm happy to help try debugging things, and to help resolve the
  issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-54-generic 5.4.0-54.60
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Uname: Linux 5.4.0-54-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tom1395 F pulseaudio
   /dev/snd/controlC0:  tom1395 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Nov 28 19:09:05 2020
  InstallationDate: Installed on 2020-01-26 (307 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: ByteSpeed LLC ByteSpeed Laptop C15B
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-54-generic 
root=UUID=07b919ee-c6ad-41a5-9c64-df3c8e477b6f ro quiet splash i8042.reset 
i8042.nomux i8042.nopnp i8042noloop noapic vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-54-generic N/A
   linux-backports-modules-5.4.0-54-generic  N/A
   linux-firmware1.187.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-11-25 (3 days ago)
  dmi.bios.date: 03/18/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: C15B.616
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: C15B
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled B

[Kernel-packages] [Bug 1903292] WifiSyslog.txt

2020-11-11 Thread Tom Cook
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1903292/+attachment/5433488/+files/WifiSyslog.txt

-- 
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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+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 1903292] UdevDb.txt

2020-11-11 Thread Tom Cook
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1903292/+attachment/5433487/+files/UdevDb.txt

-- 
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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+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 1903292] RfKill.txt

2020-11-11 Thread Tom Cook
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1903292/+attachment/5433486/+files/RfKill.txt

-- 
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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+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 1903292] PaInfo.txt

2020-11-11 Thread Tom Cook
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/1903292/+attachment/5433481/+files/PaInfo.txt

-- 
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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+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 1903292] ProcModules.txt

2020-11-11 Thread Tom Cook
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1903292/+attachment/5433485/+files/ProcModules.txt

-- 
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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+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 1903292] Re: System hangs after suspend

2020-11-11 Thread Tom Cook
I've applied the latest BIOS update from HP but this has not made any
difference to the problem.  I've also verified the problem still exists
when running the 2.8.0-26-generic kernel from groovy.

I've also run the apport-collect requested above using that kernel.

** Changed in: linux (Ubuntu)
   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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+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 1903292] ProcInterrupts.txt

2020-11-11 Thread Tom Cook
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1903292/+attachment/5433484/+files/ProcInterrupts.txt

-- 
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/1903292

Title:
  System hangs after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon
  Vega Mobile.  The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2.

  When I trigger a suspend with `echo mem > /sys/power/state` the system
  appears to go into mem suspend correctly.  Hitting a key should bring
  the display back with the lock screen displayed, but instead briefly
  brings a slightly scrambled screen to life and then the screen goes
  black and stays that way.

  The system is still up as I can SSH into it.  Killing the gdm-wayland-session 
process then brings me back to the GDM login screen and I can start a new 
session.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DisplayManager: gdm3
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2019-10-17 (388 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
  PackageArchitecture: amd64
  RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2
  Tags: wayland-session third-party-packages focal
  Uname: Linux 5.9.0 x86_64
  UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago)
  UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  tkcook 2526 F pulseaudio
   /dev/snd/controlC0:  tkcook 2526 F pulseaudio
  CasperMD5CheckResult: skip
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-10-17 (390 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: HP HP ENVY x360 Convertible 15-ds0xxx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic 
root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 
acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 
xhci_hcd.quirks=1074143232
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-26-generic N/A
   linux-backports-modules-5.8.0-26-generic  N/A
   linux-firmware1.190.1
  StagingDrivers: ashmem_linux
  Tags:  groovy staging
  Uname: Linux 5.8.0-26-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 05/28/2020
  dmi.bios.release: 15.20
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DD
  dmi.board.vendor: HP
  dmi.board.version: 40.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 40.36
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx
  dmi.product.sku: 6TD06EA#ABU
  dmi.sys.vendor: HP
  mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981

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


  1   2   3   4   5   6   >