[Kernel-packages] [Bug 2051700] Re: Missing fuse backport: "fuse: add feature flag for expire-only"

2024-01-30 Thread Bernd Schubert
This is a back port of the patch to hwe-6.2-next, conflicts had been in
the section below, as 6.2 does not have FUSE_CREATE_SUPP_GROUP

Initial patch for 6.5
```
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index d66070af145d0..660be31aaabc2 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -1254,7 +1254,8 @@ void fuse_send_init(struct fuse_mount *fm)
FUSE_ABORT_ERROR | FUSE_MAX_PAGES | FUSE_CACHE_SYMLINKS |
FUSE_NO_OPENDIR_SUPPORT | FUSE_EXPLICIT_INVAL_DATA |
FUSE_HANDLE_KILLPRIV_V2 | FUSE_SETXATTR_EXT | FUSE_INIT_EXT |
-   FUSE_SECURITY_CTX | FUSE_CREATE_SUPP_GROUP;
+   FUSE_SECURITY_CTX | FUSE_CREATE_SUPP_GROUP |
+   FUSE_HAS_EXPIRE_ONLY;

```

Back ported version:
```
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 06876afe5ae46..a86270fa2bf5f 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -1255,7 +1255,7 @@ void fuse_send_init(struct fuse_mount *fm)
FUSE_ABORT_ERROR | FUSE_MAX_PAGES | FUSE_CACHE_SYMLINKS |
FUSE_NO_OPENDIR_SUPPORT | FUSE_EXPLICIT_INVAL_DATA |
FUSE_HANDLE_KILLPRIV_V2 | FUSE_SETXATTR_EXT | FUSE_INIT_EXT |
-   FUSE_SECURITY_CTX;
+   FUSE_SECURITY_CTX | FUSE_HAS_EXPIRE_ONLY;
 #ifdef CONFIG_FUSE_DAX
if (fm->fc->dax)
flags |= FUSE_MAP_ALIGNMENT;
```


Right now I didn't try to compile it yet, but could do if needed. 

** Patch added: "FUSE_HAS_EXPIRE_ONLY-feature-flag.patch"
   
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-6.2/+bug/2051700/+attachment/5743550/+files/FUSE_HAS_EXPIRE_ONLY-feature-flag.patch

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

Title:
  Missing fuse backport: "fuse: add feature flag for expire-only"

Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  Hello,

  I just noticed that the backport of this patch was not done for
  linux-6.2 and linux-6.3, I guess because there had been a merge
  conflict. I think in the mean time these versions are not maintained
  anymore, so sending a version that fixes the merge conflict is
  probably not going to help.

  Issue is that libfuse currently uses a version check instead of
  testing for the corresponding feature, which is troublesome with any
  kind of feature back port. I.e., if the feature back port increases
  the version number, it would enable the "FUSE_EXPIRE_ONLY" although
  possibly not back ported. If the back port does not increase the
  version number, it might be used by libfuse...

  commit 5cadfbd5a11e5495cac217534c5f788168b1afd7
  Author: Miklos Szeredi 
  Date:   Mon Mar 27 16:14:49 2023 +0200

  fuse: add feature flag for expire-only
  
  Add an init flag idicating whether the FUSE_EXPIRE_ONLY flag of
  FUSE_NOTIFY_INVAL_ENTRY is effective.
  
  This is needed for backports of this feature, otherwise the server could
  just check the protocol version.
  
  Fixes: 4f8d37020e1f ("fuse: add "expire only" mode to 
FUSE_NOTIFY_INVAL_ENTRY")
  Cc:  # v6.2
  Signed-off-by: Miklos Szeredi 

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-6.2/+bug/2051700/+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 2051700] [NEW] Missing fuse backport: "fuse: add feature flag for expire-only"

2024-01-30 Thread Bernd Schubert
Public bug reported:

Hello,

I just noticed that the backport of this patch was not done for
linux-6.2 and linux-6.3, I guess because there had been a merge
conflict. I think in the mean time these versions are not maintained
anymore, so sending a version that fixes the merge conflict is probably
not going to help.

Issue is that libfuse currently uses a version check instead of testing
for the corresponding feature, which is troublesome with any kind of
feature back port. I.e., if the feature back port increases the version
number, it would enable the "FUSE_EXPIRE_ONLY" although possibly not
back ported. If the back port does not increase the version number, it
might be used by libfuse...

commit 5cadfbd5a11e5495cac217534c5f788168b1afd7
Author: Miklos Szeredi 
Date:   Mon Mar 27 16:14:49 2023 +0200

fuse: add feature flag for expire-only

Add an init flag idicating whether the FUSE_EXPIRE_ONLY flag of
FUSE_NOTIFY_INVAL_ENTRY is effective.

This is needed for backports of this feature, otherwise the server could
just check the protocol version.

