Package: src:linux
Version: 6.12.74-2
Severity: normal
X-Debbugs-Cc: [email protected], [email protected]
User: [email protected]
Usertags: amd64

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
 Ans: The issue began after updating to kernel version 6.12.74+deb13+1-amd64.
During VM startup, the system fails or becomes stuck while trying to unload the
AMD GPU driver, which is part of the script I use for single GPU passthrough.
My single GPU passthrough configuration and hook script work correctly with
kernel version 6.12.63+deb13-amd64, but the configuration stops working
starting from kernel version 6.12.69+deb13-amd64 up to the current version
6.12.74+deb13+1-amd64. The problem appears to occur when the script attempts to
unload the amdgpu driver.


   * What exactly did you do (or not do) that was effective (or
     ineffective)?
  Ans: After updating the kernel to 6.12.74+deb13+1-amd64, my single GPU
passthrough configuration and hook script stopped working. I was unsure which
previous kernel version it had worked with, so I began installing and testing
older kernel versions. During testing, I found that the configuration and hook
script work correctly with kernel version 6.12.63+deb13-amd64 and earlier.
However, starting from kernel version 6.12.69+deb13-amd64 up to the current
6.12.74+deb13+1-amd64, the single GPU passthrough configuration and hook script
no longer work. For GPU passthrough, I am using SharkWipf, which requires hook
scripts. I will attach the script for reference.


   * What was the outcome of this action?
  Ans: After testing multiple kernel versions, I found that kernel versions
6.12.69+deb13-amd64 up to the current 6.12.74+deb13+1-amd64 do not work with my
single GPU passthrough configuration and hook script. I also tested two Trixie
backport kernels. With kernel version 6.18.15+deb13-amd64, the issue remained
the same and the configuration did not work. However, with kernel version
6.17.13+deb13-amd64, the single GPU passthrough configuration and hook script
work correctly. Currently, I am using kernel 6.17.13+deb13-amd64 as a
workaround to avoid this problem.

        When I start the VM, I get a black screen, and no logs are generated in
/var/log/libvirt/qemu/. Because of this, I suspected that the hook script might
not be executing completely.To further investigate the issue, I connected via
SSH from a second computer to my main KVM host PC running kernel version
6.12.74+deb13+1-amd64 and manually executed the hook script. The output was:

*************************************************

sudo /etc/libvirt/hooks/qemu.d/Window11-Passthrough/prepare/begin/start.sh
[sudo] password for rv:
+ systemctl stop display-manager.service
+ echo 0
+ echo 0
+ modprobe -r amdgpu

**************************************************

The hook script does not complete execution and appears to freeze while
attempting to unload the amdgpu module. While it is stuck at this step, the
system becomes unresponsive, and I am unable to cancel the execution with
Ctrl+C, which forces me to perform a hard reset of the PC.

        Please review this issue and consider fixing it in an upcoming kernel
update so that I can use the 6.12 kernel series on my KVM host PC. Currently,
my single GPU passthrough configuration works correctly with kernel version
6.17.13+deb13-amd64, but it does not work with kernel versions
6.12.69+deb13-amd64 through 6.12.74+deb13+1-amd64. Resolving this issue would
allow me to use the 6.12 kernel version without encountering the GPU
passthrough problem.


SharkWipf script for refernce:
script location: /etc/libvirt/hooks/qemu
******************************************

#!/usr/bin/env bash
#
# Author: SharkWipf
#
# Copy this file to /etc/libvirt/hooks, make sure it's called "qemu".
# After this file is installed, restart libvirt.
# From now on, you can easily add per-guest qemu hooks.
# Add your hooks in /etc/libvirt/hooks/qemu.d/vm_name/hook_name/state_name.
# For a list of available hooks, please refer to
https://www.libvirt.org/hooks.html
#

GUEST_NAME="$1"
HOOK_NAME="$2"
STATE_NAME="$3"
MISC="${@:4}"

BASEDIR="$(dirname $0)"

