From 1b38ba1cd534d11e89f21c92ccaa6afce6bf1a33 Mon Sep 17 00:00:00 2001 From: Mikhail Malyshev Date: Wed, 11 Sep 2024 13:55:59 +0200 Subject: [PATCH] Blacklist wdat_wdt for Siemens IPC227G This device has two WDs and EVE supports only one so disable ACPI WD Signed-off-by: Mikhail Malyshev (cherry picked from commit 7bd7ab931b82899d150f29838f809890f602d715) --- pkg/grub/rootfs.cfg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/grub/rootfs.cfg b/pkg/grub/rootfs.cfg index 575ad53044..a7f1228c47 100644 --- a/pkg/grub/rootfs.cfg +++ b/pkg/grub/rootfs.cfg @@ -210,6 +210,12 @@ function set_x86_64_baremetal { set_global dom0_platform_tweaks "$dom0_platform_tweaks xr_usb_serial_common.mode=2h,3h" fi fi + if [ "$smb_vendor" = "SIEMENS AG" ]; then + smbios -t 1 -s 5 --set smb_product + if [ "$smb_product" = "SIMATIC IPC227G" ]; then + set_global dom0_platform_tweaks "$dom0_platform_tweaks modprobe.blacklist=wdat_wdt" + fi + fi set_global ucode /boot/ucode.img }