Fixes: 4f8d37020e1f ("fuse: add "expire only" mode to 
FUSE_NOTIFY_INVAL_ENTRY")
Cc:  # v6.2
Signed-off-by: Miklos Szeredi 

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

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

Title:
  Missing fuse backport: "fuse: add feature flag for expire-only"

Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  Hello,

  I just noticed that the backport of this patch was not done for
  linux-6.2 and linux-6.3, I guess because there had been a merge
  conflict. I think in the mean time these versions are not maintained
  anymore, so sending a version that fixes the merge conflict is
  probably not going to help.

  Issue is that libfuse currently uses a version check instead of
  testing for the corresponding feature, which is troublesome with any
  kind of feature back port. I.e., if the feature back port increases
  the version number, it would enable the "FUSE_EXPIRE_ONLY" although
  possibly not back ported. If the back port does not increase the
  version number, it might be used by libfuse...

  commit 5cadfbd5a11e5495cac217534c5f788168b1afd7
  Author: Miklos Szeredi 
  Date:   Mon Mar 27 16:14:49 2023 +0200

  fuse: add feature flag for expire-only
  
  Add an init flag idicating whether the FUSE_EXPIRE_ONLY flag of
  FUSE_NOTIFY_INVAL_ENTRY is effective.
  
  This is needed for backports of this feature, otherwise the server could
  just check the protocol version.
  
  Fixes: 4f8d37020e1f ("fuse: add "expire only" mode to 
FUSE_NOTIFY_INVAL_ENTRY")
  Cc:  # v6.2
  Signed-off-by: Miklos Szeredi 

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-6.2/+bug/2051700/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-11-08 Thread Bernd Wurst
Yes, enabling TPM 2.0 in BIOS and setting 'tpm_tis.interrupts=0' as
suggested in #36 works!

As I stated before, 6.5.* used to work. This matches your comment that
6.5 has my model on it's list. Would be great if this list or the new
disabled-by-default setting could be backported.

For my own devices, I have a workaround now. In half a year, new ubuntu
stable will surely have the newer kernel anyway, so I can live with the
status quo.

Thank you very much for your patience!

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

Title:
  Unable to boot on Lenovo L590 Laptop

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

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2036988/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-11-08 Thread Bernd Wurst
Thank you very much, Jannik!

I can confirm that this workaround fixes the problem for me, too.

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

Title:
  Unable to boot on Lenovo L590 Laptop

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

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

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

2023-10-23 Thread Bernd Wurst
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/2036988/+attachment/5712584/+files/CRDA.txt

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   Cannot stat file /proc/4072/fd/1023: Permission denied
USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bernd  3561 F pulseaudio
   /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
   /dev/snd/controlC1:  bernd  3561 F pulseaudio
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-04-24 (1276 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20Q70019GE
  Package: linux-hwe-6.2
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20220329.git681281e4-0ubuntu3.21
  Tags:  jammy
  Uname: Linux 6.5.0-9-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/11/2019
  dmi.bios.release: 1.15
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R0ZET37W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20Q70019GE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
  dmi.product.family: ThinkPad L590
  dmi.product.name: 20Q70019GE
  dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
  dmi.product.version: ThinkPad L590
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2036988/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-10-23 Thread Bernd Wurst
apport information

** Tags added: apport-collected

** Description changed:

  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.
  
  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.
  
  We have another identical laptop of type Lenovo L590 also installed with
  Ubuntu and it shows the same behavior, so it's likely not a hardware
  problem on my device.
  
  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu82.5
+ Architecture: amd64
+ AudioDevicesInUse:
+  Cannot stat file /proc/4072/fd/1023: Permission denied
+   USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  bernd  3561 F pulseaudio
+  /dev/snd/pcmC0D7p:   bernd  3561 F...m pulseaudio
+  /dev/snd/controlC1:  bernd  3561 F pulseaudio
+ CasperMD5CheckResult: unknown
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2020-04-24 (1276 days ago)
+ InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
+ MachineType: LENOVO 20Q70019GE
+ Package: linux-hwe-6.2
+ ProcEnviron:
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  LANG=de_DE.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 i915drmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
+ PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
+ RelatedPackageVersions:
+  linux-restricted-modules-6.5.0-9-generic N/A
+  linux-backports-modules-6.5.0-9-generic  N/A
+  linux-firmware   20220329.git681281e4-0ubuntu3.21
+ Tags:  jammy
+ Uname: Linux 6.5.0-9-generic x86_64
+ UpgradeStatus: Upgraded to jammy on 2022-11-20 (336 days ago)
+ UserGroups: N/A
+ _MarkForUpload: True
+ dmi.bios.date: 12/11/2019
+ dmi.bios.release: 1.15
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: R0ZET37W (1.15 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 20Q70019GE
+ dmi.board.vendor: LENOVO
+ dmi.board.version: SDK0J40697 WIN
+ dmi.chassis.asset.tag: No Asset Information
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: None
+ dmi.ec.firmware.release: 1.12
+ dmi.modalias: 
dmi:bvnLENOVO:bvrR0ZET37W(1.15):bd12/11/2019:br1.15:efr1.12:svnLENOVO:pn20Q70019GE:pvrThinkPadL590:rvnLENOVO:rn20Q70019GE:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20Q7_BU_SMB_FM_ThinkPadL590:
+ dmi.product.family: ThinkPad L590
+ dmi.product.name: 20Q70019GE
+ dmi.product.sku: LENOVO_MT_20Q7_BU_SMB_FM_ThinkPad L590
+ dmi.product.version: ThinkPad L590
+ dmi.sys.vendor: LENOVO

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

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux package in Ubuntu:
  Incomplete
Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~22.04.1
  ProcVersionSignature: Ubuntu 6.2.0-26.

[Kernel-packages] [Bug 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-10-20 Thread Bernd Wurst
Any news on this? 
I provide the unfiltered list in case you need something I didn't expect.


# dpkg -l | grep linux-
ii  binutils-x86-64-linux-gnu 2.38-4ubuntu2.3   
  amd64GNU binary utilities, for x86-64-linux-gnu target
ii  linux-base4.5ubuntu9
  all  Linux image base package
ii  linux-firmware
20220329.git681281e4-0ubuntu3.21all  Firmware for Linux 
kernel drivers
ii  linux-generic 5.15.0.87.84  
  amd64Complete Generic Linux kernel and headers
ii  linux-generic-hwe-20.04   5.15.0.86.83  
  amd64Complete Generic Linux kernel and headers (dummy 
transitional package)
ii  linux-generic-hwe-22.04   6.2.0.35.35~22.04.13  
  amd64Complete Generic Linux kernel and headers
ii  linux-headers-5.11.1-051101   5.11.1-051101.202103031212
  all  Header files related to Linux kernel version 5.11.1
ii  linux-headers-5.11.1-051101-generic   5.11.1-051101.202103031212
  amd64Linux kernel headers for version 5.11.1 on 64 bit 
x86 SMP
ii  linux-headers-5.11.10-051110  5.11.10-051110.202103251032   
  all  Header files related to Linux kernel version 5.11.10
ii  linux-headers-5.11.10-051110-generic  5.11.10-051110.202103251032   
  amd64Linux kernel headers for version 5.11.10 on 64 bit 
x86 SMP
ii  linux-headers-5.15.0-86   5.15.0-86.96  
  all  Header files related to Linux kernel version 5.15.0
ii  linux-headers-5.15.0-86-generic   5.15.0-86.96  
  amd64Linux kernel headers for version 5.15.0 on 64 bit 
x86 SMP
ii  linux-headers-5.15.0-87   5.15.0-87.97  
  all  Header files related to Linux kernel version 5.15.0
ii  linux-headers-5.15.0-87-generic   5.15.0-87.97  
  amd64Linux kernel headers for version 5.15.0 on 64 bit 
x86 SMP
ii  linux-headers-5.9.0-0509005.9.0-050900.202010112230 
  all  Header files related to Linux kernel version 5.9.0
ii  linux-headers-5.9.0-050900-generic5.9.0-050900.202010112230 
  amd64Linux kernel headers for version 5.9.0 on 64 bit x86 
SMP
ii  linux-headers-6.2.0-34-generic6.2.0-34.34~22.04.1   
  amd64Linux kernel headers for version 6.2.0 on 64 bit x86 
SMP
ii  linux-headers-6.2.0-35-generic6.2.0-35.35~22.04.1   
  amd64Linux kernel headers for version 6.2.0 on 64 bit x86 
SMP
ii  linux-headers-generic 5.15.0.87.84  
  amd64Generic Linux kernel headers
ii  linux-headers-generic-hwe-22.04   6.2.0.35.35~22.04.13  
  amd64Generic Linux kernel headers
ii  linux-hwe-6.2-headers-6.2.0-346.2.0-34.34~22.04.1   
  all  Header files related to Linux kernel version 6.2.0
ii  linux-hwe-6.2-headers-6.2.0-356.2.0-35.35~22.04.1   
  all  Header files related to Linux kernel version 6.2.0
rc  linux-image-5.11.0-25-generic 5.11.0-25.27~20.04.1  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-27-generic 5.11.0-27.29~20.04.1  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-34-generic 5.11.0-34.36~20.04.1  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-36-generic 5.11.0-36.40~20.04.1  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-37-generic 5.11.0-37.41~20.04.2  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-38-generic 5.11.0-38.42~20.04.1  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-40-generic 5.11.0-40.44~20.04.2  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-41-generic 5.11.0-41.45~20.04.1  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-43-generic 5.11.0-43.47~20.04.2  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-44-generic 5.11.0-44.48~20.04.2  
  amd64Signed kernel image generic
rc  linux-image-5.11.0-46-generic  

[Kernel-packages] [Bug 2033271] Re: Fujitsu keyboard not working after updates

2023-09-27 Thread Bernd Müller
The work-around provided by Johannes does work for me.

sudo vi /etc/default/grub
# --
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.nomux=1"
# --

Parameter i8042.reset is not working for me, but does not effect the
outcome.

sudo update-grub

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

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2033271/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-09-26 Thread Bernd Wurst
Added | grep ^ii for readability:

$ dpkg -l | grep linux-| grep ^ii 
ii  binutils-x86-64-linux-gnu 2.38-4ubuntu2.3   
  amd64GNU binary utilities, for x86-64-linux-gnu target
ii  linux-base4.5ubuntu9
  all  Linux image base package
ii  linux-firmware
20220329.git681281e4-0ubuntu3.18all  Firmware for Linux 
kernel drivers
ii  linux-generic 5.15.0.84.81  
  amd64Complete Generic Linux kernel and headers
ii  linux-generic-hwe-20.04   5.15.0.84.81  
  amd64Complete Generic Linux kernel and headers (dummy 
transitional package)
ii  linux-generic-hwe-22.04   6.2.0.33.33~22.04.10  
  amd64Complete Generic Linux kernel and headers
ii  linux-headers-5.11.1-051101   5.11.1-051101.202103031212
  all  Header files related to Linux kernel version 5.11.1
ii  linux-headers-5.11.1-051101-generic   5.11.1-051101.202103031212
  amd64Linux kernel headers for version 5.11.1 on 64 bit 
x86 SMP
ii  linux-headers-5.11.10-051110  5.11.10-051110.202103251032   
  all  Header files related to Linux kernel version 5.11.10
ii  linux-headers-5.11.10-051110-generic  5.11.10-051110.202103251032   
  amd64Linux kernel headers for version 5.11.10 on 64 bit 
x86 SMP
ii  linux-headers-5.15.0-84   5.15.0-84.93  
  all  Header files related to Linux kernel version 5.15.0
ii  linux-headers-5.15.0-84-generic   5.15.0-84.93  
  amd64Linux kernel headers for version 5.15.0 on 64 bit 
x86 SMP
ii  linux-headers-5.9.0-0509005.9.0-050900.202010112230 
  all  Header files related to Linux kernel version 5.9.0
ii  linux-headers-5.9.0-050900-generic5.9.0-050900.202010112230 
  amd64Linux kernel headers for version 5.9.0 on 64 bit x86 
SMP
ii  linux-headers-6.2.0-33-generic6.2.0-33.33~22.04.1   
  amd64Linux kernel headers for version 6.2.0 on 64 bit x86 
SMP
ii  linux-headers-generic 5.15.0.84.81  
  amd64Generic Linux kernel headers
ii  linux-headers-generic-hwe-22.04   6.2.0.33.33~22.04.10  
  amd64Generic Linux kernel headers
ii  linux-hwe-6.2-headers-6.2.0-336.2.0-33.33~22.04.1   
  all  Header files related to Linux kernel version 6.2.0
ii  linux-image-5.15.0-84-generic 5.15.0-84.93  
  amd64Signed kernel image generic
ii  linux-image-6.2.0-26-generic  6.2.0-26.26   
  amd64Signed kernel image generic
ii  linux-image-6.5.0-6-generic   6.5.0-6.6 
  amd64Signed kernel image generic
ii  linux-image-generic   5.15.0.84.81  
  amd64Generic Linux kernel image
ii  linux-image-generic-hwe-22.04 6.2.0.33.33~22.04.10  
  amd64Generic Linux kernel image
ii  linux-libc-dev:amd64  5.15.0-84.93  
  amd64Linux Kernel Headers for development
ii  linux-modules-5.15.0-84-generic   5.15.0-84.93  
  amd64Linux kernel extra modules for version 5.15.0 on 64 
bit x86 SMP
ii  linux-modules-5.9.0-050900-generic5.9.0-050900.202010112230 
  amd64Linux kernel extra modules for version 5.9.0 on 64 
bit x86 SMP
ii  linux-modules-6.2.0-26-generic6.2.0-26.26   
  amd64Linux kernel extra modules for version 6.2.0 on 64 
bit x86 SMP
ii  linux-modules-6.5.0-6-generic 6.5.0-6.6 
  amd64Linux kernel extra modules for version 6.5.0 on 64 
bit x86 SMP
ii  linux-modules-extra-5.15.0-84-generic 5.15.0-84.93  
  amd64Linux kernel extra modules for version 5.15.0 on 64 
bit x86 SMP
ii  linux-modules-extra-6.2.0-33-generic  6.2.0-33.33~22.04.1   
  amd64Linux kernel extra modules for version 6.2.0 on 64 
bit x86 SMP
ii  linux-modules-extra-6.5.0-6-generic   6.5.0-6.6 
  amd64Linux kernel extra modules for version 6.5.0 on 64 
bit x86 SMP
ii  linux-sound-base  1.0.25+dfsg-0ubuntu7 

[Kernel-packages] [Bug 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-09-25 Thread Bernd Wurst
still no luck: 
Package linux-hwe-6.2 not installed and no hook available, ignoring

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

Title:
  Unable to boot on Lenovo L590 Laptop

Status in linux-hwe-6.2 package in Ubuntu:
  New

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-6.2/+bug/2036988/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-09-23 Thread Bernd Wurst
I'm sorry but it seems not to work.

$ apport-collect 2036988
Package linux-signed-hwe-6.2 not installed and no hook available, ignoring

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

Title:
  Unable to boot on Lenovo L590 Laptop

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

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036988/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-09-22 Thread Bernd Wurst
Thank you for your suggestions.

I tried every kernel in your list via direct deb download and none of them 
works. 6.2.0-26 is the latest that can boot on my device.
6.2.0-27 and later 6.2.0 releases do not boot.


Side note: When browsing the archive server, I found 6.5.0-6 and that one can 
boot up (but has other issues).

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

Title:
  Unable to boot on Lenovo L590 Laptop

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

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036988/+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 2036988] Re: Unable to boot on Lenovo L590 Laptop

2023-09-21 Thread Bernd Wurst
** Description changed:

- With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on
- my laptop. On regular graphic boot it just hangs on a black screen, with
- advanced boot options, selecting the current kernel, It hangs
- immediately after "Loading initioal ramdisk" without any error message.
+ With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
+ With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.
  
- I have to select an older kernel release to boot. 6.2.0-26 is the latest
- I know to work.
+ I have to select an older kernel release to boot. 
+ 6.2.0-26 is the latest I know to work.
  
  We have another identical laptop of type Lenovo L590 also installed with
- Ubuntu and it shows the same behaviour, so it's likely not a hardware
+ Ubuntu and it shows the same behavior, so it's likely not a hardware
  problem on my device.
  
  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=de_DE.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=de_DE.UTF-8
+  SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

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

Title:
  Unable to boot on Lenovo L590 Laptop

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

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on my 
laptop. On regular graphic boot it just hangs on a black screen. 
  With advanced boot options and selecting the current kernel, it hangs 
immediately after "Loading initial ramdisk" without any error message.

  I have to select an older kernel release to boot. 
  6.2.0-26 is the latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behavior, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036988/+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 2036988] [NEW] Unable to boot on Lenovo L590 Laptop

2023-09-21 Thread Bernd Wurst
Public bug reported:

With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu on
my laptop. On regular graphic boot it just hangs on a black screen, with
advanced boot options, selecting the current kernel, It hangs
immediately after "Loading initioal ramdisk" without any error message.

I have to select an older kernel release to boot. 6.2.0-26 is the latest
I know to work.

We have another identical laptop of type Lenovo L590 also installed with
Ubuntu and it shows the same behaviour, so it's likely not a hardware
problem on my device.

The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
CurrentDesktop: ubuntu:GNOME
Date: Thu Sep 21 16:51:07 2023
InstallationDate: Installed on 2020-04-24 (1245 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: linux-signed-hwe-6.2
UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

** Affects: linux-signed-hwe-6.2 (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-signed-hwe-6.2 in Ubuntu.
https://bugs.launchpad.net/bugs/2036988

Title:
  Unable to boot on Lenovo L590 Laptop

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

Bug description:
  With Kernel images 6.2.0-32 and 6.2.0-33, I can no longer boot ubuntu
  on my laptop. On regular graphic boot it just hangs on a black screen,
  with advanced boot options, selecting the current kernel, It hangs
  immediately after "Loading initioal ramdisk" without any error
  message.

  I have to select an older kernel release to boot. 6.2.0-26 is the
  latest I know to work.

  We have another identical laptop of type Lenovo L590 also installed
  with Ubuntu and it shows the same behaviour, so it's likely not a
  hardware problem on my device.

  The CPU type is Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.2.0-33-generic 6.2.0-33.33~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: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep 21 16:51:07 2023
  InstallationDate: Installed on 2020-04-24 (1245 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: Upgraded to jammy on 2022-11-20 (304 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.2/+bug/2036988/+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 2033271] Re: Fujitsu keyboard not working after updates

2023-09-01 Thread Bernd Müller
Another user in the Ask Ubuntu thread reports, that the problem may be
related to a false switch to tablet mode. I confirm the output of my
device of "cat /sys/class/dmi/id/chassis_type" is "10". In addition: The
E5410 is not a tablet nor a convertible, so it should not switch to
tablet mode.

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

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696978/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696979/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696968/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/2033271/+attachment/5696977/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/2033271/+attachment/5696976/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696969/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/2033271/+attachment/5696967/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696973/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696974/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/2033271/+attachment/5696970/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696975/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696972/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696971/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696966/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696964/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/2033271/+attachment/5696965/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2033271/+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 2033271] Re: Fujitsu keyboard not working after updates

2023-09-01 Thread Bernd Müller
apport information

** Tags added: apport-collected

** Description changed:

  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410
  
  Expected to happen is that the keyboard is working as previous before
  the updates.
  
  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before boot
  in the BIOS context, so it is not hardware related.
  
  --
  
  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.
  
  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel
  
  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu82.5
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  cysec  1698 F pulseaudio
+ CRDA: N/A
+ CasperMD5CheckResult: pass
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-04-21 (497 days ago)
+ InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
+ MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
+ Package: linux (not installed)
+ ProcEnviron:
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=de_DE.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 i915drmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
+ RelatedPackageVersions:
+  linux-restricted-modules-6.2.0-31-generic N/A
+  linux-backports-modules-6.2.0-31-generic  N/A
+  linux-firmware20220329.git681281e4-0ubuntu3.18
+ Tags:  wayland-session jammy
+ Uname: Linux 6.2.0-31-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
+ _MarkForUpload: True
+ dmi.bios.date: 06/30/2023
+ dmi.bios.release: 2.30
+ dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
+ dmi.bios.version: Version 2.30
+ dmi.board.name: FJNB2D6
+ dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
+ dmi.board.version: A2
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
+ dmi.chassis.version: LIFEBOOK E5410
+ dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
+ dmi.product.family: LIFEBOOK-FTS
+ dmi.product.name: LIFEBOOK E5410
+ dmi.product.sku: SK01
+ dmi.product.version: 10601736746
+ dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696962/+files/AlsaInfo.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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
 

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

2023-09-01 Thread Bernd Müller
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/2033271/+attachment/5696963/+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/2033271

Title:
  Fujitsu keyboard not working after updates

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-hwe-6.2
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cysec  1698 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-04-21 (497 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: FUJITSU CLIENT COMPUTING LIMITED LIFEBOOK E5410
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-31-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.2.0-31.31~22.04.1-generic 6.2.15
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-31-generic N/A
   linux-backports-modules-6.2.0-31-generic  N/A
   linux-firmware20220329.git681281e4-0ubuntu3.18
  Tags:  wayland-session jammy
  Uname: Linux 6.2.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 06/30/2023
  dmi.bios.release: 2.30
  dmi.bios.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.bios.version: Version 2.30
  dmi.board.name: FJNB2D6
  dmi.board.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.board.version: A2
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU CLIENT COMPUTING LIMITED
  dmi.chassis.version: LIFEBOOK E5410
  dmi.modalias: 
dmi:bvnFUJITSUCLIENTCOMPUTINGLIMITED:bvrVersion2.30:bd06/30/2023:br2.30:svnFUJITSUCLIENTCOMPUTINGLIMITED:pnLIFEBOOKE5410:pvr10601736746:rvnFUJITSUCLIENTCOMPUTINGLIMITED:rnFJNB2D6:rvrA2:cvnFUJITSUCLIENTCOMPUTINGLIMITED:ct10:cvrLIFEBOOKE5410:skuSK01:
  dmi.product.family: LIFEBOOK-FTS
  dmi.product.name: LIFEBOOK E5410
  dmi.product.sku: SK01
  dmi.product.version: 10601736746
  dmi.sys.vendor: FUJITSU CLIENT COMPUTING LIMITED

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2033271/+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 2033271] [NEW] Fujitsu keyboard not working after updates

2023-08-28 Thread Bernd Müller
Public bug reported:

Ubuntu 22.04.3 LTS
Fujitsu Lifebook E5410

Expected to happen is that the keyboard is working as previous before
the updates.

What instead happens is, that the keyboard is dead and does not work.
Attaching an external USB-keyboard works. The keyboard works before boot
in the BIOS context, so it is not hardware related.

--

There is another user reporting the same issue for a E5510 on ask
Ubuntu.

https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
lifebook-e5510-keyboard-not-working-after-update-kernel

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: Mon Aug 28 12:01:29 2023
InstallationDate: Installed on 2022-04-21 (493 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: linux-signed-hwe-6.2
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Fujitsu keyboard not working after updates

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

Bug description:
  Ubuntu 22.04.3 LTS
  Fujitsu Lifebook E5410

  Expected to happen is that the keyboard is working as previous before
  the updates.

  What instead happens is, that the keyboard is dead and does not work.
  Attaching an external USB-keyboard works. The keyboard works before
  boot in the BIOS context, so it is not hardware related.

  --

  There is another user reporting the same issue for a E5510 on ask
  Ubuntu.

  https://askubuntu.com/questions/1483381/ubuntu-22-04-fujitsu-
  lifebook-e5510-keyboard-not-working-after-update-kernel

  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: Mon Aug 28 12:01:29 2023
  InstallationDate: Installed on 2022-04-21 (493 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  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/2033271/+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 1988473] Re: Version 5.15.0-47 Breaks Virtualbox Win10 VM

2022-09-02 Thread Bernd Kreuss
I can confirm this with a Kubuntu Guest on a Kubuntu Host (both 22.04.1)

Firefox will crash on average every 30 seconds, no matter what website
you are on, the more you interact with it the faster it will crash.

Chromium will also crash occasionally, but far less often than Firefox.

Some other apps have also crashed occasionally in the last 2 days and
even the entire plasma shell in the guest has crashed a few times, black
screen or frozen and once it was not even possible to shut down the
guest with ACPI event anymore.

Downgrading to the previous -46 kernel made all these problems
disappear.

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

Title:
  Version 5.15.0-47 Breaks Virtualbox Win10 VM

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  The updated linux kernel would not allow my Win10 VM to boot.
  Rebooting Ubuntu into the 5.15.0-46 version restored the avility to
  boot. The 47 version also corrupted the VM, so I had to use a backup.
  I don't know if the problem was really with new Intel microcode that
  was installed with the new kernel. VB kernel modules were updated by
  dkms with the new version 47 install, so that should not be the
  problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-47-generic 5.15.0-47.51
  ProcVersionSignature: Ubuntu 5.15.0-46.49-generic 5.15.39
  Uname: Linux 5.15.0-46-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  chris  1980 F pulseaudio
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Sep  1 14:54:58 2022
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2018-12-04 (1366 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: Dell Inc. OptiPlex 990
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-46-generic 
root=UUID=ce42a622-1220-4d20-a2b5-97e15e83c527 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-46-generic N/A
   linux-backports-modules-5.15.0-46-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.4
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to jammy on 2022-04-27 (127 days ago)
  dmi.bios.date: 07/02/2018
  dmi.bios.release: 4.6
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A24
  dmi.board.name: 06D7TR
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 6
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA24:bd07/02/2018:br4.6:svnDellInc.:pnOptiPlex990:pvr01:rvnDellInc.:rn06D7TR:rvrA00:cvnDellInc.:ct6:cvr:sku:
  dmi.product.name: OptiPlex 990
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1988473/+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 1980688] Re: [Lenovo ThinkPad T14] Mouse / trackpad buttons sometimes don't work after waking up from suspend

2022-07-25 Thread Bernd Rinn
Here are some additional information: 
- When the error occurs, not only do the keys of the trackpad of the T14 stop 
to work, but also any USB mouse that is connected shows the same problem.
- The errors seems to mostly occur when the laptop is not connected to any 
external device (monintor, USB devices) at the time of wake-up.

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

Title:
  [Lenovo ThinkPad T14] Mouse / trackpad buttons sometimes don't work
  after waking up from suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602407/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602402/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602394/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602408/+files/acpidump.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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1980688/+attachment/5602405/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602403/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602404/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1980688/+attachment/5602406/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602399/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602401/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602400/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602397/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/1980688/+attachment/5602398/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602396/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1980688/+attachment/5602395/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "AudioDevicesInUse.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602390/+files/AudioDevicesInUse.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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1980688/+attachment/5602393/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602392/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

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

2022-07-11 Thread Bernd Rinn
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602391/+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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
  dmi.product.family: ThinkPad T14 Gen 1
  dmi.product.name: 20UES17F00
  dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
  dmi.product.version: ThinkPad T14 Gen 1
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1980688/+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 1980688] Re: Mouse / trackpad buttons sometimes don't work after waking up from suspend

2022-07-11 Thread Bernd Rinn
apport information

** Tags added: apport-collected jammy

** Description changed:

  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.
  
  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.
  
  I have observed this bug both with Wayland and with X11.
  
  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu82.1
+ Architecture: amd64
+ CRDA: N/A
+ CasperMD5CheckResult: pass
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-07-02 (9 days ago)
+ InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
+ MachineType: LENOVO 20UES17F00
+ NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
+ Package: linux (not installed)
+ ProcFB: 0 amdgpudrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
+ RelatedPackageVersions:
+  linux-restricted-modules-5.15.0-40-generic N/A
+  linux-backports-modules-5.15.0-40-generic  N/A
+  linux-firmware 20220329.git681281e4-0ubuntu3.2
+ Tags:  jammy
+ Uname: Linux 5.15.0-40-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 04/05/2022
+ dmi.bios.release: 1.40
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: R1BET71W(1.40 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 20UES17F00
+ dmi.board.vendor: LENOVO
+ dmi.board.version: SDK0J40697 WIN
+ dmi.chassis.asset.tag: No Asset Information
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: None
+ dmi.ec.firmware.release: 1.40
+ dmi.modalias: 
dmi:bvnLENOVO:bvrR1BET71W(1.40):bd04/05/2022:br1.40:efr1.40:svnLENOVO:pn20UES17F00:pvrThinkPadT14Gen1:rvnLENOVO:rn20UES17F00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20UE_BU_Think_FM_ThinkPadT14Gen1:
+ dmi.product.family: ThinkPad T14 Gen 1
+ dmi.product.name: 20UES17F00
+ dmi.product.sku: LENOVO_MT_20UE_BU_Think_FM_ThinkPad T14 Gen 1
+ dmi.product.version: ThinkPad T14 Gen 1
+ dmi.sys.vendor: LENOVO

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1980688/+attachment/5602389/+files/AlsaInfo.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/1980688

Title:
  Mouse / trackpad buttons sometimes don't work after waking up from
  suspend

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After waking up from suspend, the trackpad (and, if connected mouse)
  buttons sometimes don't work anymore. Only a reboot fixes it.

  Note that I move the mouse pointer and use the keyboard, just the
  trackpad / mouse buttons stop working.

  I have observed this bug both with Wayland and with X11.

  1. Release: Ubuntu 22.04
  2. Version: gnome-shell 42.2-0ubuntu0.2
  3. What I expect to happen: the trackpad and mouse buttons work always after 
waking up from suspend.
  4. What happened instead: the trackpad and mouse buttons do not work about 
every third time after waking up from suspend.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-07-02 (9 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: LENOVO 20UES17F00
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl icp
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-40-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-40.43-generic 5.15.35
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-40-generic N/A
   linux-backports-modules-5.15.0-40-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.2
  Tags:  jammy
  Uname: Linux 5.15.0-40-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/05/2022
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1BET71W(1.40 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20UES17F00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  

Re: [Kernel-packages] [Bug 1943368] Re: Touchpad not recognised

2021-09-27 Thread Bernd Martin
Wäre can I find this Information in Windows?


Hui Wang <1943...@bugs.launchpad.net> schrieb am Mo. 27. Sept. 2021 um
02:43:

> Under windows, does the touchpad connect to i8042/ps2 bus or i2c bus?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1943368
>
> Title:
>   Touchpad not recognised
>
> Status in linux package in Ubuntu:
>   Confirmed
>
> Bug description:
>   the touchpad is not recognised
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 20.04
>   Package: linux-image-5.4.0-81-generic 5.4.0-81.91
>   ProcVersionSignature: Ubuntu 5.4.0-81.91-generic 5.4.128
>   Uname: Linux 5.4.0-81-generic x86_64
>   ApportVersion: 2.20.11-0ubuntu27.18
>   Architecture: amd64
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  bem1753 F pulseaudio
>/dev/snd/pcmC0D0p:   bem1753 F...m pulseaudio
>   CasperMD5CheckResult: skip
>   CurrentDesktop: ubuntu:GNOME
>   Date: Sun Sep 12 15:55:20 2021
>   InstallationDate: Installed on 2021-08-17 (25 days ago)
>   InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64
> (20200806.1)
>   MachineType: Medion Akoya E6239
>   ProcEnviron:
>TERM=xterm-256color
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=de_DE.UTF-8
>SHELL=/bin/bash
>   ProcFB: 0 i915drmfb
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-81-generic
> root=UUID=a2ea56ce-d8fa-4472-954d-4c580bee4549 ro i8042.nomux=1 quiet
> splash vt.handoff=7
>   RelatedPackageVersions:
>linux-restricted-modules-5.4.0-81-generic N/A
>linux-backports-modules-5.4.0-81-generic  N/A
>linux-firmware1.187.16
>   SourcePackage: linux
>   UpgradeStatus: Upgraded to focal on 2021-08-18 (25 days ago)
>   dmi.bios.date: 04/09/2014
>   dmi.bios.vendor: American Megatrends Inc.
>   dmi.bios.version: 612
>   dmi.board.asset.tag: To be filled by O.E.M.
>   dmi.board.name: Akoya E6239
>   dmi.board.vendor: Medion
>   dmi.board.version: 1.0
>   dmi.chassis.asset.tag: To Be Filled By O.E.M.
>   dmi.chassis.type: 3
>   dmi.chassis.vendor: Medion
>   dmi.chassis.version: To Be Filled By O.E.M.
>   dmi.modalias:
> dmi:bvnAmericanMegatrendsInc.:bvr612:bd04/09/2014:svnMedion:pnAkoyaE6239:pvr1.0:rvnMedion:rnAkoyaE6239:rvr1.0:cvnMedion:ct3:cvrToBeFilledByO.E.M.:
>   dmi.product.family: To be filled by O.E.M.
>   dmi.product.name: Akoya E6239
>   dmi.product.sku: To be filled by O.E.M.
>   dmi.product.version: 1.0
>   dmi.sys.vendor: Medion
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1943368/+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/1943368

Title:
  Touchpad not recognised

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  the touchpad is not recognised

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-81-generic 5.4.0-81.91
  ProcVersionSignature: Ubuntu 5.4.0-81.91-generic 5.4.128
  Uname: Linux 5.4.0-81-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.18
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bem1753 F pulseaudio
   /dev/snd/pcmC0D0p:   bem1753 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 12 15:55:20 2021
  InstallationDate: Installed on 2021-08-17 (25 days ago)
  InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 
(20200806.1)
  MachineType: Medion Akoya E6239
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-81-generic 
root=UUID=a2ea56ce-d8fa-4472-954d-4c580bee4549 ro i8042.nomux=1 quiet splash 
vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-81-generic N/A
   linux-backports-modules-5.4.0-81-generic  N/A
   linux-firmware1.187.16
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2021-08-18 (25 days ago)
  dmi.bios.date: 04/09/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 612
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Akoya E6239
  dmi.board.vendor: Medion
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Medion
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr612:bd04/09/2014:svnMedion:pnAkoyaE6239:pvr1.0:rvnMedion:rnAkoyaE6239:rvr1.0:cvnMedion:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: Akoya E6239
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 1.0
  dmi.sys.vendor: Medion

To manage notifications about this bug go to:
https

Re: [Kernel-packages] [Bug 1943368] Re: Touchpad not recognised

2021-09-15 Thread Bernd Martin
There's no BIOS setting for a serial bus controller. I doubt that this is
related to a BIOS Setting at all since the touchpad is recognised if I boot
windows instead ubuntu.

Any other Ideas how to solve this issue?

kind regards, Bernd

Am Mo., 13. Sept. 2021 um 04:20 Uhr schrieb Hui Wang <
1943...@bugs.launchpad.net>:

> On other machines, there is serial bus controller (i2c controller), but
> your machine doesn't have it, maybe you could enable it in the BIOS
> setting? You could find the I2C controller with lspci as below:
>
>
> 00:15.0 Serial bus controller [0c80]: Intel Corporation Tiger Lake-LP
> Serial IO I2C Controller #0 [8086:a0e8] (rev 20)
> DeviceName: Onboard - Other
> Subsystem: Device [1e39:a025]
> Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
> Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> SERR-  Latency: 0, Cache Line Size: 64 bytes
> Interrupt: pin A routed to IRQ 27
> Region 0: Memory at 401700 (64-bit, non-prefetchable)
> [virtual] [size=4K]
> Capabilities: 
> Kernel driver in use: intel-lpss
> Kernel modules: intel_lpss_pci
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1943368
>
> Title:
>   Touchpad not recognised
>
> Status in linux package in Ubuntu:
>   Confirmed
>
> Bug description:
>   the touchpad is not recognised
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 20.04
>   Package: linux-image-5.4.0-81-generic 5.4.0-81.91
>   ProcVersionSignature: Ubuntu 5.4.0-81.91-generic 5.4.128
>   Uname: Linux 5.4.0-81-generic x86_64
>   ApportVersion: 2.20.11-0ubuntu27.18
>   Architecture: amd64
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  bem1753 F pulseaudio
>/dev/snd/pcmC0D0p:   bem1753 F...m pulseaudio
>   CasperMD5CheckResult: skip
>   CurrentDesktop: ubuntu:GNOME
>   Date: Sun Sep 12 15:55:20 2021
>   InstallationDate: Installed on 2021-08-17 (25 days ago)
>   InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64
> (20200806.1)
>   MachineType: Medion Akoya E6239
>   ProcEnviron:
>TERM=xterm-256color
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=de_DE.UTF-8
>SHELL=/bin/bash
>   ProcFB: 0 i915drmfb
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-81-generic
> root=UUID=a2ea56ce-d8fa-4472-954d-4c580bee4549 ro i8042.nomux=1 quiet
> splash vt.handoff=7
>   RelatedPackageVersions:
>linux-restricted-modules-5.4.0-81-generic N/A
>linux-backports-modules-5.4.0-81-generic  N/A
>linux-firmware1.187.16
>   SourcePackage: linux
>   UpgradeStatus: Upgraded to focal on 2021-08-18 (25 days ago)
>   dmi.bios.date: 04/09/2014
>   dmi.bios.vendor: American Megatrends Inc.
>   dmi.bios.version: 612
>   dmi.board.asset.tag: To be filled by O.E.M.
>   dmi.board.name: Akoya E6239
>   dmi.board.vendor: Medion
>   dmi.board.version: 1.0
>   dmi.chassis.asset.tag: To Be Filled By O.E.M.
>   dmi.chassis.type: 3
>   dmi.chassis.vendor: Medion
>   dmi.chassis.version: To Be Filled By O.E.M.
>   dmi.modalias:
> dmi:bvnAmericanMegatrendsInc.:bvr612:bd04/09/2014:svnMedion:pnAkoyaE6239:pvr1.0:rvnMedion:rnAkoyaE6239:rvr1.0:cvnMedion:ct3:cvrToBeFilledByO.E.M.:
>   dmi.product.family: To be filled by O.E.M.
>   dmi.product.name: Akoya E6239
>   dmi.product.sku: To be filled by O.E.M.
>   dmi.product.version: 1.0
>   dmi.sys.vendor: Medion
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1943368/+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/1943368

Title:
  Touchpad not recognised

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  the touchpad is not recognised

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-81-generic 5.4.0-81.91
  ProcVersionSignature: Ubuntu 5.4.0-81.91-generic 5.4.128
  Uname: Linux 5.4.0-81-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.18
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bem1753 F pulseaudio
   /dev/snd/pcmC0D0p:   bem1753 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 12 15:55:20 2021
  InstallationDate: Installed on 2021-08-17 (25 days ago)
  InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 
(20200806.1)
  Machi

[Kernel-packages] [Bug 1943368] [NEW] Touchpad not recognised

2021-09-12 Thread Bernd Martin
Public bug reported:

the touchpad is not recognised

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-81-generic 5.4.0-81.91
ProcVersionSignature: Ubuntu 5.4.0-81.91-generic 5.4.128
Uname: Linux 5.4.0-81-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.18
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  bem1753 F pulseaudio
 /dev/snd/pcmC0D0p:   bem1753 F...m pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Sep 12 15:55:20 2021
InstallationDate: Installed on 2021-08-17 (25 days ago)
InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 
(20200806.1)
MachineType: Medion Akoya E6239
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-81-generic 
root=UUID=a2ea56ce-d8fa-4472-954d-4c580bee4549 ro i8042.nomux=1 quiet splash 
vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-81-generic N/A
 linux-backports-modules-5.4.0-81-generic  N/A
 linux-firmware1.187.16
SourcePackage: linux
UpgradeStatus: Upgraded to focal on 2021-08-18 (25 days ago)
dmi.bios.date: 04/09/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 612
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Akoya E6239
dmi.board.vendor: Medion
dmi.board.version: 1.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: Medion
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr612:bd04/09/2014:svnMedion:pnAkoyaE6239:pvr1.0:rvnMedion:rnAkoyaE6239:rvr1.0:cvnMedion:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: Akoya E6239
dmi.product.sku: To be filled by O.E.M.
dmi.product.version: 1.0
dmi.sys.vendor: Medion

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


** Tags: amd64 apport-bug focal

** Attachment added: "List of recognised devices"
   https://bugs.launchpad.net/bugs/1943368/+attachment/5524672/+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/1943368

Title:
  Touchpad not recognised

Status in linux package in Ubuntu:
  New

Bug description:
  the touchpad is not recognised

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-81-generic 5.4.0-81.91
  ProcVersionSignature: Ubuntu 5.4.0-81.91-generic 5.4.128
  Uname: Linux 5.4.0-81-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.18
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bem1753 F pulseaudio
   /dev/snd/pcmC0D0p:   bem1753 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 12 15:55:20 2021
  InstallationDate: Installed on 2021-08-17 (25 days ago)
  InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 
(20200806.1)
  MachineType: Medion Akoya E6239
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-81-generic 
root=UUID=a2ea56ce-d8fa-4472-954d-4c580bee4549 ro i8042.nomux=1 quiet splash 
vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-81-generic N/A
   linux-backports-modules-5.4.0-81-generic  N/A
   linux-firmware1.187.16
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2021-08-18 (25 days ago)
  dmi.bios.date: 04/09/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 612
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Akoya E6239
  dmi.board.vendor: Medion
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Medion
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr612:bd04/09/2014:svnMedion:pnAkoyaE6239:pvr1.0:rvnMedion:rnAkoyaE6239:rvr1.0:cvnMedion:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: Akoya E6239
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 1.0
  dmi.sys.vendor: Medion

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1943368/+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 1901563] Re: [i915] Kernel crashed in vma_create when running Xorg

2020-11-10 Thread Bernd Schubert
I'm actually going to close the upstream issue - I'm still not clear on
the root cause - it is a slab/kmem cache issue, but I don't which
subsystem is responsible for it. It might get visible on opening various
kernel debug options, but it requires to recompile and also slows down
the system dramatically, unfortunately I don't have the time for that :(
Especially as the issue went away after installing the linux-5.9.3
kernel. I guess switching to wayland just avoid the trigger, but the 5.8
kernel seems to have a bad bug.

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

Title:
  [i915] Kernel crashed in vma_create when running Xorg

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

Bug description:
  I've just upgraded to 20.10. After logging in and using PyCharm for a
  while, the system froze, and I had to do a REISUB. It turned out to be
  a kernel panic and seems related to Xorg and the i915 driver.

  This has now happened multiple times, and not all crashes have
  happened while using PyCharm.

  I've tried using the ppa:canonical-kernel-team/ppa to install a new
  kernel (5.8.0-26-generic) but that did not help.

  [ 1620.425014] general protection fault, probably for non-canonical address 
0xe296718293aa0a0a:  [#1] SMP PTI 
  [ 1620.425017] CPU: 2 PID: 1749 Comm: Xorg Tainted: GW 
5.8.0-26-generic #27-Ubuntu
  [ 1620.425018] Hardware name: Dell Inc. XPS 13 9370/0F6P3V, BIOS 1.2.1 
02/21/2018
  [ 1620.425023] RIP: 0010:kmem_cache_alloc+0x7e/0x230
  [ 1620.425025] Code: 95 01 00 00 4d 8b 07 65 49 8b 50 08 65 4c 03 05 a0 59 33 
4d 4d 8b 20 4d 85 e4 0f 84 81 01 00 00 41 8b 47 20 49 8b 3f 4c 01 e0 <48> 8b 18 
48 89 c1 49 33 9f 70 01 00 00 4c 89 e0 48 0f c9 48 31 cb
  [ 1620.425026] RSP: 0018:b1f6c19e79b0 EFLAGS: 00010286
  [ 1620.425028] RAX: e296718293aa0a0a RBX:  RCX: 
0002
  [ 1620.425029] RDX: 7d5e RSI: 0dc0 RDI: 
441461604a80
  [ 1620.425031] RBP: b1f6c19e79e0 R08: d1f6bfc84a80 R09: 

  [ 1620.425032] R10:  R11: 8de1eca2f6c2 R12: 
e296718293aa08b2
  [ 1620.425033] R13: 0dc0 R14: 8de2488364c0 R15: 
8de2488364c0
  [ 1620.425034] FS:  7fe9c3b52a40() GS:8de25e68() 
knlGS:
  [ 1620.425035] CS:  0010 DS:  ES:  CR0: 80050033
  [ 1620.425037] CR2: 7f6c1433c000 CR3: 000488622001 CR4: 
003606e0
  [ 1620.425038] Call Trace:
  [ 1620.425087]  ? vma_create+0x30/0x460 [i915]
  [ 1620.425122]  vma_create+0x30/0x460 [i915]
  [ 1620.425124]  ? mutex_lock+0x13/0x40
  [ 1620.425157]  i915_vma_instance+0xd2/0xe0 [i915]
  [ 1620.425187]  eb_lookup_vma+0xd7/0x1c0 [i915]
  [ 1620.425217]  eb_lookup_vmas+0x79/0x200 [i915]
  [ 1620.425247]  eb_relocate+0x18/0x1b0 [i915]
  [ 1620.425275]  i915_gem_do_execbuffer+0x265/0x8d0 [i915]
  [ 1620.425278]  ? enqueue_task_fair+0x159/0x590
  [ 1620.425282]  ? __radix_tree_replace+0x4a/0xe0
  [ 1620.425285]  ? _cond_resched+0x1a/0x50
  [ 1620.425287]  ? kmem_cache_alloc_trace+0x168/0x240
  [ 1620.425290]  ? __kmalloc_node+0x201/0x300
  [ 1620.425320]  i915_gem_execbuffer2_ioctl+0x237/0x4a0 [i915]
  [ 1620.425348]  ? intel_engines_add_sysfs+0x150/0x150 [i915]
  [ 1620.425350]  ? radix_tree_lookup+0xd/0x10
  [ 1620.425379]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425395]  drm_ioctl_kernel+0xae/0xf0 [drm]
  [ 1620.425406]  drm_ioctl+0x238/0x3d0 [drm]
  [ 1620.425434]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425437]  ? fput+0x13/0x15
  [ 1620.425440]  ? __sys_recvmsg+0x94/0xb0
  [ 1620.425442]  ksys_ioctl+0x8e/0xc0
  [ 1620.425444]  __x64_sys_ioctl+0x1a/0x20
  [ 1620.425447]  do_syscall_64+0x49/0xc0
  [ 1620.425449]  entry_SYSCALL_64_after_hwframe+0x44/0xa9

  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: xorg 1:7.7+19ubuntu15
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  Uname: Linux 5.8.0-26-generic x86_64
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 26 16:33:28 2020
  DistUpgraded: 2020-10-23 13:15:10,351 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-xenial-amd64-20160624-2
  DistroCodename: groovy
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a day
  GpuHangReproducibility: Seems to happen randomly
  GpuHangStarted: Immediately after installing this version of Ubuntu
  Graph

[Kernel-packages] [Bug 1901563] Re: [i915] Kernel crashed in vma_create when running Xorg

2020-11-04 Thread Bernd Schubert
I created https://gitlab.freedesktop.org/drm/intel/-/issues/2631

** Bug watch added: gitlab.freedesktop.org/drm/intel/-/issues #2631
   https://gitlab.freedesktop.org/drm/intel/-/issues/2631

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

Title:
  [i915] Kernel crashed in vma_create when running Xorg

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've just upgraded to 20.10. After logging in and using PyCharm for a
  while, the system froze, and I had to do a REISUB. It turned out to be
  a kernel panic and seems related to Xorg and the i915 driver.

  This has now happened multiple times, and not all crashes have
  happened while using PyCharm.

  I've tried using the ppa:canonical-kernel-team/ppa to install a new
  kernel (5.8.0-26-generic) but that did not help.

  [ 1620.425014] general protection fault, probably for non-canonical address 
0xe296718293aa0a0a:  [#1] SMP PTI 
  [ 1620.425017] CPU: 2 PID: 1749 Comm: Xorg Tainted: GW 
5.8.0-26-generic #27-Ubuntu
  [ 1620.425018] Hardware name: Dell Inc. XPS 13 9370/0F6P3V, BIOS 1.2.1 
02/21/2018
  [ 1620.425023] RIP: 0010:kmem_cache_alloc+0x7e/0x230
  [ 1620.425025] Code: 95 01 00 00 4d 8b 07 65 49 8b 50 08 65 4c 03 05 a0 59 33 
4d 4d 8b 20 4d 85 e4 0f 84 81 01 00 00 41 8b 47 20 49 8b 3f 4c 01 e0 <48> 8b 18 
48 89 c1 49 33 9f 70 01 00 00 4c 89 e0 48 0f c9 48 31 cb
  [ 1620.425026] RSP: 0018:b1f6c19e79b0 EFLAGS: 00010286
  [ 1620.425028] RAX: e296718293aa0a0a RBX:  RCX: 
0002
  [ 1620.425029] RDX: 7d5e RSI: 0dc0 RDI: 
441461604a80
  [ 1620.425031] RBP: b1f6c19e79e0 R08: d1f6bfc84a80 R09: 

  [ 1620.425032] R10:  R11: 8de1eca2f6c2 R12: 
e296718293aa08b2
  [ 1620.425033] R13: 0dc0 R14: 8de2488364c0 R15: 
8de2488364c0
  [ 1620.425034] FS:  7fe9c3b52a40() GS:8de25e68() 
knlGS:
  [ 1620.425035] CS:  0010 DS:  ES:  CR0: 80050033
  [ 1620.425037] CR2: 7f6c1433c000 CR3: 000488622001 CR4: 
003606e0
  [ 1620.425038] Call Trace:
  [ 1620.425087]  ? vma_create+0x30/0x460 [i915]
  [ 1620.425122]  vma_create+0x30/0x460 [i915]
  [ 1620.425124]  ? mutex_lock+0x13/0x40
  [ 1620.425157]  i915_vma_instance+0xd2/0xe0 [i915]
  [ 1620.425187]  eb_lookup_vma+0xd7/0x1c0 [i915]
  [ 1620.425217]  eb_lookup_vmas+0x79/0x200 [i915]
  [ 1620.425247]  eb_relocate+0x18/0x1b0 [i915]
  [ 1620.425275]  i915_gem_do_execbuffer+0x265/0x8d0 [i915]
  [ 1620.425278]  ? enqueue_task_fair+0x159/0x590
  [ 1620.425282]  ? __radix_tree_replace+0x4a/0xe0
  [ 1620.425285]  ? _cond_resched+0x1a/0x50
  [ 1620.425287]  ? kmem_cache_alloc_trace+0x168/0x240
  [ 1620.425290]  ? __kmalloc_node+0x201/0x300
  [ 1620.425320]  i915_gem_execbuffer2_ioctl+0x237/0x4a0 [i915]
  [ 1620.425348]  ? intel_engines_add_sysfs+0x150/0x150 [i915]
  [ 1620.425350]  ? radix_tree_lookup+0xd/0x10
  [ 1620.425379]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425395]  drm_ioctl_kernel+0xae/0xf0 [drm]
  [ 1620.425406]  drm_ioctl+0x238/0x3d0 [drm]
  [ 1620.425434]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425437]  ? fput+0x13/0x15
  [ 1620.425440]  ? __sys_recvmsg+0x94/0xb0
  [ 1620.425442]  ksys_ioctl+0x8e/0xc0
  [ 1620.425444]  __x64_sys_ioctl+0x1a/0x20
  [ 1620.425447]  do_syscall_64+0x49/0xc0
  [ 1620.425449]  entry_SYSCALL_64_after_hwframe+0x44/0xa9

  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: xorg 1:7.7+19ubuntu15
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  Uname: Linux 5.8.0-26-generic x86_64
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 26 16:33:28 2020
  DistUpgraded: 2020-10-23 13:15:10,351 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-xenial-amd64-20160624-2
  DistroCodename: groovy
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a day
  GpuHangReproducibility: Seems to happen randomly
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
     Subsystem: Dell UHD Graphics 620 [1028:07e6]
  InstallationDate: Installed on 2018-05-04 (906 days ago)
  InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
  MachineType: Dell Inc. XPS 13 9370
  ProcKernelCmdLine: BOOT_IMAGE=

[Kernel-packages] [Bug 1901563] Re: [i915] Kernel crashed in vma_create when running Xorg

2020-11-04 Thread Bernd Schubert
The traces in https://gitlab.freedesktop.org/drm/intel/-/issues/1201
look entirely different, so I'm not sure if this is related. Here we
have

[ 1620.425038] Call Trace:
[ 1620.425087] ? vma_create+0x30/0x460 [i915]
[ 1620.425122] vma_create+0x30/0x460 [i915]
[ 1620.425124] ? mutex_lock+0x13/0x40
[ 1620.425157] i915_vma_instance+0xd2/0xe0 [i915]
[ 1620.425187] eb_lookup_vma+0xd7/0x1c0 [i915]
[ 1620.425217] eb_lookup_vmas+0x79/0x200 [i915]

Issue 1201 from freedesktop.org has

Mar 06 22:36:00 ai-karellen-lap kernel:  i915_gem_gtt_insert+0x174/0x250 [i915]
Mar 06 22:36:00 ai-karellen-lap kernel:  i915_vma_pin+0x62f/0x6f0 [i915]
Mar 06 22:36:00 ai-karellen-lap kernel:  i915_gem_object_pin+0x12d/0x1a0 [i915]
Mar 06 22:36:00 ai-karellen-lap kernel:  
i915_gem_object_pin_to_display_plane+0xa9/0xf0 [i915]
Mar 06 22:36:00 ai-karellen-lap kernel:  intel_pin_and_fence_fb_obj+0x9d/0x1c0 
[i915]
Mar 06 22:36:00 ai-karellen-lap kernel:  intel_plane_pin_fb+0x44/0xd0 [i915]
Mar 06 22:36:00 ai-karellen-lap kernel:  intel_prepare_plane_fb+0xe0/0x310 
[i915]

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

Title:
  [i915] Kernel crashed in vma_create when running Xorg

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've just upgraded to 20.10. After logging in and using PyCharm for a
  while, the system froze, and I had to do a REISUB. It turned out to be
  a kernel panic and seems related to Xorg and the i915 driver.

  This has now happened multiple times, and not all crashes have
  happened while using PyCharm.

  I've tried using the ppa:canonical-kernel-team/ppa to install a new
  kernel (5.8.0-26-generic) but that did not help.

  [ 1620.425014] general protection fault, probably for non-canonical address 
0xe296718293aa0a0a:  [#1] SMP PTI 
  [ 1620.425017] CPU: 2 PID: 1749 Comm: Xorg Tainted: GW 
5.8.0-26-generic #27-Ubuntu
  [ 1620.425018] Hardware name: Dell Inc. XPS 13 9370/0F6P3V, BIOS 1.2.1 
02/21/2018
  [ 1620.425023] RIP: 0010:kmem_cache_alloc+0x7e/0x230
  [ 1620.425025] Code: 95 01 00 00 4d 8b 07 65 49 8b 50 08 65 4c 03 05 a0 59 33 
4d 4d 8b 20 4d 85 e4 0f 84 81 01 00 00 41 8b 47 20 49 8b 3f 4c 01 e0 <48> 8b 18 
48 89 c1 49 33 9f 70 01 00 00 4c 89 e0 48 0f c9 48 31 cb
  [ 1620.425026] RSP: 0018:b1f6c19e79b0 EFLAGS: 00010286
  [ 1620.425028] RAX: e296718293aa0a0a RBX:  RCX: 
0002
  [ 1620.425029] RDX: 7d5e RSI: 0dc0 RDI: 
441461604a80
  [ 1620.425031] RBP: b1f6c19e79e0 R08: d1f6bfc84a80 R09: 

  [ 1620.425032] R10:  R11: 8de1eca2f6c2 R12: 
e296718293aa08b2
  [ 1620.425033] R13: 0dc0 R14: 8de2488364c0 R15: 
8de2488364c0
  [ 1620.425034] FS:  7fe9c3b52a40() GS:8de25e68() 
knlGS:
  [ 1620.425035] CS:  0010 DS:  ES:  CR0: 80050033
  [ 1620.425037] CR2: 7f6c1433c000 CR3: 000488622001 CR4: 
003606e0
  [ 1620.425038] Call Trace:
  [ 1620.425087]  ? vma_create+0x30/0x460 [i915]
  [ 1620.425122]  vma_create+0x30/0x460 [i915]
  [ 1620.425124]  ? mutex_lock+0x13/0x40
  [ 1620.425157]  i915_vma_instance+0xd2/0xe0 [i915]
  [ 1620.425187]  eb_lookup_vma+0xd7/0x1c0 [i915]
  [ 1620.425217]  eb_lookup_vmas+0x79/0x200 [i915]
  [ 1620.425247]  eb_relocate+0x18/0x1b0 [i915]
  [ 1620.425275]  i915_gem_do_execbuffer+0x265/0x8d0 [i915]
  [ 1620.425278]  ? enqueue_task_fair+0x159/0x590
  [ 1620.425282]  ? __radix_tree_replace+0x4a/0xe0
  [ 1620.425285]  ? _cond_resched+0x1a/0x50
  [ 1620.425287]  ? kmem_cache_alloc_trace+0x168/0x240
  [ 1620.425290]  ? __kmalloc_node+0x201/0x300
  [ 1620.425320]  i915_gem_execbuffer2_ioctl+0x237/0x4a0 [i915]
  [ 1620.425348]  ? intel_engines_add_sysfs+0x150/0x150 [i915]
  [ 1620.425350]  ? radix_tree_lookup+0xd/0x10
  [ 1620.425379]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425395]  drm_ioctl_kernel+0xae/0xf0 [drm]
  [ 1620.425406]  drm_ioctl+0x238/0x3d0 [drm]
  [ 1620.425434]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425437]  ? fput+0x13/0x15
  [ 1620.425440]  ? __sys_recvmsg+0x94/0xb0
  [ 1620.425442]  ksys_ioctl+0x8e/0xc0
  [ 1620.425444]  __x64_sys_ioctl+0x1a/0x20
  [ 1620.425447]  do_syscall_64+0x49/0xc0
  [ 1620.425449]  entry_SYSCALL_64_after_hwframe+0x44/0xa9

  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: xorg 1:7.7+19ubuntu15
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  Uname: Linux 5.8.0-26-generic x86_64
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 26 16:33:28 2020
  DistUpgraded: 2020-10-23 13:15:10,351 DEBUG Running PostInstallScript: 
'./xorg_

[Kernel-packages] [Bug 1901563] Re: [i915] Kernel crashed in vma_create when running Xorg

2020-11-04 Thread Bernd Schubert
Happens for me as well, using xfce4 (so wayland is not a simple option)
and I don't use anything like pycharm.

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

Title:
  [i915] Kernel crashed in vma_create when running Xorg

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've just upgraded to 20.10. After logging in and using PyCharm for a
  while, the system froze, and I had to do a REISUB. It turned out to be
  a kernel panic and seems related to Xorg and the i915 driver.

  This has now happened multiple times, and not all crashes have
  happened while using PyCharm.

  I've tried using the ppa:canonical-kernel-team/ppa to install a new
  kernel (5.8.0-26-generic) but that did not help.

  [ 1620.425014] general protection fault, probably for non-canonical address 
0xe296718293aa0a0a:  [#1] SMP PTI 
  [ 1620.425017] CPU: 2 PID: 1749 Comm: Xorg Tainted: GW 
5.8.0-26-generic #27-Ubuntu
  [ 1620.425018] Hardware name: Dell Inc. XPS 13 9370/0F6P3V, BIOS 1.2.1 
02/21/2018
  [ 1620.425023] RIP: 0010:kmem_cache_alloc+0x7e/0x230
  [ 1620.425025] Code: 95 01 00 00 4d 8b 07 65 49 8b 50 08 65 4c 03 05 a0 59 33 
4d 4d 8b 20 4d 85 e4 0f 84 81 01 00 00 41 8b 47 20 49 8b 3f 4c 01 e0 <48> 8b 18 
48 89 c1 49 33 9f 70 01 00 00 4c 89 e0 48 0f c9 48 31 cb
  [ 1620.425026] RSP: 0018:b1f6c19e79b0 EFLAGS: 00010286
  [ 1620.425028] RAX: e296718293aa0a0a RBX:  RCX: 
0002
  [ 1620.425029] RDX: 7d5e RSI: 0dc0 RDI: 
441461604a80
  [ 1620.425031] RBP: b1f6c19e79e0 R08: d1f6bfc84a80 R09: 

  [ 1620.425032] R10:  R11: 8de1eca2f6c2 R12: 
e296718293aa08b2
  [ 1620.425033] R13: 0dc0 R14: 8de2488364c0 R15: 
8de2488364c0
  [ 1620.425034] FS:  7fe9c3b52a40() GS:8de25e68() 
knlGS:
  [ 1620.425035] CS:  0010 DS:  ES:  CR0: 80050033
  [ 1620.425037] CR2: 7f6c1433c000 CR3: 000488622001 CR4: 
003606e0
  [ 1620.425038] Call Trace:
  [ 1620.425087]  ? vma_create+0x30/0x460 [i915]
  [ 1620.425122]  vma_create+0x30/0x460 [i915]
  [ 1620.425124]  ? mutex_lock+0x13/0x40
  [ 1620.425157]  i915_vma_instance+0xd2/0xe0 [i915]
  [ 1620.425187]  eb_lookup_vma+0xd7/0x1c0 [i915]
  [ 1620.425217]  eb_lookup_vmas+0x79/0x200 [i915]
  [ 1620.425247]  eb_relocate+0x18/0x1b0 [i915]
  [ 1620.425275]  i915_gem_do_execbuffer+0x265/0x8d0 [i915]
  [ 1620.425278]  ? enqueue_task_fair+0x159/0x590
  [ 1620.425282]  ? __radix_tree_replace+0x4a/0xe0
  [ 1620.425285]  ? _cond_resched+0x1a/0x50
  [ 1620.425287]  ? kmem_cache_alloc_trace+0x168/0x240
  [ 1620.425290]  ? __kmalloc_node+0x201/0x300
  [ 1620.425320]  i915_gem_execbuffer2_ioctl+0x237/0x4a0 [i915]
  [ 1620.425348]  ? intel_engines_add_sysfs+0x150/0x150 [i915]
  [ 1620.425350]  ? radix_tree_lookup+0xd/0x10
  [ 1620.425379]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425395]  drm_ioctl_kernel+0xae/0xf0 [drm]
  [ 1620.425406]  drm_ioctl+0x238/0x3d0 [drm]
  [ 1620.425434]  ? i915_gem_execbuffer_ioctl+0x2e0/0x2e0 [i915]
  [ 1620.425437]  ? fput+0x13/0x15
  [ 1620.425440]  ? __sys_recvmsg+0x94/0xb0
  [ 1620.425442]  ksys_ioctl+0x8e/0xc0
  [ 1620.425444]  __x64_sys_ioctl+0x1a/0x20
  [ 1620.425447]  do_syscall_64+0x49/0xc0
  [ 1620.425449]  entry_SYSCALL_64_after_hwframe+0x44/0xa9

  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: xorg 1:7.7+19ubuntu15
  ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14
  Uname: Linux 5.8.0-26-generic x86_64
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 26 16:33:28 2020
  DistUpgraded: 2020-10-23 13:15:10,351 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-xenial-amd64-20160624-2
  DistroCodename: groovy
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Several times a day
  GpuHangReproducibility: Seems to happen randomly
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
     Subsystem: Dell UHD Graphics 620 [1028:07e6]
  InstallationDate: Installed on 2018-05-04 (906 days ago)
  InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
  MachineType: Dell Inc. XPS 13 9370
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-26-generic 
root=UUID=4e0782c5-5436-4e47-9813-0946aea670c3 ro

[Kernel-packages] [Bug 1838151] Re: Poor quality audio with modern Bluetooth headsets in HSP/HFP. Missing wide band speech support (Bluetooth A2DP codecs).

2020-10-12 Thread bernd
Same here (Ubuntu 20.04)

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

Title:
  Poor quality audio with modern Bluetooth headsets in HSP/HFP.  Missing
  wide band speech support (Bluetooth A2DP codecs).

Status in PulseAudio:
  New
Status in bluez package in Ubuntu:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in pulseaudio package in Ubuntu:
  In Progress
Status in Arch Linux:
  New

Bug description:
  Bluetooth HSP/HFP audio quality is poor on Ubuntu comparative to all
  other major platforms (Windows, MacOS, ChromeOS, Android, iOS).

  Modern Bluetooth headsets (such as the Bose QC series headphones, many
  others) are capable of using HFP 1.6 with mSBC 16kHz audio encoding.
  As it currently stands, Ubuntu defaults to only supporting HSP
  headsets using 8kHz CVSD, and is incapable of supporting HFP 1.6 at
  this time.

  The ChromiumOS team recently tackled this issue -
  https://bugs.chromium.org/p/chromium/issues/detail?id=843048

  Their efforts may assist in bringing this to Ubuntu, however it
  appears that there are quite a lot of differences considering they
  have developed their own audio server solution etc.

  The Bluetooth Telephony Working Group published the HFP 1.6 spec in
  May 2011 -
  https://www.bluetooth.org/docman/handlers/downloaddoc.ashx?doc_id=238193

  Patches have been proposed in the past for this issue to the kernel
  and PulseAudio:

  PulseAudio: https://patchwork.freedesktop.org/patch/245272/
  Kernel: https://www.spinics.net/lists/linux-bluetooth/msg76982.html

  It appears that the Chromium OS team applied the same kernel patch:
  
https://chromium.googlesource.com/chromiumos/third_party/kernel/+/77dd0cb94c1713a8a12f6e392955dfa64c430e54

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: pulseaudio 1:12.2-2ubuntu3
  ProcVersionSignature: Ubuntu 5.0.0-20.21-generic 5.0.8
  Uname: Linux 5.0.0-20-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jnappi 2777 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Jul 27 11:08:29 2019
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2017-11-04 (629 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to disco on 2019-07-18 (9 days ago)
  dmi.bios.date: 06/07/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R07ET67W (2.07 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20FW000TUS
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40705 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrR07ET67W(2.07):bd06/07/2016:svnLENOVO:pn20FW000TUS:pvrThinkPadT460p:rvnLENOVO:rn20FW000TUS:rvrSDK0J40705WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T460p
  dmi.product.name: 20FW000TUS
  dmi.product.sku: LENOVO_MT_20FW_BU_Think_FM_ThinkPad T460p
  dmi.product.version: ThinkPad T460p
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/1838151/+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 1853197] Re: Memory leak in net/xfrm/xfrm_state.c - 8 pages per ipsec connection

2019-12-16 Thread Bernd Schütte
Tested 5.3.0-25-generic on Eoan and it fixes the memory leak there as
well.

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

Title:
  Memory leak in net/xfrm/xfrm_state.c - 8 pages per ipsec connection

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Disco:
  Fix Committed
Status in linux source package in Eoan:
  Fix Committed

Bug description:
  [SRU Justification]

  == Impact ==

  An upstream change in v4.11 made xfrm loose memory (8 pages per ipsec 
connection). This was fixed in v5.4 by:
commit 86c6739eda7d "xfrm: Fix memleak on xfrm state destroy"

  == Fix ==

  Pick the upstream fix into all affected series.

  == Testcase ==

  see below

  == Risk of Regression ==

  Low, the change adds a single memory release case in one driver. The
  effect can be verified.

  ---

  Ubuntu linux distro, 4.15.0-62 kernel, server platform.
  This OS is used as an IPSec VPN gateway.  It serves up to several hundred 
concurrent connections

  In an attempt to upgrade from the 4.4 kernel to 4.15, the team noticed
  that VPN gateway VMs were running out of physical memory after 12-48
  hours, depending on load.

  Attachments from a server machine in this state in attached leakinfo.txt
  output of free -t
  output of /proc/meminfo in out of memory condition
  output of /slabtop -o -sc
  /sys/kernel/debug/page_owner sorted and aggregated after server ran for 12 
hrs and ran out of memory
  Patches for 4.15 and 5.4

  Highlight from page_owner, we can see the leak is a buffer associated
  with the ipsec impelementation.  Each connection leaks 32k of memory
  via alloc_page with order=3

  100960 times:
  Page allocated via order 3, mask 
0x1085220(GFP_ATOMIC|__GFP_NOWARN|__GFP_NORETRY|__GFP_COMP)
   get_page_from_freelist+0xd64/0x1250
   __alloc_pages_nodemask+0x11c/0x2e0
   alloc_pages_current+0x6a/0xe0
   skb_page_frag_refill+0x71/0x100
   esp_output_head+0x265/0x3e0 [esp4]
   esp_output+0xbc/0x180 [esp4]
   xfrm_output_resume+0x179/0x530
   xfrm_output+0x8e/0x230
   xfrm4_output_finish+0x2b/0x30
   __xfrm4_output+0x3a/0x50
   xfrm4_output+0x43/0xc0
   ip_forward_finish+0x51/0x80
   ip_forward+0x38a/0x480
   ip_rcv_finish+0x122/0x410
   ip_rcv+0x292/0x360
   __netif_receive_skb_core+0x815/0xbd0

  Patch to fix this issue in 4.15 (tested and verified on same server 
exhibiting above leak):
  diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
  index 728272f..7842f83 100644
  --- a/net/xfrm/xfrm_state.c
  +++ b/net/xfrm/xfrm_state.c
  @@ -451,6 +451,10 @@ static void xfrm_state_gc_destroy(struct xfrm_state *x)
  }
  xfrm_dev_state_free(x);
  security_xfrm_state_free(x);
  +
  +   if(x->xfrag.page)
  +   put_page(x->xfrag.page);
  +
  kfree(x);
  }

  Patch for master branch (5.4 I believe) from Paul Wouters
  (p...@nohats.ca)

  diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
  index c6f3c4a1bd99..f3423562d933 100644
  --- a/net/xfrm/xfrm_state.c
  +++ b/net/xfrm/xfrm_state.c
  @@ -495,6 +495,8 @@ static void ___xfrm_state_destroy(struct xfrm_state *x)
  x->type->destructor(x);
  xfrm_put_type(x->type);
  }
  + if (x->xfrag.page)
  + put_page(x->xfrag.page);
  xfrm_dev_state_free(x);
  security_xfrm_state_free(x);
  xfrm_state_free(x);

  Severity:  Critical - we are unable to use any kernel later than 4.11,
  and are sticking with 4.4 in production.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1853197/+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 1853197] Re: Memory leak in net/xfrm/xfrm_state.c - 8 pages per ipsec connection

2019-12-11 Thread Bernd Schütte
Does it help when we test disco and eoan as well? The test case is very
easy and those kernels are affected as well.

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

Title:
  Memory leak in net/xfrm/xfrm_state.c - 8 pages per ipsec connection

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Disco:
  Fix Committed
Status in linux source package in Eoan:
  Fix Committed

Bug description:
  [SRU Justification]

  == Impact ==

  An upstream change in v4.11 made xfrm loose memory (8 pages per ipsec 
connection). This was fixed in v5.4 by:
commit 86c6739eda7d "xfrm: Fix memleak on xfrm state destroy"

  == Fix ==

  Pick the upstream fix into all affected series.

  == Testcase ==

  see below

  == Risk of Regression ==

  Low, the change adds a single memory release case in one driver. The
  effect can be verified.

  ---

  Ubuntu linux distro, 4.15.0-62 kernel, server platform.
  This OS is used as an IPSec VPN gateway.  It serves up to several hundred 
concurrent connections

  In an attempt to upgrade from the 4.4 kernel to 4.15, the team noticed
  that VPN gateway VMs were running out of physical memory after 12-48
  hours, depending on load.

  Attachments from a server machine in this state in attached leakinfo.txt
  output of free -t
  output of /proc/meminfo in out of memory condition
  output of /slabtop -o -sc
  /sys/kernel/debug/page_owner sorted and aggregated after server ran for 12 
hrs and ran out of memory
  Patches for 4.15 and 5.4

  Highlight from page_owner, we can see the leak is a buffer associated
  with the ipsec impelementation.  Each connection leaks 32k of memory
  via alloc_page with order=3

  100960 times:
  Page allocated via order 3, mask 
0x1085220(GFP_ATOMIC|__GFP_NOWARN|__GFP_NORETRY|__GFP_COMP)
   get_page_from_freelist+0xd64/0x1250
   __alloc_pages_nodemask+0x11c/0x2e0
   alloc_pages_current+0x6a/0xe0
   skb_page_frag_refill+0x71/0x100
   esp_output_head+0x265/0x3e0 [esp4]
   esp_output+0xbc/0x180 [esp4]
   xfrm_output_resume+0x179/0x530
   xfrm_output+0x8e/0x230
   xfrm4_output_finish+0x2b/0x30
   __xfrm4_output+0x3a/0x50
   xfrm4_output+0x43/0xc0
   ip_forward_finish+0x51/0x80
   ip_forward+0x38a/0x480
   ip_rcv_finish+0x122/0x410
   ip_rcv+0x292/0x360
   __netif_receive_skb_core+0x815/0xbd0

  Patch to fix this issue in 4.15 (tested and verified on same server 
exhibiting above leak):
  diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
  index 728272f..7842f83 100644
  --- a/net/xfrm/xfrm_state.c
  +++ b/net/xfrm/xfrm_state.c
  @@ -451,6 +451,10 @@ static void xfrm_state_gc_destroy(struct xfrm_state *x)
  }
  xfrm_dev_state_free(x);
  security_xfrm_state_free(x);
  +
  +   if(x->xfrag.page)
  +   put_page(x->xfrag.page);
  +
  kfree(x);
  }

  Patch for master branch (5.4 I believe) from Paul Wouters
  (p...@nohats.ca)

  diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
  index c6f3c4a1bd99..f3423562d933 100644
  --- a/net/xfrm/xfrm_state.c
  +++ b/net/xfrm/xfrm_state.c
  @@ -495,6 +495,8 @@ static void ___xfrm_state_destroy(struct xfrm_state *x)
  x->type->destructor(x);
  xfrm_put_type(x->type);
  }
  + if (x->xfrag.page)
  + put_page(x->xfrag.page);
  xfrm_dev_state_free(x);
  security_xfrm_state_free(x);
  xfrm_state_free(x);

  Severity:  Critical - we are unable to use any kernel later than 4.11,
  and are sticking with 4.4 in production.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1853197/+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 1853197] Re: Memory leak in net/xfrm/xfrm_state.c - 8 pages per ipsec connection