HOOKPATH="$BASEDIR/qemu.d/$GUEST_NAME/$HOOK_NAME/$STATE_NAME"

set -e # If a script exits with an error, we should as well.

# check if it's a non-empty executable file
if [ -f "$HOOKPATH" ] && [ -s "$HOOKPATH" ] && [ -x "$HOOKPATH" ]; then
    eval \"$HOOKPATH\" "$@"
elif [ -d "$HOOKPATH" ]; then
    while read file; do
        # check for null string
        if [ ! -z "$file" ]; then
          eval \"$file\" "$@"
        fi
    done <<< "$(find -L "$HOOKPATH" -maxdepth 1 -type f -executable -print;)"
fi

******************************************



hooks script start for refernce:
script location:
/etc/libvirt/hooks/qemu.d/Window11-Passthrough/prepare/begin/start.sh
******************************************

#!/bin/bash
# Helpful to read output when debugging
set -x
#exec > /tmp/vfio-start.log 2>&1

# Stop display manager
systemctl stop display-manager.service
## Uncomment the following line if you use GDM
#killall lightdm


# Unbind VTconsoles
echo 0 > /sys/class/vtconsole/vtcon0/bind
echo 0 > /sys/class/vtconsole/vtcon1/bind

# Unload AMD driver FIRST
modprobe -r amdgpu

## Avoid a Race condition by waiting 2 seconds. This can be calibrated to be
shorter or longer if required for your system
sleep 2

## Unbind the GPU from display driver
virsh nodedev-detach pci_0000_03_00_0
virsh nodedev-detach pci_0000_03_00_1

# Detach USB Controller
virsh nodedev-detach pci_0000_00_14_0

## Load VFIO Kernel Module
modprobe vfio-pci

******************************************



hooks script revert for refernce:
script location:
/etc/libvirt/hooks/qemu.d/Window11-Passthrough/release/end/revert.sh

******************************************

#!/bin/bash
set -x

# === Rebind USB Controller Manually ===
echo 0000:00:14.0 > /sys/bus/pci/devices/0000:00:14.0/driver/unbind
echo xhci_hcd > /sys/bus/pci/devices/0000:00:14.0/driver_override
echo 0000:00:14.0 > /sys/bus/pci/drivers_probe
echo > /sys/bus/pci/devices/0000:00:14.0/driver_override

# Re-Bind GPU to Nvidia Driver
virsh nodedev-reattach pci_0000_03_00_1
virsh nodedev-reattach pci_0000_03_00_0

# Reload AMD GPU modules
modprobe amdgpu

# Rebind VT consoles
echo 1 > /sys/class/vtconsole/vtcon0/bind
# Some machines might have more than 1 virtual console. Add a line for each
corresponding VTConsole
echo 1 > /sys/class/vtconsole/vtcon1/bind

#echo "efi-framebuffer.0" > /sys/bus/platform/drivers/efi-framebuffer/bind

# Restart Display Manager
systemctl start display-manager.service

******************************************


-- Package-specific info:
** Version:
Linux version 6.12.74+deb13+1-amd64 ([email protected]) 
(x86_64-linux-gnu-gcc-14 (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for 
Debian) 2.44) #1 SMP PREEMPT_DYNAMIC Debian 6.12.74-2 (2026-03-08)

** Command line:
root=UUID=a7b8cd29-7066-4059-a8ed-276c6f0d6767 ro rootflags=subvol=@ 
intel_iommu=on iommu=pt video=efifb:off initrd=\EFI\debian\initrdOld.img

** Not tainted

