From e9bfe6c30d69b33ea89edb8b7240fef0e7336735 Mon Sep 17 00:00:00 2001 From: Peter Jung Date: Sun, 10 May 2026 19:14:43 +0200 Subject: [PATCH] profiles: add thermald for mobile hybrid Intel CPUs --- profiles/pci/power_management/profiles.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/profiles/pci/power_management/profiles.toml b/profiles/pci/power_management/profiles.toml index 7484cbd..42999cb 100644 --- a/profiles/pci/power_management/profiles.toml +++ b/profiles/pci/power_management/profiles.toml @@ -13,3 +13,20 @@ post_install = """ post_remove = """ systemctl disable intel_lpmd.service """ + +[thermald] +desc = 'Intel Thermal Daemon for supported mobile hybrid Intel CPUs' +class_ids = "0600" +vendor_ids = "8086" +device_ids = "*" +cpu_family = "6" +cpu_models = "151 154 183 186 191 170 172 189 204" +chassis_types = "8 9 10 11" +priority = 4 +packages = 'thermald' +post_install = """ + systemctl enable --now thermald.service +""" +post_remove = """ + systemctl disable thermald.service +"""