2019-12-08 Thread Bernd Schütte
it is running for five days and memory consumption looks normal (not
leaking)

** Changed in: linux (Ubuntu Bionic)
   Status: Fix Committed => 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/1853197

Title:
  Memory leak in net/xfrm/xfrm_state.c - 8 pages per ipsec connection

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed
Status in linux source package in Disco:
  Fix Committed
Status in linux source package in Eoan:
  Fix Committed

Bug description:
  [SRU Justification]

  == Impact ==

  An upstream change in v4.11 made xfrm loose memory (8 pages per ipsec 
connection). This was fixed in v5.4 by:
commit 86c6739eda7d "xfrm: Fix memleak on xfrm state destroy"

  == Fix ==

  Pick the upstream fix into all affected series.

  == Testcase ==

  see below

  == Risk of Regression ==

  Low, the change adds a single memory release case in one driver. The
  effect can be verified.

  ---

  Ubuntu linux distro, 4.15.0-62 kernel, server platform.
  This OS is used as an IPSec VPN gateway.  It serves up to several hundred 
concurrent connections

  In an attempt to upgrade from the 4.4 kernel to 4.15, the team noticed
  that VPN gateway VMs were running out of physical memory after 12-48
  hours, depending on load.

  Attachments from a server machine in this state in attached leakinfo.txt
  output of free -t
  output of /proc/meminfo in out of memory condition
  output of /slabtop -o -sc
  /sys/kernel/debug/page_owner sorted and aggregated after server ran for 12 