** Kernel log:
[   13.841156] r8169 0000:07:00.0 enp7s0: Link is Up - 100Mbps/Full 
(downshifted) - flow control rx
[   15.532691] [UFW BLOCK] IN=enp7s0 OUT=enp7s0 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.102 LEN=336 TOS=0x00 PREC=0x00 TTL=63 ID=57802 PROTO=UDP SPT=67 
DPT=68 LEN=316 
[   17.016459] systemd-journald[479]: File 
/var/log/journal/f60d143e33394b45adab3545110a9f5b/user-1000.journal corrupted 
or uncleanly shut down, renaming and replacing.
[   31.585923] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=33287 PROTO=2 
[   51.566257] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=34390 PROTO=2 
[   71.626536] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=35325 PROTO=2 
[   84.659219] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=43088 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[   84.686323] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.102 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=58453 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[   91.707069] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=36317 PROTO=2 
[  111.767297] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=38055 PROTO=2 
[  131.847796] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=38307 PROTO=2 
[  151.911232] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=39273 PROTO=2 
[  172.038645] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=40942 PROTO=2 
[  176.488435] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=46354 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  176.518408] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.102 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=62909 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  191.988940] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=42570 PROTO=2 
[  212.176680] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=44472 PROTO=2 
[  232.149762] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=44559 PROTO=2 
[  252.290232] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=46104 PROTO=2 
[  266.390297] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=50000 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  266.420290] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.102 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=3474 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  272.290795] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=48084 PROTO=2 
[  292.361110] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=49255 PROTO=2 
[  312.401467] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=49856 PROTO=2 
[  332.492003] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=51059 PROTO=2 
[  352.552426] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=52482 PROTO=2 
[  356.452374] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=55454 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  356.482351] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.102 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=10845 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  372.673701] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=53359 PROTO=2 
[  392.733251] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=54929 PROTO=2 
[  412.683703] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=55751 PROTO=2 
[  432.834303] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=57659 PROTO=2 
[  447.024481] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=62217 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[  452.894709] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=57945 PROTO=2 
[  472.935097] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=58110 PROTO=2 
[  492.985474] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=59958 PROTO=2 
[  513.095901] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=60754 PROTO=2 
[  533.169046] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=61778 PROTO=2 
[  553.176785] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=62802 PROTO=2 
[  573.297144] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=63855 PROTO=2 
[  593.332228] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=64025 PROTO=2 
[  613.348155] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=64292 PROTO=2 
[  633.458524] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=65365 PROTO=2 
[  653.528934] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=59 PROTO=2 
[  673.609391] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=306 PROTO=2 
[  693.589750] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=1369 PROTO=2 
[  713.730263] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=2522 PROTO=2 
[  733.750585] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=4074 PROTO=2 
[  753.841161] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=5965 PROTO=2 
[  773.881382] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=7465 PROTO=2 
[  793.951961] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=9212 PROTO=2 
[  814.002380] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=10112 PROTO=2 
[  834.142741] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=10274 PROTO=2 
[  854.223180] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=10894 PROTO=2 
[  874.263765] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=12098 PROTO=2 
[  894.284163] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=12175 PROTO=2 
[  914.294986] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=13159 PROTO=2 
[  934.375034] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=15059 PROTO=2 
[  954.535410] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=15474 PROTO=2 
[  974.495804] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=16862 PROTO=2 
[  994.566179] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=17426 PROTO=2 
[ 1014.626609] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=18398 PROTO=2 
[ 1034.679856] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=19693 PROTO=2 
[ 1054.767542] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=19926 PROTO=2 
[ 1074.878128] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=20440 PROTO=2 
[ 1094.918402] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=22385 PROTO=2 
[ 1114.948767] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=23877 PROTO=2 
[ 1135.099187] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=25083 PROTO=2 
[ 1155.149804] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=25381 PROTO=2 
[ 1172.279739] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=23323 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[ 1195.210523] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=27414 PROTO=2 
[ 1215.281032] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=28676 PROTO=2 
[ 1235.381415] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=29090 PROTO=2 
[ 1255.411818] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=29243 PROTO=2 
[ 1275.532418] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=29344 PROTO=2 
[ 1295.564627] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=30130 PROTO=2 
[ 1315.593091] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=30688 PROTO=2 
[ 1335.613469] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=31088 PROTO=2 
[ 1353.273892] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=31495 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[ 1375.804357] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=34773 PROTO=2 
[ 1395.794915] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=35170 PROTO=2 
[ 1415.935244] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=35577 PROTO=2 
[ 1435.955705] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=36253 PROTO=2 
[ 1456.016177] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=36367 PROTO=2 
[ 1476.095813] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=36501 PROTO=2 
[ 1496.177155] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=38109 PROTO=2 
[ 1516.267889] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=38277 PROTO=2 
[ 1534.617634] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=42958 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[ 1556.298265] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=40227 PROTO=2 
[ 1576.358659] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=41316 PROTO=2 
[ 1596.419175] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=41556 PROTO=2 
[ 1616.569709] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=42594 PROTO=2 
[ 1636.570027] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=44256 PROTO=2 
[ 1656.640519] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=44774 PROTO=2 
[ 1676.670812] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=46619 PROTO=2 
[ 1696.782290] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=47767 PROTO=2 
[ 1715.011691] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=fc:34:97:bc:3a:a3:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 
DST=192.168.29.103 LEN=29 TOS=0x00 PREC=0x00 TTL=64 ID=50152 DF PROTO=UDP 
SPT=34253 DPT=7 LEN=9 
[ 1736.962205] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=50467 PROTO=2 
[ 1757.052763] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=51086 PROTO=2 
[ 1777.042958] [UFW BLOCK] IN=enp7s0 OUT= 
MAC=01:00:5e:00:00:01:f0:ed:b8:39:62:1c:08:00 SRC=192.168.29.1 DST=224.0.0.1 
LEN=36 TOS=0x00 PREC=0xC0 TTL=1 ID=51861 PROTO=2 