hrs and ran out of memory
  Patches for 4.15 and 5.4

  Highlight from page_owner, we can see the leak is a buffer associated
  with the ipsec impelementation.  Each connection leaks 32k of memory
  via alloc_page with order=3

  100960 times:
  Page allocated via order 3, mask 
0x1085220(GFP_ATOMIC|__GFP_NOWARN|__GFP_NORETRY|__GFP_COMP)
   get_page_from_freelist+0xd64/0x1250
   __alloc_pages_nodemask+0x11c/0x2e0
   alloc_pages_current+0x6a/0xe0
   skb_page_frag_refill+0x71/0x100
   esp_output_head+0x265/0x3e0 [esp4]
   esp_output+0xbc/0x180 [esp4]
   xfrm_output_resume+0x179/0x530
   xfrm_output+0x8e/0x230
   xfrm4_output_finish+0x2b/0x30
   __xfrm4_output+0x3a/0x50
   xfrm4_output+0x43/0xc0
   ip_forward_finish+0x51/0x80
   ip_forward+0x38a/0x480
   ip_rcv_finish+0x122/0x410
   ip_rcv+0x292/0x360
   __netif_receive_skb_core+0x815/0xbd0

  Patch to fix this issue in 4.15 (tested and verified on same server 
exhibiting above leak):
  diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
  index 728272f..7842f83 100644
  --- a/net/xfrm/xfrm_state.c
  +++ b/net/xfrm/xfrm_state.c
  @@ -451,6 +451,10 @@ static void xfrm_state_gc_destroy(struct xfrm_state *x)
  }
  xfrm_dev_state_free(x);
  security_xfrm_state_free(x);
  +
  +   if(x->xfrag.page)
  +   put_page(x->xfrag.page);
  +
  kfree(x);
  }

  Patch for master branch (5.4 I believe) from Paul Wouters
  (p...@nohats.ca)

  diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
  index c6f3c4a1bd99..f3423562d933 100644
  --- a/net/xfrm/xfrm_state.c
  +++ b/net/xfrm/xfrm_state.c
  @@ -495,6 +495,8 @@ static void ___xfrm_state_destroy(struct xfrm_state *x)
  x->type->destructor(x);
  xfrm_put_type(x->type);
  }
  + if (x->xfrag.page)
  + put_page(x->xfrag.page);
  xfrm_dev_state_free(x);
  security_xfrm_state_free(x);
  xfrm_state_free(x);

  Severity:  Critical - we are unable to use any kernel later than 4.11,
  and are sticking with 4.4 in production.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1853197/+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 1854315] Re: IPSec / xfrm memory leak found

2019-11-28 Thread Bernd Schütte
some additional hints and reports.

https://lore.kernel.org/netdev/CAMnf+Ph-Bx=wzxtpxuc8h6vxtdf-7z52ywdrt9gm6wn0x14...@mail.gmail.com/
https://lore.kernel.org/netdev/CAMnf+PjGq2qsZzg=+H5Z5kO+PSQbo=R0MHW5rv1CWrqoS=b...@mail.gmail.com/

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

Title:
  IPSec / xfrm memory leak found

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hi everybody.

  there is a memory leak in the current kernels since 4.15 (maybe olders
  as well) in combination with IPSec. I verified it with kernel linux-
  meta 4.15.0.70.72 on Ubuntu 18.04.

  As Strongswan is used and users login / logout, being connected and
  doing traffic memory gets lost. After a while no memory is left over
  and OOM killer starts it work.

  After some debugging and asking in the Strongswan irc channel I was informed 
that there was a memory leak found in net/xfrm/xfrm_state.c which might be 
related. Here is the commit to this fix:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=86c6739eda7d2a03f2db30cbee67a5fb81afa8ba

  I applied this patch against the linux-meta 4.15.0.70.72 and it fixes
  the issue.

  Tested and verified on and with:
  Ubuntu 18.04.3 LTS
  strongswan-5.6.2-1ubuntu2.4
  linux-image-generic-4.15.0.70.72

  Here are some additional information:
  https://lore.kernel.org/netdev/2019062832.gp13...@gauss3.secunet.de/
  https://marc.info/?l=linux-netdev&m=157405892918311&w=2

  it also is reproducible with hwe and hwe-edge kernel as well as with
  other strongswan version. I also backported latest Ubuntu version of
  strongswan to 18.04 which has same behavior. On a completely different
  system (Gentoo) it also is the case. So I'm really sure that this is
  related to the reported kernel thing which is already solve in current
  mainline

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1854315/+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 1854315] [NEW] IPSec / xfrm memory leak found