** Model information
sys_vendor: ASUS
product_name: System Product Name
product_version: System Version
chassis_vendor: Default string
chassis_version: Default string
bios_vendor: American Megatrends Inc.
bios_version: 2001
board_vendor: ASUSTeK COMPUTER INC.
board_name: TUF GAMING B560M-PLUS WIFI
board_version: Rev 1.xx

** Configuration for modprobe:
blacklist arkfb
blacklist aty128fb
blacklist atyfb
blacklist radeonfb
blacklist cirrusfb
blacklist cyber2000fb
blacklist kyrofb
blacklist matroxfb_base
blacklist mb862xxfb
blacklist neofb
blacklist pm2fb
blacklist pm3fb
blacklist s3fb
blacklist savagefb
blacklist sisfb
blacklist tdfxfb
blacklist tridentfb
blacklist vt8623fb
options snd_pcsp index=-2
options cx88_alsa index=-2
options snd_atiixp_modem index=-2
options snd_intel8x0m index=-2
options snd_via82xx_modem index=-2
options bonding max_bonds=0
options dummy numdummies=0
options ifb numifbs=0

** Loaded modules:
snd_seq_dummy
snd_hrtimer
snd_seq
snd_seq_device
xt_CHECKSUM
xt_MASQUERADE
nft_chain_nat
nf_nat
bridge
rfcomm
cmac
algif_hash
algif_skcipher
af_alg
qrtr
8021q
garp
stp
bnep
mrp
llc
binfmt_misc
ip6t_REJECT
nf_reject_ipv6
xt_hl
ip6t_rt
ipt_REJECT
nf_reject_ipv4
xt_LOG
nf_log_syslog
nft_limit
xt_limit
xt_addrtype
xt_tcpudp
xt_conntrack
nf_conntrack
nf_defrag_ipv6
nf_defrag_ipv4
nft_compat
nf_tables
nls_iso8859_1
nls_cp437
vfat
fat
snd_sof_pci_intel_tgl
snd_sof_pci_intel_cnl
snd_sof_intel_hda_generic
soundwire_intel
soundwire_generic_allocation
soundwire_cadence
snd_sof_intel_hda_common
intel_rapl_msr
snd_soc_hdac_hda
intel_rapl_common
snd_sof_intel_hda_mlink
snd_sof_intel_hda
snd_sof_pci
intel_uncore_frequency
snd_sof_xtensa_dsp
intel_uncore_frequency_common
x86_pkg_temp_thermal
snd_sof
intel_powerclamp
iwlmvm
coretemp
snd_sof_utils
snd_soc_acpi_intel_match
kvm_intel
snd_soc_acpi
soundwire_bus
snd_soc_avs
mac80211
snd_soc_hda_codec
kvm
snd_hda_ext_core
snd_hda_codec_realtek
snd_soc_core
snd_hda_codec_generic
snd_hda_scodec_component
snd_hda_codec_hdmi
snd_compress
snd_pcm_dmaengine
libarc4
crct10dif_pclmul
btusb
snd_hda_intel
ghash_clmulni_intel
btrtl
sha512_ssse3
snd_intel_dspcfg
iwlwifi
btintel
sha256_ssse3
snd_intel_sdw_acpi
sha1_ssse3
btbcm
snd_hda_codec
aesni_intel
btmtk
gf128mul
asus_nb_wmi
mei_hdcp
eeepc_wmi
mei_pxp
snd_hda_core
crypto_simd
snd_hwdep
bluetooth
cfg80211
asus_wmi
cryptd
intel_cstate
sparse_keymap
snd_pcm
platform_profile
battery
intel_uncore
wmi_bmof
mei_me
snd_timer
ecdh_generic
snd
pcspkr
ee1004
mei
rfkill
soundcore
joydev
intel_pmc_core
intel_vsec
pmt_telemetry
pmt_class
acpi_tad
acpi_pad
sg
evdev
dm_mod
efi_pstore
configfs
nfnetlink
efivarfs
ip_tables
x_tables
autofs4
btrfs
blake2b_generic
xor
raid6_pq
libcrc32c
crc32c_generic
vfio_pci
vfio_pci_core
irqbypass
vfio_iommu_type1
vfio
amdgpu
hid_generic
usbhid
hid
amdxcp
drm_exec
gpu_sched
sd_mod
drm_buddy
i2c_algo_bit
drm_suballoc_helper
drm_display_helper
cec
rc_core
drm_ttm_helper
ttm
drm_kms_helper
ahci
libahci
xhci_pci
xhci_hcd
libata
drm
r8169
iTCO_wdt
nvme
intel_pmc_bxt
iTCO_vendor_support
usbcore
realtek
watchdog
mdio_devres
scsi_mod
nvme_core
libphy
intel_lpss_pci
i2c_i801
crc32_pclmul
intel_lpss
crc32c_intel
i2c_smbus
video
nvme_auth
idma64
crc16
usb_common
scsi_common
fan
wmi
button

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation Device [8086:4c53] (rev 01)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0
        IOMMU group: 0
        Expansion ROM at <ignored>
        Kernel driver in use: icl_uncore