2019-11-27 Thread Bernd Schütte
Public bug reported:

Hi everybody.

there is a memory leak in the current kernels since 4.15 (maybe olders
as well) in combination with IPSec. I verified it with kernel linux-meta
4.15.0.70.72 on Ubuntu 18.04.

As Strongswan is used and users login / logout, being connected and
doing traffic memory gets lost. After a while no memory is left over and
OOM killer starts it work.

After some debugging and asking in the Strongswan irc channel I was informed 
that there was a memory leak found in net/xfrm/xfrm_state.c which might be 
related. Here is the commit to this fix:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=86c6739eda7d2a03f2db30cbee67a5fb81afa8ba

I applied this patch against the linux-meta 4.15.0.70.72 and it fixes
the issue.

Tested and verified on and with:
Ubuntu 18.04.3 LTS
strongswan-5.6.2-1ubuntu2.4
linux-image-generic-4.15.0.70.72

Here are some additional information:
https://lore.kernel.org/netdev/2019062832.gp13...@gauss3.secunet.de/
https://marc.info/?l=linux-netdev&m=157405892918311&w=2

it also is reproducible with hwe and hwe-edge kernel as well as with
other strongswan version. I also backported latest Ubuntu version of
strongswan to 18.04 which has same behavior. On a completely different
system (Gentoo) it also is the case. So I'm really sure that this is
related to the reported kernel thing which is already solve in current
mainline

** Affects: linux-meta (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/1854315

Title:
  IPSec / xfrm memory leak found

Status in linux-meta package in Ubuntu:
  New

Bug description:
  Hi everybody.

  there is a memory leak in the current kernels since 4.15 (maybe olders
  as well) in combination with IPSec. I verified it with kernel linux-
  meta 4.15.0.70.72 on Ubuntu 18.04.

  As Strongswan is used and users login / logout, being connected and
  doing traffic memory gets lost. After a while no memory is left over
  and OOM killer starts it work.

  After some debugging and asking in the Strongswan irc channel I was informed 
that there was a memory leak found in net/xfrm/xfrm_state.c which might be 
related. Here is the commit to this fix:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=86c6739eda7d2a03f2db30cbee67a5fb81afa8ba

  I applied this patch against the linux-meta 4.15.0.70.72 and it fixes
  the issue.

  Tested and verified on and with:
  Ubuntu 18.04.3 LTS
  strongswan-5.6.2-1ubuntu2.4
  linux-image-generic-4.15.0.70.72

  Here are some additional information:
  https://lore.kernel.org/netdev/2019062832.gp13...@gauss3.secunet.de/
  https://marc.info/?l=linux-netdev&m=157405892918311&w=2

  it also is reproducible with hwe and hwe-edge kernel as well as with
  other strongswan version. I also backported latest Ubuntu version of
  strongswan to 18.04 which has same behavior. On a completely different
  system (Gentoo) it also is the case. So I'm really sure that this is
  related to the reported kernel thing which is already solve in current
  mainline

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-meta/+bug/1854315/+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 1854315] Re: IPSec / xfrm memory leak found

2019-11-27 Thread Bernd Schütte
package was not taken correctly

** Package changed: linux (Ubuntu) => linux-meta (Ubuntu)

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

Title:
  IPSec / xfrm memory leak found

Status in linux-meta package in Ubuntu:
  New

Bug description:
  Hi everybody.

  there is a memory leak in the current kernels since 4.15 (maybe olders
  as well) in combination with IPSec. I verified it with kernel linux-
  meta 4.15.0.70.72 on Ubuntu 18.04.

  As Strongswan is used and users login / logout, being connected and
  doing traffic memory gets lost. After a while no memory is left over
  and OOM killer starts it work.

  After some debugging and asking in the Strongswan irc channel I was informed 
that there was a memory leak found in net/xfrm/xfrm_state.c which might be 
related. Here is the commit to this fix:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=86c6739eda7d2a03f2db30cbee67a5fb81afa8ba

  I applied this patch against the linux-meta 4.15.0.70.72 and it fixes
  the issue.

  Tested and verified on and with:
  Ubuntu 18.04.3 LTS
  strongswan-5.6.2-1ubuntu2.4
  linux-image-generic-4.15.0.70.72

  Here are some additional information:
  https://lore.kernel.org/netdev/2019062832.gp13...@gauss3.secunet.de/
  https://marc.info/?l=linux-netdev&m=157405892918311&w=2

  it also is reproducible with hwe and hwe-edge kernel as well as with
  other strongswan version. I also backported latest Ubuntu version of
  strongswan to 18.04 which has same behavior. On a completely different
  system (Gentoo) it also is the case. So I'm really sure that this is
  related to the reported kernel thing which is already solve in current
  mainline

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-meta/+bug/1854315/+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 1423796] Re: Unable to mount lvmcache root device at boot time

2019-02-04 Thread Bernd Schubert
Related to debian bug #773731

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

Title:
  Unable to mount lvmcache root device at boot time

Status in initramfs-tools package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in lvm2 package in Ubuntu:
  Confirmed