00:01.0 PCI bridge [0604]: Intel Corporation Device [8086:4c01] (rev 01) 
(prog-if 00 [Normal decode])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 121
        IOMMU group: 1
        Bus: primary=00, secondary=01, subordinate=03, sec-latency=0
        I/O behind bridge: 6000-6fff [size=4K] [16-bit]
        Memory behind bridge: a1700000-a19fffff [size=3M] [32-bit]
        Prefetchable memory behind bridge: 90000000-a01fffff [size=258M] 
[32-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:06.0 PCI bridge [0604]: Intel Corporation Device [8086:4c09] (rev 01) 
(prog-if 00 [Normal decode])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin D routed to IRQ 122
        IOMMU group: 2
        Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
        I/O behind bridge: [disabled] [16-bit]
        Memory behind bridge: a1c00000-a1cfffff [size=1M] [32-bit]
        Prefetchable memory behind bridge: [disabled] [64-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:14.0 USB controller [0c03]: Intel Corporation Tiger Lake-H USB 3.2 Gen 2x1 
xHCI Host Controller [8086:43ed] (rev 11) (prog-if 30 [XHCI])
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 155
        IOMMU group: 3
        Region 0: Memory at a1d00000 (64-bit, non-prefetchable) [size=64K]
        Capabilities: <access denied>
        Kernel driver in use: xhci_hcd
        Kernel modules: xhci_pci

00:14.2 RAM memory [0500]: Intel Corporation Tiger Lake-H Shared SRAM 
[8086:43ef] (rev 11)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        IOMMU group: 3
        Region 0: Memory at a1d18000 (64-bit, non-prefetchable) [disabled] 
[size=16K]
        Region 2: Memory at a1d23000 (64-bit, non-prefetchable) [disabled] 
[size=4K]
        Capabilities: <access denied>

00:14.3 Network controller [0280]: Intel Corporation Tiger Lake PCH CNVi WiFi 
[8086:43f0] (rev 11)
        DeviceName: Onboard - Ethernet
        Subsystem: Intel Corporation Wi-Fi 6 AX201 160MHz [8086:0074]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 16
        IOMMU group: 4
        Region 0: Memory at a1d14000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: <access denied>
        Kernel driver in use: iwlwifi
        Kernel modules: iwlwifi

00:15.0 Serial bus controller [0c80]: Intel Corporation Tiger Lake-H Serial IO 
I2C Controller #0 [8086:43e8] (rev 11)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 27
        IOMMU group: 5
        Region 0: Memory at a1d22000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss
        Kernel modules: intel_lpss_pci

00:16.0 Communication controller [0780]: Intel Corporation Tiger Lake-H 
Management Engine Interface [8086:43e0] (rev 11)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 165
        IOMMU group: 6
        Region 0: Memory at a1d21000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: mei_me
        Kernel modules: mei_me

00:17.0 SATA controller [0106]: Intel Corporation Device [8086:43d2] (rev 11) 
(prog-if 01 [AHCI 1.0])
        DeviceName: Onboard - SATA
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 163
        IOMMU group: 7
        Region 0: Memory at a1d1c000 (32-bit, non-prefetchable) [size=8K]
        Region 1: Memory at a1d20000 (32-bit, non-prefetchable) [size=256]
        Region 2: I/O ports at 7050 [size=8]
        Region 3: I/O ports at 7040 [size=4]
        Region 4: I/O ports at 7020 [size=32]
        Region 5: Memory at a1d1f000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: <access denied>
        Kernel driver in use: ahci
        Kernel modules: ahci

00:1b.0 PCI bridge [0604]: Intel Corporation Device [8086:43c4] (rev 11) 
(prog-if 00 [Normal decode])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 123
        IOMMU group: 8
        Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
        I/O behind bridge: [disabled] [16-bit]
        Memory behind bridge: a1b00000-a1bfffff [size=1M] [32-bit]
        Prefetchable memory behind bridge: [disabled] [64-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1c.0 PCI bridge [0604]: Intel Corporation Tiger Lake-H PCI Express Root Port 
#5 [8086:43bc] (rev 11) (prog-if 00 [Normal decode])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin ? routed to IRQ 124
        IOMMU group: 9
        Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
        I/O behind bridge: 5000-5fff [size=4K] [16-bit]
        Memory behind bridge: a0d00000-a16fffff [size=10M] [32-bit]
        Prefetchable memory behind bridge: a1e00000-a1ffffff [size=2M] [32-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1c.7 PCI bridge [0604]: Intel Corporation Device [8086:43bf] (rev 11) 
(prog-if 00 [Normal decode])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin D routed to IRQ 125
        IOMMU group: 10
        Bus: primary=00, secondary=07, subordinate=07, sec-latency=0
        I/O behind bridge: 4000-4fff [size=4K] [16-bit]
        Memory behind bridge: a1a00000-a1afffff [size=1M] [32-bit]
        Prefetchable memory behind bridge: [disabled] [64-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1d.0 PCI bridge [0604]: Intel Corporation Tiger Lake-H PCI Express Root Port 
#9 [8086:43b0] (rev 11) (prog-if 00 [Normal decode])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin ? routed to IRQ 126
        IOMMU group: 11
        Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
        I/O behind bridge: 3000-3fff [size=4K] [16-bit]
        Memory behind bridge: a0300000-a0cfffff [size=10M] [32-bit]
        Prefetchable memory behind bridge: a2000000-a21fffff [size=2M] [32-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1f.0 ISA bridge [0601]: Intel Corporation B560 LPC/eSPI Controller 
[8086:4387] (rev 11)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0
        IOMMU group: 12

00:1f.3 Audio device [0403]: Intel Corporation Tiger Lake-H HD Audio Controller 
[8086:43c8] (rev 11)
        DeviceName: Onboard - Sound
        Subsystem: ASUSTeK Computer Inc. Device [1043:881a]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 32, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 180
        IOMMU group: 12
        Region 0: Memory at a1d10000 (64-bit, non-prefetchable) [size=16K]
        Region 4: Memory at a0200000 (64-bit, non-prefetchable) [size=1M]
        Capabilities: <access denied>
        Kernel driver in use: snd_hda_intel
        Kernel modules: snd_hda_intel, snd_soc_avs, snd_sof_pci_intel_tgl

00:1f.4 SMBus [0c05]: Intel Corporation Tiger Lake-H SMBus Controller 
[8086:43a3] (rev 11)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin A routed to IRQ 16
        IOMMU group: 12
        Region 0: Memory at a1d1e000 (64-bit, non-prefetchable) [size=256]
        Region 4: I/O ports at efa0 [size=32]
        Kernel driver in use: i801_smbus
        Kernel modules: i2c_i801

00:1f.5 Serial bus controller [0c80]: Intel Corporation Tiger Lake-H SPI 
Controller [8086:43a4] (rev 11)
        DeviceName: Onboard - Other
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        IOMMU group: 12
        Region 0: Memory at a1d24000 (32-bit, non-prefetchable) [size=4K]

01:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 10 XL 
Upstream Port of PCI Express Switch [1002:1478] (rev c1) (prog-if 00 [Normal 
decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 16
        IOMMU group: 13
        Region 0: Memory at a1900000 (32-bit, non-prefetchable) [size=16K]
        Bus: primary=01, secondary=02, subordinate=03, sec-latency=0
        I/O behind bridge: 6000-6fff [size=4K] [16-bit]
        Memory behind bridge: a1700000-a18fffff [size=2M] [32-bit]
        Prefetchable memory behind bridge: 90000000-a01fffff [size=258M] 
[32-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

02:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 10 XL 
Downstream Port of PCI Express Switch [1002:1479] (prog-if 00 [Normal decode])
        Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Navi 10 XL Downstream 
Port of PCI Express Switch [1002:1479]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 127
        IOMMU group: 14
        Bus: primary=02, secondary=03, subordinate=03, sec-latency=0
        I/O behind bridge: 6000-6fff [size=4K] [16-bit]
        Memory behind bridge: a1700000-a18fffff [size=2M] [32-bit]
        Prefetchable memory behind bridge: 90000000-a01fffff [size=258M] 
[32-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

03:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
[AMD/ATI] Navi 23 [Radeon RX 6650 XT / 6700S / 6800S] [1002:73ef] (rev c1) 
(prog-if 00 [VGA controller])
        Subsystem: Micro-Star International Co., Ltd. [MSI] RX 6650XT MECH 2X 
[1462:5027]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 164
        IOMMU group: 15
        Region 0: Memory at 90000000 (64-bit, prefetchable) [size=256M]
        Region 2: Memory at a0000000 (64-bit, prefetchable) [size=2M]
        Region 4: I/O ports at 6000 [size=256]
        Region 5: Memory at a1700000 (32-bit, non-prefetchable) [size=1M]
        Expansion ROM at a1800000 [disabled] [size=128K]
        Capabilities: <access denied>
        Kernel driver in use: amdgpu
        Kernel modules: amdgpu

03:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 21/23 
HDMI/DP Audio Controller [1002:ab28]
        Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Navi 21/23 HDMI/DP 
Audio Controller [1002:ab28]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin B routed to IRQ 181
        IOMMU group: 16
        Region 0: Memory at a1820000 (32-bit, non-prefetchable) [size=16K]
        Capabilities: <access denied>
        Kernel driver in use: snd_hda_intel
        Kernel modules: snd_hda_intel

04:00.0 Non-Volatile memory controller [0108]: Sandisk Corp WD Green SN350 
240GB (DRAM-less) / SN560E NVMe SSD [15b7:5019] (rev 01) (prog-if 02 [NVM 
Express])
        Subsystem: Sandisk Corp WD Green SN350 240GB (DRAM-less) / SN560E NVMe 
SSD [15b7:5019]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 16
        IOMMU group: 17
        Region 0: Memory at a1c00000 (64-bit, non-prefetchable) [size=16K]
        Region 4: Memory at a1c04000 (64-bit, non-prefetchable) [size=256]
        Capabilities: <access denied>
        Kernel driver in use: nvme
        Kernel modules: nvme

05:00.0 Non-Volatile memory controller [0108]: Sandisk Corp SanDisk Ultra 3D / 
WD Blue SN570 NVMe SSD (DRAM-less) [15b7:501a] (prog-if 02 [NVM Express])
        Subsystem: Sandisk Corp SanDisk Ultra 3D / WD Blue SN570 NVMe SSD 
(DRAM-less) [15b7:501a]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 16
        IOMMU group: 18
        Region 0: Memory at a1b00000 (64-bit, non-prefetchable) [size=16K]
        Region 4: Memory at a1b04000 (64-bit, non-prefetchable) [size=256]
        Capabilities: <access denied>
        Kernel driver in use: nvme
        Kernel modules: nvme

07:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8125 
2.5GbE Controller [10ec:8125] (rev 05)
        Subsystem: ASUSTeK Computer Inc. Device [1043:87d7]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 19
        IOMMU group: 19
        Region 0: I/O ports at 4000 [size=256]
        Region 2: Memory at a1a00000 (64-bit, non-prefetchable) [size=64K]
        Region 4: Memory at a1a10000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: <access denied>
        Kernel driver in use: r8169
        Kernel modules: r8169


** USB devices:
not available


-- System Information:
Debian Release: 13.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.12.74+deb13+1-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages linux-image-6.12.74+deb13+1-amd64 depends on:
ii  initramfs-tools [linux-initramfs-tool]  0.148.3
ii  kmod                                    34.2-2
ii  linux-base                              4.12.1

Versions of packages linux-image-6.12.74+deb13+1-amd64 recommends:
ii  apparmor  4.1.0-1

Versions of packages linux-image-6.12.74+deb13+1-amd64 suggests:
pn  debian-kernel-handbook               <none>
pn  firmware-linux-free                  <none>
pn  grub-pc | grub-efi-amd64 | extlinux  <none>
pn  linux-doc-6.12                       <none>

Versions of packages linux-image-6.12.74+deb13+1-amd64 is related to:
ii  firmware-amd-graphics      20250410-2
pn  firmware-atheros           <none>
pn  firmware-bnx2              <none>
pn  firmware-bnx2x             <none>
pn  firmware-brcm80211         <none>
pn  firmware-cavium            <none>
pn  firmware-cirrus            <none>
pn  firmware-intel-graphics    <none>
pn  firmware-intel-misc        <none>
pn  firmware-intel-sound       <none>
pn  firmware-ipw2x00           <none>
pn  firmware-ivtv              <none>
ii  firmware-iwlwifi           20250410-2
pn  firmware-libertas          <none>
pn  firmware-marvell-prestera  <none>
pn  firmware-mediatek          <none>
pn  firmware-misc-nonfree      <none>
pn  firmware-myricom           <none>
pn  firmware-netronome         <none>
pn  firmware-netxen            <none>
pn  firmware-nvidia-graphics   <none>
pn  firmware-qcom-soc          <none>
pn  firmware-qlogic            <none>
ii  firmware-realtek           20250410-2
pn  firmware-samsung           <none>
pn  firmware-siano             <none>
pn  firmware-ti-connectivity   <none>
pn  xen-hypervisor             <none>

-- no debconf information

Reply via email to