Bug description:
  I'm experimenting with Vivid Vervet on a virtual machine and tried a
  new LVM feature, lvmcache. I made a cache for the root file system,
  rebuilt the initrd and rebooted the VM.

  At boot time, the system failed to activate the root LV. After some
  investigation, I found out, it's because the initrd is missing some
  essential stuff needed for activating a cached LV.

  The initrd was missing the dm-cache module. I regenerated the initrd
  with explicitly listing dm-cache in /etc/initramfs-tools/modules, but
  the system still can't boot up, because now it is missing the
  /usr/sbin/cache_check utility.

  As SSDs are becoming more and more common, I think it will be common
  to use them as cache for root file systems, thus it is mandatory to
  make sure that an initrd can mount an lvmcached root device when
  necessary, preferably without /etc/initramfs-tools/modules and other
  manual initrd hacking.

  System details:

  Linux lvmvm 3.18.0-13-generic #14-Ubuntu SMP Fri Feb 6 09:55:14 UTC
  2015 x86_64 x86_64 x86_64 GNU/Linux

  Distributor ID:   Ubuntu
  Description:  Ubuntu Vivid Vervet (development branch)
  Release:  15.04
  Codename: vivid

  LVM version: 2.02.111(2) (2014-09-01)
  Library version: 1.02.90 (2014-09-01)
  Driver version:  4.28.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1423796/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2017-01-18 Thread Bernd Porr
Tested:
linux-firmware_1.157.8_all.deb
from xenial proposed and it works!
Bug fixed!


** Tags added: verification-done

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-firmware source package in Xenial:
  Fix Committed

Bug description:
  SRU Justification

  Impact: The usbduxsigma firmware is out of date and causes the driver
  to fail. This is fixed by updating the firmware from upstream linux-
  firmware.

  Test Case: Using the driver with the old firmware fails. Using it with
  the new firmware does not.

  Regression potential: The firmware is only used by the one driver so
  there is no potential for regression anywhere else, and the driver
  already isn't working with the old firmware.

  ---

  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
    Installed: 1.157.2
    Candidate: 1.157.2
    Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:

  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2017-01-06 Thread Bernd Porr
Works perfectly. Thanks for sorting it out. :)

bp1@bp1-Precision-WorkStation-T5400:~$ diff /tmp/usbduxsigma_firmware.bin 
/lib/firmware/usbduxsigma_firmware.bin 
bp1@bp1-Precision-WorkStation-T5400:~$

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2017-01-05 Thread Bernd Porr
Thanks for taking care of it! :)

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2017-01-05 Thread Bernd Porr
bump.

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2016-12-18 Thread Bernd Porr
A new firmware package has arrived and the usbduxsigma file has
certainly been updated.

-rw-r--r--  1 root root 999 Apr 25  2016 usbduxfast_firmware.bin
-rw-r--r--  1 root root1770 Apr 25  2016 usbdux_firmware.bin
-rw-r--r--  1 root root8192 Nov 30 21:03 usbduxsigma_firmware.bin

So I've just cloned:
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
and compared it to the firmware version in the just installed ubuntu xenial 
linux-firmware package:

bp1@bp1-Precision-WorkStation-T5400:/lib/firmware$ diff 
./usbduxsigma_firmware.bin /tmp/linux-firmware/usbduxsigma_firmware.bin 
Binary files ./usbduxsigma_firmware.bin and 
/tmp/linux-firmware/usbduxsigma_firmware.bin differ
bp1@bp1-Precision-WorkStation-T5400:/lib/firmware$ 

Even that the timestamp has changed to Nov 30th it's still not the
version in linux-firmware.git!

Frustrating.

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2016-11-27 Thread Bernd Porr
bump

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2016-11-04 Thread Bernd Porr
bump

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2016-10-21 Thread Bernd Porr
This has been reported in July and the firmware still hasn't been
updated. I'm using the board in teaching at my university and now we
have to manually copy the new firmware version. It's been available
upstream for ages but it's still not in the ubuntu firmware package.
It's very disappointing.

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1605974] Re: usbduxsigma_firmware.bin: old version causes driver crash

2016-10-12 Thread Bernd Porr
The linux firmware has been updated and the usbduxsigma firmware as
well. However it's still the _old_ firmware.

See the diff between the kernel git and what ubuntu has:
bp1@bp1-Precision-WorkStation-T5400:/tmp/linux-firmware$ diff 
usbduxsigma_firmware.bin /lib/firmware/usbduxsigma_firmware.bin 
Binary files usbduxsigma_firmware.bin and 
/lib/firmware/usbduxsigma_firmware.bin differ

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

Title:
  usbduxsigma_firmware.bin: old version causes driver crash

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  The firmware of the usbduxsigma (alongside with the usbduxsigma.c) was
  updated in 2015 during a major rewrite but its binary was still the
  old one which causes the kernel driver to fail.

  I've submitted a patch to the kernel people (see below).

  However, as a quick fix could you also apply the patch to the package
  directly to have this fixed now and then we can wait until it trickles
  down from the kernel.

  I'm the maintainer of both the firmware and the drivers.

  This affects both 32 and 64 bit distros.

  Best,
  /Bernd Porr (www.linux-usb-daq.co.uk)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  linux-firmware:
Installed: 1.157.2
Candidate: 1.157.2
Version table:
   *** 1.157.2 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1.157 500
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages

  Expect to happen: plug in a duxduxsigma device, start comedirecord and see 
the signals plotted
  Happens instead: plug in a duxduxsigma device, start comedirecord and GARBLED 
DATA shows up / crash
  Fix: install this patch (new version of the firmware binary)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-firmware 1.157.2 [modified: 
lib/firmware/usbduxsigma_firmware.bin]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jul 24 10:04:19 2016
  Dependencies:
   
  InstallationDate: Installed on 2013-12-09 (957 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131209)
  PackageArchitecture: all
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to xenial on 2016-07-23 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1605974/+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 1611532] Re: bluetooth USB dongle CSR8510 causes system freeze

2016-09-02 Thread Bernd Porr
Not that I'm aware of. I had 32bit and 64bit versions running and it was
fine. Though I did most development under 32bit prior to 16.04 but some
also under 64bit.

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

Title:
  bluetooth USB dongle CSR8510 causes system freeze

Status in Linux:
  New
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  - Do a rfcomm bind.
  - Try a cat /dev/rfcomm0
  In about 50% of cases the system completely freezes. In the other 40% the 
rfcomm data is garbled. In the remaining 10% the data is fine.
  The bt device at the other end is an RN42 which transmits text data.

  When scanning for devices often the bt name is not displayed or is
  shown as unknown.

  It worked perfectly under the previous LTS (precise) which was a 32
  bit version.

  The xenial I'm using now is a 64bit version.

  I've tried it on two computers and the behaviour is the same (both 64
  bit versions)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  Linux bp1-ThinkPad-X220 4.4.0-34-generic #53-Ubuntu SMP Wed Jul 27
  16:06:39 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-31-generic 4.4.0-31.50 [modified: 
boot/vmlinuz-4.4.0-31-generic]
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bp13466 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Aug  9 22:57:18 2016
  HibernationDevice: RESUME=UUID=8159b870-9b8b-418d-ba7f-681dacd3fb94
  InstallationDate: Installed on 2016-07-24 (16 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: LENOVO 4291SX7
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-34-generic 
root=UUID=a4df6be3-87d1-4a4f-8576-2c3fc031806e ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-34-generic N/A
   linux-backports-modules-4.4.0-34-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2013
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET69WW (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4291SX7
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET69WW(1.39):bd07/18/2013:svnLENOVO:pn4291SX7:pvrThinkPadX220:rvnLENOVO:rn4291SX7:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4291SX7
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1611532/+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 1611532] Re: bluetooth USB dongle CSR8510 causes system freeze

2016-09-02 Thread Bernd Porr
Just tested with 4.8-rc4: no ethernet, no bluetooth at all and graphics 
defaults to VGA only.
Booted back to the stock ubuntu xenial kernel and bluetooth/network is back up 
running.
Looks to me like a massive regression.
All tested on an X220 laptop.

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

Title:
  bluetooth USB dongle CSR8510 causes system freeze

Status in Linux:
  New
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  - Do a rfcomm bind.
  - Try a cat /dev/rfcomm0
  In about 50% of cases the system completely freezes. In the other 40% the 
rfcomm data is garbled. In the remaining 10% the data is fine.
  The bt device at the other end is an RN42 which transmits text data.

  When scanning for devices often the bt name is not displayed or is
  shown as unknown.

  It worked perfectly under the previous LTS (precise) which was a 32
  bit version.

  The xenial I'm using now is a 64bit version.

  I've tried it on two computers and the behaviour is the same (both 64
  bit versions)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  Linux bp1-ThinkPad-X220 4.4.0-34-generic #53-Ubuntu SMP Wed Jul 27
  16:06:39 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-31-generic 4.4.0-31.50 [modified: 
boot/vmlinuz-4.4.0-31-generic]
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bp13466 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Aug  9 22:57:18 2016
  HibernationDevice: RESUME=UUID=8159b870-9b8b-418d-ba7f-681dacd3fb94
  InstallationDate: Installed on 2016-07-24 (16 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: LENOVO 4291SX7
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-34-generic 
root=UUID=a4df6be3-87d1-4a4f-8576-2c3fc031806e ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-34-generic N/A
   linux-backports-modules-4.4.0-34-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2013
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET69WW (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4291SX7
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET69WW(1.39):bd07/18/2013:svnLENOVO:pn4291SX7:pvrThinkPadX220:rvnLENOVO:rn4291SX7:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4291SX7
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1611532/+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 1611532] Re: bluetooth USB dongle CSR8510 causes system freeze

2016-08-17 Thread Bernd Porr
Tested with a:
Bus 001 Device 005: ID 0a5c:217f Broadcom Corp. BCM2045B (BDC-2.1)
on 
4.8.0-rc1+ #1 SMP Fri Aug 12 15:49:49 BST 2016 x86_64 x86_64 x86_64 GNU/Linux
which works fine if the datarate is not too high (approx 50kbps) but becomes 
unreliable at higher data rates.
Decive discovery is also very reliable.
With this dongle is close-ish to the kernel 3.x performance.

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

Title:
  bluetooth USB dongle CSR8510 causes system freeze

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

Bug description:
  - Do a rfcomm bind.
  - Try a cat /dev/rfcomm0
  In about 50% of cases the system completely freezes. In the other 40% the 
rfcomm data is garbled. In the remaining 10% the data is fine.
  The bt device at the other end is an RN42 which transmits text data.

  When scanning for devices often the bt name is not displayed or is
  shown as unknown.

  It worked perfectly under the previous LTS (precise) which was a 32
  bit version.

  The xenial I'm using now is a 64bit version.

  I've tried it on two computers and the behaviour is the same (both 64
  bit versions)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  Linux bp1-ThinkPad-X220 4.4.0-34-generic #53-Ubuntu SMP Wed Jul 27
  16:06:39 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-31-generic 4.4.0-31.50 [modified: 
boot/vmlinuz-4.4.0-31-generic]
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bp13466 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Aug  9 22:57:18 2016
  HibernationDevice: RESUME=UUID=8159b870-9b8b-418d-ba7f-681dacd3fb94
  InstallationDate: Installed on 2016-07-24 (16 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: LENOVO 4291SX7
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-34-generic 
root=UUID=a4df6be3-87d1-4a4f-8576-2c3fc031806e ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-34-generic N/A
   linux-backports-modules-4.4.0-34-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2013
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET69WW (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4291SX7
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET69WW(1.39):bd07/18/2013:svnLENOVO:pn4291SX7:pvrThinkPadX220:rvnLENOVO:rn4291SX7:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4291SX7
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1611532/+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 1611532] Re: bluetooth USB dongle CSR8510 causes system freeze

2016-08-16 Thread Bernd Porr
I've checked out the kernel from git and it's exactly the same issue:
4.8.0-rc1+ #1 SMP Fri Aug 12 15:49:49 BST 2016 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  bluetooth USB dongle CSR8510 causes system freeze

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

Bug description:
  - Do a rfcomm bind.
  - Try a cat /dev/rfcomm0
  In about 50% of cases the system completely freezes. In the other 40% the 
rfcomm data is garbled. In the remaining 10% the data is fine.
  The bt device at the other end is an RN42 which transmits text data.

  When scanning for devices often the bt name is not displayed or is
  shown as unknown.

  It worked perfectly under the previous LTS (precise) which was a 32
  bit version.

  The xenial I'm using now is a 64bit version.

  I've tried it on two computers and the behaviour is the same (both 64
  bit versions)

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  Linux bp1-ThinkPad-X220 4.4.0-34-generic #53-Ubuntu SMP Wed Jul 27
  16:06:39 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-31-generic 4.4.0-31.50 [modified: 
boot/vmlinuz-4.4.0-31-generic]
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bp13466 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Aug  9 22:57:18 2016
  HibernationDevice: RESUME=UUID=8159b870-9b8b-418d-ba7f-681dacd3fb94
  InstallationDate: Installed on 2016-07-24 (16 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: LENOVO 4291SX7
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-34-generic 
root=UUID=a4df6be3-87d1-4a4f-8576-2c3fc031806e ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-34-generic N/A
   linux-backports-modules-4.4.0-34-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2013
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET69WW (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4291SX7
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET69WW(1.39):bd07/18/2013:svnLENOVO:pn4291SX7:pvrThinkPadX220:rvnLENOVO:rn4291SX7:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4291SX7
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

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