* [PATCH v3 00/11] Crashlog Type1 Version2 support
@ 2025-06-05 18:44 Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage Michael J. Ruhl
` (19 more replies)
0 siblings, 20 replies; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
The Intel BMG GPU device supports the crashlog feature, which was
exposed in an Xe driver patch (drm/xe/vsec: Support BMG devices),
however the version of crashlog used by the BMG GPU does not have
a supporing PMT driver.
Update the PMT crashlog driver to support the BMG crashlog feature.
v2:
- fix a misconfig for the crashlog DVSEC info in the xe driver
- address review comments
v3:
- re-order bug fix patches for stable
- added re-order trigger logic patch
- added helper patch to address repeated code patterns
- address review comments
Michael J. Ruhl (11):
platform/x86/intel: refactor endpoint usage
platform/x86/intel/pmt: crashlog binary file endpoint
drm/xe: Correct BMG VSEC header sizing
platform/x86/intel/pmt: white space cleanup
platform/x86/intel/pmt: use guard(mutex)
platform/x86/intel/pmt: re-order trigger logic
platform/x86/intel/pmt: correct types
platform/x86/intel/pmt: decouple sysfs and namespace
platform/x86/intel/pmt: add register access helpers
platform/x86/intel/pmt: use a version struct
platform/x86/intel/pmt: support BMG crashlog
drivers/gpu/drm/xe/xe_vsec.c | 20 +-
drivers/platform/x86/intel/pmc/core.c | 3 +-
drivers/platform/x86/intel/pmc/core.h | 4 +-
drivers/platform/x86/intel/pmc/core_ssram.c | 2 +-
drivers/platform/x86/intel/pmt/class.c | 57 ++-
drivers/platform/x86/intel/pmt/class.h | 23 +-
drivers/platform/x86/intel/pmt/crashlog.c | 477 ++++++++++++++++----
drivers/platform/x86/intel/pmt/telemetry.c | 51 +--
drivers/platform/x86/intel/pmt/telemetry.h | 23 +-
9 files changed, 483 insertions(+), 177 deletions(-)
--
2.49.0
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 17:54 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 02/11] platform/x86/intel/pmt: crashlog binary file endpoint Michael J. Ruhl
` (18 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl, stable
The use of an endpoint has introduced a dependency in all class/pmt
drivers to have an endpoint allocated.
The telemetry driver has this allocation, the crashlog does not.
The current usage is very telemetry focused, but should be common code.
With this in mind:
rename the struct telemetry_endpoint to struct class_endpoint,
refactor the common endpoint code to be in the class.c module
Fixes: 416eeb2e1fc7 ("platform/x86/intel/pmt: telemetry: Export API to read telemetry")
Cc: <stable@vger.kernel.org>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmc/core.c | 3 +-
drivers/platform/x86/intel/pmc/core.h | 4 +-
drivers/platform/x86/intel/pmc/core_ssram.c | 2 +-
drivers/platform/x86/intel/pmt/class.c | 45 ++++++++++++++++++
drivers/platform/x86/intel/pmt/class.h | 21 +++++++--
drivers/platform/x86/intel/pmt/telemetry.c | 51 ++++-----------------
drivers/platform/x86/intel/pmt/telemetry.h | 23 ++++------
7 files changed, 84 insertions(+), 65 deletions(-)
diff --git a/drivers/platform/x86/intel/pmc/core.c b/drivers/platform/x86/intel/pmc/core.c
index 7a1d11f2914f..805f56665d1d 100644
--- a/drivers/platform/x86/intel/pmc/core.c
+++ b/drivers/platform/x86/intel/pmc/core.c
@@ -29,6 +29,7 @@
#include <asm/tsc.h>
#include "core.h"
+#include "../pmt/class.h"
#include "../pmt/telemetry.h"
/* Maximum number of modes supported by platfoms that has low power mode capability */
@@ -1198,7 +1199,7 @@ int get_primary_reg_base(struct pmc *pmc)
void pmc_core_punit_pmt_init(struct pmc_dev *pmcdev, u32 guid)
{
- struct telem_endpoint *ep;
+ struct class_endpoint *ep;
struct pci_dev *pcidev;
pcidev = pci_get_domain_bus_and_slot(0, 0, PCI_DEVFN(10, 0));
diff --git a/drivers/platform/x86/intel/pmc/core.h b/drivers/platform/x86/intel/pmc/core.h
index 945a1c440cca..1c12ea7c3ce3 100644
--- a/drivers/platform/x86/intel/pmc/core.h
+++ b/drivers/platform/x86/intel/pmc/core.h
@@ -16,7 +16,7 @@
#include <linux/bits.h>
#include <linux/platform_device.h>
-struct telem_endpoint;
+struct class_endpoint;
#define SLP_S0_RES_COUNTER_MASK GENMASK(31, 0)
@@ -432,7 +432,7 @@ struct pmc_dev {
bool has_die_c6;
u32 die_c6_offset;
- struct telem_endpoint *punit_ep;
+ struct class_endpoint *punit_ep;
struct pmc_info *regmap_list;
};
diff --git a/drivers/platform/x86/intel/pmc/core_ssram.c b/drivers/platform/x86/intel/pmc/core_ssram.c
index 739569803017..3e670fc380a5 100644
--- a/drivers/platform/x86/intel/pmc/core_ssram.c
+++ b/drivers/platform/x86/intel/pmc/core_ssram.c
@@ -42,7 +42,7 @@ static u32 pmc_core_find_guid(struct pmc_info *list, const struct pmc_reg_map *m
static int pmc_core_get_lpm_req(struct pmc_dev *pmcdev, struct pmc *pmc)
{
- struct telem_endpoint *ep;
+ struct class_endpoint *ep;
const u8 *lpm_indices;
int num_maps, mode_offset = 0;
int ret, mode;
diff --git a/drivers/platform/x86/intel/pmt/class.c b/drivers/platform/x86/intel/pmt/class.c
index 7233b654bbad..bba552131bc2 100644
--- a/drivers/platform/x86/intel/pmt/class.c
+++ b/drivers/platform/x86/intel/pmt/class.c
@@ -76,6 +76,47 @@ int pmt_telem_read_mmio(struct pci_dev *pdev, struct pmt_callbacks *cb, u32 guid
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_read_mmio, "INTEL_PMT");
+/* Called when all users unregister and the device is removed */
+static void pmt_class_ep_release(struct kref *kref)
+{
+ struct class_endpoint *ep;
+
+ ep = container_of(kref, struct class_endpoint, kref);
+ kfree(ep);
+}
+
+void intel_pmt_release_endpoint(struct class_endpoint *ep)
+{
+ kref_put(&ep->kref, pmt_class_ep_release);
+}
+EXPORT_SYMBOL_NS_GPL(intel_pmt_release_endpoint, "INTEL_PMT");
+
+int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
+ struct intel_pmt_entry *entry)
+{
+ struct class_endpoint *ep;
+
+ ep = kzalloc(sizeof(*ep), GFP_KERNEL);
+ if (!ep)
+ return -ENOMEM;
+
+ ep->pcidev = ivdev->pcidev;
+ ep->header.access_type = entry->header.access_type;
+ ep->header.guid = entry->header.guid;
+ ep->header.base_offset = entry->header.base_offset;
+ ep->header.size = entry->header.size;
+ ep->base = entry->base;
+ ep->present = true;
+ ep->cb = ivdev->priv_data;
+
+ /* Endpoint lifetimes are managed by kref, not devres */
+ kref_init(&ep->kref);
+
+ entry->ep = ep;
+
+ return 0;
+}
+EXPORT_SYMBOL_NS_GPL(intel_pmt_add_endpoint, "INTEL_PMT");
/*
* sysfs
*/
@@ -97,6 +138,10 @@ intel_pmt_read(struct file *filp, struct kobject *kobj,
if (count > entry->size - off)
count = entry->size - off;
+ /* verify endpoint is available */
+ if (!entry->ep)
+ return -ENODEV;
+
count = pmt_telem_read_mmio(entry->ep->pcidev, entry->cb, entry->header.guid, buf,
entry->base, off, count);
diff --git a/drivers/platform/x86/intel/pmt/class.h b/drivers/platform/x86/intel/pmt/class.h
index b2006d57779d..d2d8f9e31c9d 100644
--- a/drivers/platform/x86/intel/pmt/class.h
+++ b/drivers/platform/x86/intel/pmt/class.h
@@ -9,8 +9,6 @@
#include <linux/err.h>
#include <linux/io.h>
-#include "telemetry.h"
-
/* PMT access types */
#define ACCESS_BARID 2
#define ACCESS_LOCAL 3
@@ -19,11 +17,19 @@
#define GET_BIR(v) ((v) & GENMASK(2, 0))
#define GET_ADDRESS(v) ((v) & GENMASK(31, 3))
+struct kref;
struct pci_dev;
-struct telem_endpoint {
+struct class_header {
+ u8 access_type;
+ u16 size;
+ u32 guid;
+ u32 base_offset;
+};
+
+struct class_endpoint {
struct pci_dev *pcidev;
- struct telem_header header;
+ struct class_header header;
struct pmt_callbacks *cb;
void __iomem *base;
bool present;
@@ -38,7 +44,7 @@ struct intel_pmt_header {
};
struct intel_pmt_entry {
- struct telem_endpoint *ep;
+ struct class_endpoint *ep;
struct intel_pmt_header header;
struct bin_attribute pmt_bin_attr;
struct kobject *kobj;
@@ -69,4 +75,9 @@ int intel_pmt_dev_create(struct intel_pmt_entry *entry,
struct intel_vsec_device *dev, int idx);
void intel_pmt_dev_destroy(struct intel_pmt_entry *entry,
struct intel_pmt_namespace *ns);
+
+int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
+ struct intel_pmt_entry *entry);
+void intel_pmt_release_endpoint(struct class_endpoint *ep);
+
#endif
diff --git a/drivers/platform/x86/intel/pmt/telemetry.c b/drivers/platform/x86/intel/pmt/telemetry.c
index ac3a9bdf5601..27d09867e6a3 100644
--- a/drivers/platform/x86/intel/pmt/telemetry.c
+++ b/drivers/platform/x86/intel/pmt/telemetry.c
@@ -18,6 +18,7 @@
#include <linux/overflow.h>
#include "class.h"
+#include "telemetry.h"
#define TELEM_SIZE_OFFSET 0x0
#define TELEM_GUID_OFFSET 0x4
@@ -93,48 +94,14 @@ static int pmt_telem_header_decode(struct intel_pmt_entry *entry,
return 0;
}
-static int pmt_telem_add_endpoint(struct intel_vsec_device *ivdev,
- struct intel_pmt_entry *entry)
-{
- struct telem_endpoint *ep;
-
- /* Endpoint lifetimes are managed by kref, not devres */
- entry->ep = kzalloc(sizeof(*(entry->ep)), GFP_KERNEL);
- if (!entry->ep)
- return -ENOMEM;
-
- ep = entry->ep;
- ep->pcidev = ivdev->pcidev;
- ep->header.access_type = entry->header.access_type;
- ep->header.guid = entry->header.guid;
- ep->header.base_offset = entry->header.base_offset;
- ep->header.size = entry->header.size;
- ep->base = entry->base;
- ep->present = true;
- ep->cb = ivdev->priv_data;
-
- kref_init(&ep->kref);
-
- return 0;
-}
-
static DEFINE_XARRAY_ALLOC(telem_array);
static struct intel_pmt_namespace pmt_telem_ns = {
.name = "telem",
.xa = &telem_array,
.pmt_header_decode = pmt_telem_header_decode,
- .pmt_add_endpoint = pmt_telem_add_endpoint,
+ .pmt_add_endpoint = intel_pmt_add_endpoint,
};
-/* Called when all users unregister and the device is removed */
-static void pmt_telem_ep_release(struct kref *kref)
-{
- struct telem_endpoint *ep;
-
- ep = container_of(kref, struct telem_endpoint, kref);
- kfree(ep);
-}
-
unsigned long pmt_telem_get_next_endpoint(unsigned long start)
{
struct intel_pmt_entry *entry;
@@ -155,7 +122,7 @@ unsigned long pmt_telem_get_next_endpoint(unsigned long start)
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_get_next_endpoint, "INTEL_PMT_TELEMETRY");
-struct telem_endpoint *pmt_telem_register_endpoint(int devid)
+struct class_endpoint *pmt_telem_register_endpoint(int devid)
{
struct intel_pmt_entry *entry;
unsigned long index = devid;
@@ -174,9 +141,9 @@ struct telem_endpoint *pmt_telem_register_endpoint(int devid)
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_register_endpoint, "INTEL_PMT_TELEMETRY");
-void pmt_telem_unregister_endpoint(struct telem_endpoint *ep)
+void pmt_telem_unregister_endpoint(struct class_endpoint *ep)
{
- kref_put(&ep->kref, pmt_telem_ep_release);
+ intel_pmt_release_endpoint(ep);
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_unregister_endpoint, "INTEL_PMT_TELEMETRY");
@@ -206,7 +173,7 @@ int pmt_telem_get_endpoint_info(int devid, struct telem_endpoint_info *info)
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_get_endpoint_info, "INTEL_PMT_TELEMETRY");
-int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count)
+int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32 count)
{
u32 offset, size;
@@ -226,7 +193,7 @@ int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count)
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_read, "INTEL_PMT_TELEMETRY");
-int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32 count)
+int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32 count)
{
u32 offset, size;
@@ -245,7 +212,7 @@ int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32 count)
}
EXPORT_SYMBOL_NS_GPL(pmt_telem_read32, "INTEL_PMT_TELEMETRY");
-struct telem_endpoint *
+struct class_endpoint *
pmt_telem_find_and_register_endpoint(struct pci_dev *pcidev, u32 guid, u16 pos)
{
int devid = 0;
@@ -279,7 +246,7 @@ static void pmt_telem_remove(struct auxiliary_device *auxdev)
for (i = 0; i < priv->num_entries; i++) {
struct intel_pmt_entry *entry = &priv->entry[i];
- kref_put(&entry->ep->kref, pmt_telem_ep_release);
+ pmt_telem_unregister_endpoint(entry->ep);
intel_pmt_dev_destroy(entry, &pmt_telem_ns);
}
mutex_unlock(&ep_lock);
diff --git a/drivers/platform/x86/intel/pmt/telemetry.h b/drivers/platform/x86/intel/pmt/telemetry.h
index d45af5512b4e..e987dd32a58a 100644
--- a/drivers/platform/x86/intel/pmt/telemetry.h
+++ b/drivers/platform/x86/intel/pmt/telemetry.h
@@ -2,6 +2,8 @@
#ifndef _TELEMETRY_H
#define _TELEMETRY_H
+#include "class.h"
+
/* Telemetry types */
#define PMT_TELEM_TELEMETRY 0
#define PMT_TELEM_CRASHLOG 1
@@ -9,16 +11,9 @@
struct telem_endpoint;
struct pci_dev;
-struct telem_header {
- u8 access_type;
- u16 size;
- u32 guid;
- u32 base_offset;
-};
-
struct telem_endpoint_info {
struct pci_dev *pdev;
- struct telem_header header;
+ struct class_header header;
};
/**
@@ -47,7 +42,7 @@ unsigned long pmt_telem_get_next_endpoint(unsigned long start);
* * endpoint - On success returns pointer to the telemetry endpoint
* * -ENXIO - telemetry endpoint not found
*/
-struct telem_endpoint *pmt_telem_register_endpoint(int devid);
+struct class_endpoint *pmt_telem_register_endpoint(int devid);
/**
* pmt_telem_unregister_endpoint() - Unregister a telemetry endpoint
@@ -55,7 +50,7 @@ struct telem_endpoint *pmt_telem_register_endpoint(int devid);
*
* Decrements the kref usage counter for the endpoint.
*/
-void pmt_telem_unregister_endpoint(struct telem_endpoint *ep);
+void pmt_telem_unregister_endpoint(struct class_endpoint *ep);
/**
* pmt_telem_get_endpoint_info() - Get info for an endpoint from its devid
@@ -80,8 +75,8 @@ int pmt_telem_get_endpoint_info(int devid, struct telem_endpoint_info *info);
* * endpoint - On success returns pointer to the telemetry endpoint
* * -ENXIO - telemetry endpoint not found
*/
-struct telem_endpoint *pmt_telem_find_and_register_endpoint(struct pci_dev *pcidev,
- u32 guid, u16 pos);
+struct class_endpoint *pmt_telem_find_and_register_endpoint(struct pci_dev *pcidev,
+ u32 guid, u16 pos);
/**
* pmt_telem_read() - Read qwords from counter sram using sample id
@@ -101,7 +96,7 @@ struct telem_endpoint *pmt_telem_find_and_register_endpoint(struct pci_dev *pcid
* * -EPIPE - The device was removed during the read. Data written
* but should be considered invalid.
*/
-int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count);
+int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32 count);
/**
* pmt_telem_read32() - Read qwords from counter sram using sample id
@@ -121,6 +116,6 @@ int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count);
* * -EPIPE - The device was removed during the read. Data written
* but should be considered invalid.
*/
-int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32 count);
+int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32 count);
#endif
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 02/11] platform/x86/intel/pmt: crashlog binary file endpoint
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 19:54 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing Michael J. Ruhl
` (17 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl, stable
Usage of the intel_pmt_read() for binary sysfs, requires an allocated
endpoint struct. The crashlog driver does not allocate the endpoint.
Without the ep, the crashlog usage causes the following NULL pointer
exception:
BUG: kernel NULL pointer dereference, address: 0000000000000000
Oops: Oops: 0000 [#1] SMP NOPTI
RIP: 0010:intel_pmt_read+0x3b/0x70 [pmt_class]
Code:
Call Trace:
<TASK>
? sysfs_kf_bin_read+0xc0/0xe0
kernfs_fop_read_iter+0xac/0x1a0
vfs_read+0x26d/0x350
ksys_read+0x6b/0xe0
__x64_sys_read+0x1d/0x30
x64_sys_call+0x1bc8/0x1d70
do_syscall_64+0x6d/0x110
Add the endpoint information to the crashlog driver to avoid the NULL
pointer exception.
Fixes: 416eeb2e1fc7 ("platform/x86/intel/pmt: telemetry: Export API to read telemetry")
Cc: <stable@vger.kernel.org>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index 6a9eb3c4b313..74ce199e59f0 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -252,6 +252,7 @@ static struct intel_pmt_namespace pmt_crashlog_ns = {
.xa = &crashlog_array,
.attr_grp = &pmt_crashlog_group,
.pmt_header_decode = pmt_crashlog_header_decode,
+ .pmt_add_endpoint = intel_pmt_add_endpoint,
};
/*
@@ -262,8 +263,12 @@ static void pmt_crashlog_remove(struct auxiliary_device *auxdev)
struct pmt_crashlog_priv *priv = auxiliary_get_drvdata(auxdev);
int i;
- for (i = 0; i < priv->num_entries; i++)
- intel_pmt_dev_destroy(&priv->entry[i].entry, &pmt_crashlog_ns);
+ for (i = 0; i < priv->num_entries; i++) {
+ struct intel_pmt_entry *entry = &priv->entry[i].entry;
+
+ intel_pmt_release_endpoint(entry->ep);
+ intel_pmt_dev_destroy(entry, &pmt_crashlog_ns);
+ }
}
static int pmt_crashlog_probe(struct auxiliary_device *auxdev,
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 02/11] platform/x86/intel/pmt: crashlog binary file endpoint Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 21:12 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 04/11] platform/x86/intel/pmt: white space cleanup Michael J. Ruhl
` (16 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
The intel_vsec_header information for the crashlog feature is
incorrect.
Update the VSEC header with correct sizing and count.
Since the crashlog entries are "merged" (num_entries = 2), the
separate capabilities entries must be merged as well.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/gpu/drm/xe/xe_vsec.c | 20 +++++---------------
1 file changed, 5 insertions(+), 15 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vsec.c b/drivers/gpu/drm/xe/xe_vsec.c
index 3e573b0b7ebd..67238fc57a4d 100644
--- a/drivers/gpu/drm/xe/xe_vsec.c
+++ b/drivers/gpu/drm/xe/xe_vsec.c
@@ -32,28 +32,18 @@ static struct intel_vsec_header bmg_telemetry = {
.offset = BMG_DISCOVERY_OFFSET,
};
-static struct intel_vsec_header bmg_punit_crashlog = {
- .length = 0x10,
+static struct intel_vsec_header bmg_crashlog = {
+ .length = 0x18,
.id = VSEC_ID_CRASHLOG,
- .num_entries = 1,
- .entry_size = 4,
+ .num_entries = 2,
+ .entry_size = 6,
.tbir = 0,
.offset = BMG_DISCOVERY_OFFSET + 0x60,
};
-static struct intel_vsec_header bmg_oobmsm_crashlog = {
- .length = 0x10,
- .id = VSEC_ID_CRASHLOG,
- .num_entries = 1,
- .entry_size = 4,
- .tbir = 0,
- .offset = BMG_DISCOVERY_OFFSET + 0x78,
-};
-
static struct intel_vsec_header *bmg_capabilities[] = {
&bmg_telemetry,
- &bmg_punit_crashlog,
- &bmg_oobmsm_crashlog,
+ &bmg_crashlog,
NULL
};
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 04/11] platform/x86/intel/pmt: white space cleanup
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (2 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 21:14 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex) Michael J. Ruhl
` (15 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
Noticed two white space issues; cleaned them.
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index 74ce199e59f0..e997fc48b9ce 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -143,7 +143,7 @@ enable_show(struct device *dev, struct device_attribute *attr, char *buf)
static ssize_t
enable_store(struct device *dev, struct device_attribute *attr,
- const char *buf, size_t count)
+ const char *buf, size_t count)
{
struct crashlog_entry *entry;
bool enabled;
@@ -177,7 +177,7 @@ trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
static ssize_t
trigger_store(struct device *dev, struct device_attribute *attr,
- const char *buf, size_t count)
+ const char *buf, size_t count)
{
struct crashlog_entry *entry;
bool trigger;
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (3 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 04/11] platform/x86/intel/pmt: white space cleanup Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 21:20 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 06/11] platform/x86/intel/pmt: re-order trigger logic Michael J. Ruhl
` (14 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
Update the mutex paths to use the new guard() mechanism.
With the removal of goto, do some minor cleanup of the current logic
path.
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 32 +++++++++++------------
1 file changed, 15 insertions(+), 17 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index e997fc48b9ce..94858bfb52f8 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -155,9 +155,9 @@ enable_store(struct device *dev, struct device_attribute *attr,
if (result)
return result;
- mutex_lock(&entry->control_mutex);
+ guard(mutex)(&entry->control_mutex);
+
pmt_crashlog_set_disable(&entry->entry, !enabled);
- mutex_unlock(&entry->control_mutex);
return count;
}
@@ -189,26 +189,24 @@ trigger_store(struct device *dev, struct device_attribute *attr,
if (result)
return result;
- mutex_lock(&entry->control_mutex);
+ guard(mutex)(&entry->control_mutex);
if (!trigger) {
pmt_crashlog_set_clear(&entry->entry);
- } else if (pmt_crashlog_complete(&entry->entry)) {
- /* we cannot trigger a new crash if one is still pending */
- result = -EEXIST;
- goto err;
- } else if (pmt_crashlog_disabled(&entry->entry)) {
- /* if device is currently disabled, return busy */
- result = -EBUSY;
- goto err;
- } else {
- pmt_crashlog_set_execute(&entry->entry);
+ return count;
}
- result = count;
-err:
- mutex_unlock(&entry->control_mutex);
- return result;
+ /* we cannot trigger a new crash if one is still pending */
+ if (pmt_crashlog_complete(&entry->entry))
+ return -EEXIST;
+
+ /* if device is currently disabled, return busy */
+ if (pmt_crashlog_disabled(&entry->entry))
+ return -EBUSY;
+
+ pmt_crashlog_set_execute(&entry->entry);
+
+ return count;
}
static DEVICE_ATTR_RW(trigger);
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 06/11] platform/x86/intel/pmt: re-order trigger logic
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (4 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex) Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 21:49 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 07/11] platform/x86/intel/pmt: correct types Michael J. Ruhl
` (13 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
Setting the clear bit or checking the complete bit before checking to
see if crashlog is disabled seems incorrect.
Check disable before accessing any other bits.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index 94858bfb52f8..aa3f57fbe018 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -191,6 +191,10 @@ trigger_store(struct device *dev, struct device_attribute *attr,
guard(mutex)(&entry->control_mutex);
+ /* if device is currently disabled, return busy */
+ if (pmt_crashlog_disabled(&entry->entry))
+ return -EBUSY;
+
if (!trigger) {
pmt_crashlog_set_clear(&entry->entry);
return count;
@@ -200,10 +204,6 @@ trigger_store(struct device *dev, struct device_attribute *attr,
if (pmt_crashlog_complete(&entry->entry))
return -EEXIST;
- /* if device is currently disabled, return busy */
- if (pmt_crashlog_disabled(&entry->entry))
- return -EBUSY;
-
pmt_crashlog_set_execute(&entry->entry);
return count;
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 07/11] platform/x86/intel/pmt: correct types
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (5 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 06/11] platform/x86/intel/pmt: re-order trigger logic Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 21:57 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 08/11] platform/x86/intel/pmt: decouple sysfs and namespace Michael J. Ruhl
` (12 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
A couple of auto variables do not match the return types of some of
the functions.
Update the mismatched types to match.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index aa3f57fbe018..a51923d0be72 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -136,7 +136,7 @@ static ssize_t
enable_show(struct device *dev, struct device_attribute *attr, char *buf)
{
struct intel_pmt_entry *entry = dev_get_drvdata(dev);
- int enabled = !pmt_crashlog_disabled(entry);
+ bool enabled = !pmt_crashlog_disabled(entry);
return sprintf(buf, "%d\n", enabled);
}
@@ -167,7 +167,7 @@ static ssize_t
trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
{
struct intel_pmt_entry *entry;
- int trigger;
+ bool trigger;
entry = dev_get_drvdata(dev);
trigger = pmt_crashlog_complete(entry);
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 08/11] platform/x86/intel/pmt: decouple sysfs and namespace
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (6 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 07/11] platform/x86/intel/pmt: correct types Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 09/11] platform/x86/intel/pmt: add register access helpers Michael J. Ruhl
` (11 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
The PMT namespace includes the crashlog sysfs attribute information.
Other crashlog version/types may need different sysfs attributes.
Coupling the attributes with the namespace blocks this usage.
Decouple sysfs attributes from the name space and add them to the
specific entry.
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/class.c | 12 ++++++------
drivers/platform/x86/intel/pmt/class.h | 2 +-
drivers/platform/x86/intel/pmt/crashlog.c | 3 ++-
3 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/class.c b/drivers/platform/x86/intel/pmt/class.c
index bba552131bc2..880baf02a985 100644
--- a/drivers/platform/x86/intel/pmt/class.c
+++ b/drivers/platform/x86/intel/pmt/class.c
@@ -329,8 +329,8 @@ static int intel_pmt_dev_register(struct intel_pmt_entry *entry,
entry->kobj = &dev->kobj;
- if (ns->attr_grp) {
- ret = sysfs_create_group(entry->kobj, ns->attr_grp);
+ if (entry->attr_grp) {
+ ret = sysfs_create_group(entry->kobj, entry->attr_grp);
if (ret)
goto fail_sysfs_create_group;
}
@@ -371,8 +371,8 @@ static int intel_pmt_dev_register(struct intel_pmt_entry *entry,
fail_add_endpoint:
sysfs_remove_bin_file(entry->kobj, &entry->pmt_bin_attr);
fail_ioremap:
- if (ns->attr_grp)
- sysfs_remove_group(entry->kobj, ns->attr_grp);
+ if (entry->attr_grp)
+ sysfs_remove_group(entry->kobj, entry->attr_grp);
fail_sysfs_create_group:
device_unregister(dev);
fail_dev_create:
@@ -414,8 +414,8 @@ void intel_pmt_dev_destroy(struct intel_pmt_entry *entry,
if (entry->size)
sysfs_remove_bin_file(entry->kobj, &entry->pmt_bin_attr);
- if (ns->attr_grp)
- sysfs_remove_group(entry->kobj, ns->attr_grp);
+ if (entry->attr_grp)
+ sysfs_remove_group(entry->kobj, entry->attr_grp);
device_unregister(dev);
xa_erase(ns->xa, entry->devid);
diff --git a/drivers/platform/x86/intel/pmt/class.h b/drivers/platform/x86/intel/pmt/class.h
index d2d8f9e31c9d..a44571c09253 100644
--- a/drivers/platform/x86/intel/pmt/class.h
+++ b/drivers/platform/x86/intel/pmt/class.h
@@ -47,6 +47,7 @@ struct intel_pmt_entry {
struct class_endpoint *ep;
struct intel_pmt_header header;
struct bin_attribute pmt_bin_attr;
+ const struct attribute_group *attr_grp;
struct kobject *kobj;
void __iomem *disc_table;
void __iomem *base;
@@ -60,7 +61,6 @@ struct intel_pmt_entry {
struct intel_pmt_namespace {
const char *name;
struct xarray *xa;
- const struct attribute_group *attr_grp;
int (*pmt_header_decode)(struct intel_pmt_entry *entry,
struct device *dev);
int (*pmt_add_endpoint)(struct intel_vsec_device *ivdev,
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index a51923d0be72..463b0ba4a842 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -241,6 +241,8 @@ static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry,
/* Size is measured in DWORDS, but accessor returns bytes */
header->size = GET_SIZE(readl(disc_table + SIZE_OFFSET));
+ entry->attr_grp = &pmt_crashlog_group;
+
return 0;
}
@@ -248,7 +250,6 @@ static DEFINE_XARRAY_ALLOC(crashlog_array);
static struct intel_pmt_namespace pmt_crashlog_ns = {
.name = "crashlog",
.xa = &crashlog_array,
- .attr_grp = &pmt_crashlog_group,
.pmt_header_decode = pmt_crashlog_header_decode,
.pmt_add_endpoint = intel_pmt_add_endpoint,
};
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 09/11] platform/x86/intel/pmt: add register access helpers
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (7 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 08/11] platform/x86/intel/pmt: decouple sysfs and namespace Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct Michael J. Ruhl
` (10 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
The control register is used in a read/modify/write pattern.
The status register is used in a read/check bit pattern.
Add helpers to eliminate common code.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 58 +++++++++++------------
1 file changed, 29 insertions(+), 29 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index 463b0ba4a842..318d7a21f00e 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -62,20 +62,40 @@ struct pmt_crashlog_priv {
/*
* I/O
*/
-static bool pmt_crashlog_complete(struct intel_pmt_entry *entry)
+#define SET true
+#define CLEAR false
+
+static void read_modify_write(struct intel_pmt_entry *entry, u32 bit, bool set)
{
- u32 control = readl(entry->disc_table + CONTROL_OFFSET);
+ u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
+
+ reg &= ~CRASHLOG_FLAG_TRIGGER_MASK;
+
+ if (set)
+ reg |= bit;
+ else
+ reg &= bit;
+
+ writel(reg, entry->disc_table + CONTROL_OFFSET);
+}
+
+static bool read_check(struct intel_pmt_entry *entry, u32 bit)
+{
+ u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
+
+ return !!(reg & bit);
+}
+static bool pmt_crashlog_complete(struct intel_pmt_entry *entry)
+{
/* return current value of the crashlog complete flag */
- return !!(control & CRASHLOG_FLAG_TRIGGER_COMPLETE);
+ return read_check(entry, CRASHLOG_FLAG_TRIGGER_COMPLETE);
}
static bool pmt_crashlog_disabled(struct intel_pmt_entry *entry)
{
- u32 control = readl(entry->disc_table + CONTROL_OFFSET);
-
/* return current value of the crashlog disabled flag */
- return !!(control & CRASHLOG_FLAG_DISABLE);
+ return read_check(entry, CRASHLOG_FLAG_DISABLE);
}
static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
@@ -96,37 +116,17 @@ static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
static void pmt_crashlog_set_disable(struct intel_pmt_entry *entry,
bool disable)
{
- u32 control = readl(entry->disc_table + CONTROL_OFFSET);
-
- /* clear trigger bits so we are only modifying disable flag */
- control &= ~CRASHLOG_FLAG_TRIGGER_MASK;
-
- if (disable)
- control |= CRASHLOG_FLAG_DISABLE;
- else
- control &= ~CRASHLOG_FLAG_DISABLE;
-
- writel(control, entry->disc_table + CONTROL_OFFSET);
+ read_modify_write(entry, CRASHLOG_FLAG_DISABLE, disable);
}
static void pmt_crashlog_set_clear(struct intel_pmt_entry *entry)
{
- u32 control = readl(entry->disc_table + CONTROL_OFFSET);
-
- control &= ~CRASHLOG_FLAG_TRIGGER_MASK;
- control |= CRASHLOG_FLAG_TRIGGER_CLEAR;
-
- writel(control, entry->disc_table + CONTROL_OFFSET);
+ read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_CLEAR, SET);
}
static void pmt_crashlog_set_execute(struct intel_pmt_entry *entry)
{
- u32 control = readl(entry->disc_table + CONTROL_OFFSET);
-
- control &= ~CRASHLOG_FLAG_TRIGGER_MASK;
- control |= CRASHLOG_FLAG_TRIGGER_EXECUTE;
-
- writel(control, entry->disc_table + CONTROL_OFFSET);
+ read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_EXECUTE, SET);
}
/*
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (8 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 09/11] platform/x86/intel/pmt: add register access helpers Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 22:57 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog Michael J. Ruhl
` (9 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
In preparation for supporting multiple crashlog versions, use a struct
to keep bit offset info for the status and control bits.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 176 ++++++++++++++--------
1 file changed, 112 insertions(+), 64 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index 318d7a21f00e..fe6563721886 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -22,21 +22,6 @@
/* Crashlog discovery header types */
#define CRASH_TYPE_OOBMSM 1
-/* Control Flags */
-#define CRASHLOG_FLAG_DISABLE BIT(28)
-
-/*
- * Bits 29 and 30 control the state of bit 31.
- *
- * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured.
- * Bit 30 will immediately trigger a crashlog to be generated, setting bit 31.
- * Bit 31 is the read-only status with a 1 indicating log is complete.
- */
-#define CRASHLOG_FLAG_TRIGGER_CLEAR BIT(29)
-#define CRASHLOG_FLAG_TRIGGER_EXECUTE BIT(30)
-#define CRASHLOG_FLAG_TRIGGER_COMPLETE BIT(31)
-#define CRASHLOG_FLAG_TRIGGER_MASK GENMASK(31, 28)
-
/* Crashlog Discovery Header */
#define CONTROL_OFFSET 0x0
#define GUID_OFFSET 0x4
@@ -48,10 +33,63 @@
/* size is in bytes */
#define GET_SIZE(v) ((v) * sizeof(u32))
+/*
+ * Type 1 Version 0
+ * status and control registers are combined.
+ *
+ * Bits 29 and 30 control the state of bit 31.
+ * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured.
+ * Bit 30 will immediately trigger a crashlog to be generated, setting bit 31.
+ * Bit 31 is the read-only status with a 1 indicating log is complete.
+ */
+#define TYPE1_VER0_STATUS_OFFSET 0x00
+#define TYPE1_VER0_CONTROL_OFFSET 0x00
+
+#define TYPE1_VER0_DISABLE BIT(28)
+#define TYPE1_VER0_CLEAR BIT(29)
+#define TYPE1_VER0_EXECUTE BIT(30)
+#define TYPE1_VER0_COMPLETE BIT(31)
+#define TYPE1_VER0_TRIGGER_MASK GENMASK(31, 28)
+
+/* After offset, order alphabetically, not bit ordered */
+struct crashlog_status {
+ u32 offset;
+ u32 clear;
+ u32 complete;
+ u32 disable;
+};
+
+struct crashlog_control {
+ u32 offset;
+ u32 trigger_mask;
+ u32 clear;
+ u32 disable;
+ u32 manual;
+};
+
+struct crashlog_info {
+ struct crashlog_status status;
+ struct crashlog_control control;
+};
+
+const struct crashlog_info crashlog_type1_ver0 = {
+ .status.offset = TYPE1_VER0_STATUS_OFFSET,
+ .status.clear = TYPE1_VER0_CLEAR,
+ .status.complete = TYPE1_VER0_COMPLETE,
+ .status.disable = TYPE1_VER0_DISABLE,
+
+ .control.offset = TYPE1_VER0_CONTROL_OFFSET,
+ .control.trigger_mask = TYPE1_VER0_TRIGGER_MASK,
+ .control.clear = TYPE1_VER0_CLEAR,
+ .control.disable = TYPE1_VER0_DISABLE,
+ .control.manual = TYPE1_VER0_EXECUTE,
+};
+
struct crashlog_entry {
/* entry must be first member of struct */
struct intel_pmt_entry entry;
struct mutex control_mutex;
+ const struct crashlog_info *info;
};
struct pmt_crashlog_priv {
@@ -59,74 +97,82 @@ struct pmt_crashlog_priv {
struct crashlog_entry entry[];
};
+/*
+ * This is the generic access to a PMT struct. So the use of
+ * struct crashlog_entry
+ * doesn't "make sense" here.
+ */
+static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
+{
+ u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
+ u32 crash_type, version;
+
+ crash_type = GET_TYPE(discovery_header);
+ version = GET_VERSION(discovery_header);
+
+ /*
+ * Currently we only recognize OOBMSM version 0 devices.
+ * We can ignore all other crashlog devices in the system.
+ */
+ return crash_type == CRASH_TYPE_OOBMSM && version == 0;
+}
+
/*
* I/O
*/
+
#define SET true
#define CLEAR false
-static void read_modify_write(struct intel_pmt_entry *entry, u32 bit, bool set)
+static void read_modify_write(struct crashlog_entry *crashlog, u32 bit, bool set)
{
- u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
+ const struct crashlog_control *control = &crashlog->info->control;
+ struct intel_pmt_entry *entry = &crashlog->entry;
+ u32 reg = readl(entry->disc_table + control->offset);
- reg &= ~CRASHLOG_FLAG_TRIGGER_MASK;
+ reg &= ~control->trigger_mask;
if (set)
reg |= bit;
else
reg &= bit;
- writel(reg, entry->disc_table + CONTROL_OFFSET);
+ writel(reg, entry->disc_table + control->offset);
}
-static bool read_check(struct intel_pmt_entry *entry, u32 bit)
+static bool read_check(struct crashlog_entry *crashlog, u32 bit)
{
- u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
+ const struct crashlog_status *status = &crashlog->info->status;
+ u32 reg = readl(crashlog->entry.disc_table + status->offset);
return !!(reg & bit);
}
-static bool pmt_crashlog_complete(struct intel_pmt_entry *entry)
+static bool pmt_crashlog_complete(struct crashlog_entry *crashlog)
{
/* return current value of the crashlog complete flag */
- return read_check(entry, CRASHLOG_FLAG_TRIGGER_COMPLETE);
+ return read_check(crashlog, crashlog->info->status.complete);
}
-static bool pmt_crashlog_disabled(struct intel_pmt_entry *entry)
+static bool pmt_crashlog_disabled(struct crashlog_entry *crashlog)
{
/* return current value of the crashlog disabled flag */
- return read_check(entry, CRASHLOG_FLAG_DISABLE);
-}
-
-static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
-{
- u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
- u32 crash_type, version;
-
- crash_type = GET_TYPE(discovery_header);
- version = GET_VERSION(discovery_header);
-
- /*
- * Currently we only recognize OOBMSM version 0 devices.
- * We can ignore all other crashlog devices in the system.
- */
- return crash_type == CRASH_TYPE_OOBMSM && version == 0;
+ return read_check(crashlog, crashlog->info->status.disable);
}
-static void pmt_crashlog_set_disable(struct intel_pmt_entry *entry,
- bool disable)
+static void pmt_crashlog_set_disable(struct crashlog_entry *crashlog, bool disable)
{
- read_modify_write(entry, CRASHLOG_FLAG_DISABLE, disable);
+ read_modify_write(crashlog, crashlog->info->control.disable, disable);
}
-static void pmt_crashlog_set_clear(struct intel_pmt_entry *entry)
+static void pmt_crashlog_set_clear(struct crashlog_entry *crashlog)
{
- read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_CLEAR, SET);
+ read_modify_write(crashlog, crashlog->info->control.clear, SET);
}
-static void pmt_crashlog_set_execute(struct intel_pmt_entry *entry)
+static void pmt_crashlog_set_execute(struct crashlog_entry *crashlog)
{
- read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_EXECUTE, SET);
+ read_modify_write(crashlog, crashlog->info->control.manual, SET);
}
/*
@@ -135,8 +181,8 @@ static void pmt_crashlog_set_execute(struct intel_pmt_entry *entry)
static ssize_t
enable_show(struct device *dev, struct device_attribute *attr, char *buf)
{
- struct intel_pmt_entry *entry = dev_get_drvdata(dev);
- bool enabled = !pmt_crashlog_disabled(entry);
+ struct crashlog_entry *crashlog = dev_get_drvdata(dev);
+ bool enabled = !pmt_crashlog_disabled(crashlog);
return sprintf(buf, "%d\n", enabled);
}
@@ -145,19 +191,19 @@ static ssize_t
enable_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
- struct crashlog_entry *entry;
+ struct crashlog_entry *crashlog;
bool enabled;
int result;
- entry = dev_get_drvdata(dev);
+ crashlog = dev_get_drvdata(dev);
result = kstrtobool(buf, &enabled);
if (result)
return result;
- guard(mutex)(&entry->control_mutex);
+ guard(mutex)(&crashlog->control_mutex);
- pmt_crashlog_set_disable(&entry->entry, !enabled);
+ pmt_crashlog_set_disable(crashlog, !enabled);
return count;
}
@@ -166,11 +212,11 @@ static DEVICE_ATTR_RW(enable);
static ssize_t
trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
{
- struct intel_pmt_entry *entry;
+ struct crashlog_entry *crashlog;
bool trigger;
- entry = dev_get_drvdata(dev);
- trigger = pmt_crashlog_complete(entry);
+ crashlog = dev_get_drvdata(dev);
+ trigger = pmt_crashlog_complete(crashlog);
return sprintf(buf, "%d\n", trigger);
}
@@ -179,32 +225,33 @@ static ssize_t
trigger_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
- struct crashlog_entry *entry;
+ struct crashlog_entry *crashlog;
bool trigger;
int result;
- entry = dev_get_drvdata(dev);
+ crashlog = dev_get_drvdata(dev);
result = kstrtobool(buf, &trigger);
if (result)
return result;
- guard(mutex)(&entry->control_mutex);
+ guard(mutex)(&crashlog->control_mutex);
/* if device is currently disabled, return busy */
- if (pmt_crashlog_disabled(&entry->entry))
+ if (pmt_crashlog_disabled(crashlog))
return -EBUSY;
if (!trigger) {
- pmt_crashlog_set_clear(&entry->entry);
+ pmt_crashlog_set_clear(crashlog);
return count;
}
/* we cannot trigger a new crash if one is still pending */
- if (pmt_crashlog_complete(&entry->entry))
+ if (pmt_crashlog_complete(crashlog))
return -EEXIST;
- pmt_crashlog_set_execute(&entry->entry);
+ pmt_crashlog_set_execute(crashlog);
+
return count;
}
@@ -230,9 +277,10 @@ static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry,
if (!pmt_crashlog_supported(entry))
return 1;
- /* initialize control mutex */
+ /* initialize the crashlog struct */
crashlog = container_of(entry, struct crashlog_entry, entry);
mutex_init(&crashlog->control_mutex);
+ crashlog->info = &crashlog_type1_ver0;
header->access_type = GET_ACCESS(readl(disc_table));
header->guid = readl(disc_table + GUID_OFFSET);
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (9 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct Michael J. Ruhl
@ 2025-06-05 18:44 ` Michael J. Ruhl
2025-06-06 23:21 ` David E. Box
2025-06-05 22:36 ` ✓ CI.Patch_applied: success for Crashlog Type1 Version2 support (rev3) Patchwork
` (8 subsequent siblings)
19 siblings, 1 reply; 36+ messages in thread
From: Michael J. Ruhl @ 2025-06-05 18:44 UTC (permalink / raw)
To: platform-driver-x86, intel-xe, hdegoede, ilpo.jarvinen,
lucas.demarchi, rodrigo.vivi, thomas.hellstrom, airlied, simona,
david.e.box
Cc: Michael J. Ruhl
The Battlemage GPU has the type 1 version 2 crashlog feature.
Update the crashlog driver to support this crashlog version.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/platform/x86/intel/pmt/crashlog.c | 283 ++++++++++++++++++++--
1 file changed, 264 insertions(+), 19 deletions(-)
diff --git a/drivers/platform/x86/intel/pmt/crashlog.c b/drivers/platform/x86/intel/pmt/crashlog.c
index fe6563721886..0fb60036a9bb 100644
--- a/drivers/platform/x86/intel/pmt/crashlog.c
+++ b/drivers/platform/x86/intel/pmt/crashlog.c
@@ -51,20 +51,53 @@
#define TYPE1_VER0_COMPLETE BIT(31)
#define TYPE1_VER0_TRIGGER_MASK GENMASK(31, 28)
+/*
+ * Type 1 Version 2
+ * status and control are two different registers
+ */
+#define TYPE1_VER2_STATUS_OFFSET 0x00
+#define TYPE1_VER2_CONTROL_OFFSET 0x14
+
+/* status register */
+#define TYPE1_VER2_CLEAR_SUPPORT BIT(20)
+#define TYPE1_VER2_REARMED BIT(25)
+#define TYPE1_VER2_ERROR BIT(26)
+#define TYPE1_VER2_CONSUMED BIT(27)
+#define TYPE1_VER2_DISABLED BIT(28)
+#define TYPE1_VER2_CLEARED BIT(29)
+#define TYPE1_VER2_IN_PROGRESS BIT(30)
+#define TYPE1_VER2_COMPLETE BIT(31)
+
+/* control register */
+#define TYPE1_VER2_CONSUME BIT(25)
+#define TYPE1_VER2_REARM BIT(28)
+#define TYPE1_VER2_EXECUTE BIT(29)
+#define TYPE1_VER2_CLEAR BIT(30)
+#define TYPE1_VER2_DISABLE BIT(31)
+#define TYPE1_VER2_TRIGGER_MASK (TYPE1_VER2_CONSUME | TYPE1_VER2_EXECUTE | \
+ TYPE1_VER2_CLEAR | TYPE1_VER2_DISABLE)
+
/* After offset, order alphabetically, not bit ordered */
struct crashlog_status {
u32 offset;
- u32 clear;
+ u32 clear_supported;
+ u32 cleared;
u32 complete;
- u32 disable;
+ u32 consumed;
+ u32 disabled;
+ u32 error;
+ u32 in_progress;
+ u32 rearmed;
};
struct crashlog_control {
u32 offset;
u32 trigger_mask;
u32 clear;
+ u32 consume;
u32 disable;
u32 manual;
+ u32 rearm;
};
struct crashlog_info {
@@ -74,9 +107,9 @@ struct crashlog_info {
const struct crashlog_info crashlog_type1_ver0 = {
.status.offset = TYPE1_VER0_STATUS_OFFSET,
- .status.clear = TYPE1_VER0_CLEAR,
+ .status.cleared = TYPE1_VER0_CLEAR,
.status.complete = TYPE1_VER0_COMPLETE,
- .status.disable = TYPE1_VER0_DISABLE,
+ .status.disabled = TYPE1_VER0_DISABLE,
.control.offset = TYPE1_VER0_CONTROL_OFFSET,
.control.trigger_mask = TYPE1_VER0_TRIGGER_MASK,
@@ -85,6 +118,26 @@ const struct crashlog_info crashlog_type1_ver0 = {
.control.manual = TYPE1_VER0_EXECUTE,
};
+const struct crashlog_info crashlog_type1_ver2 = {
+ .status.offset = TYPE1_VER2_STATUS_OFFSET,
+ .status.clear_supported = TYPE1_VER2_CLEAR_SUPPORT,
+ .status.cleared = TYPE1_VER2_CLEARED,
+ .status.complete = TYPE1_VER2_COMPLETE,
+ .status.consumed = TYPE1_VER2_CONSUMED,
+ .status.disabled = TYPE1_VER2_DISABLED,
+ .status.error = TYPE1_VER2_ERROR,
+ .status.in_progress = TYPE1_VER2_IN_PROGRESS,
+ .status.rearmed = TYPE1_VER2_REARMED,
+
+ .control.offset = TYPE1_VER2_CONTROL_OFFSET,
+ .control.trigger_mask = TYPE1_VER2_TRIGGER_MASK,
+ .control.clear = TYPE1_VER2_CLEAR,
+ .control.consume = TYPE1_VER2_CONSUME,
+ .control.disable = TYPE1_VER2_DISABLE,
+ .control.manual = TYPE1_VER2_EXECUTE,
+ .control.rearm = TYPE1_VER2_REARM,
+};
+
struct crashlog_entry {
/* entry must be first member of struct */
struct intel_pmt_entry entry;
@@ -99,30 +152,35 @@ struct pmt_crashlog_priv {
/*
* This is the generic access to a PMT struct. So the use of
- * struct crashlog_entry
- * doesn't "make sense" here.
+ * struct crashlog_entry
+ * doesn't "make sense" here, i.e. use:
+ * struct intel_pmt_entry
*/
-static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
+static bool pmt_crashlog_supported(struct intel_pmt_entry *entry, u32 *crash_type, u32 *version)
{
u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
- u32 crash_type, version;
- crash_type = GET_TYPE(discovery_header);
- version = GET_VERSION(discovery_header);
+ *crash_type = GET_TYPE(discovery_header);
+ *version = GET_VERSION(discovery_header);
/*
- * Currently we only recognize OOBMSM version 0 devices.
- * We can ignore all other crashlog devices in the system.
+ * Currently we only recognize OOBMSM (type 1) and version 0 or 2
+ * devices.
+ *
+ * Ignore all other crashlog devices in the system.
*/
- return crash_type == CRASH_TYPE_OOBMSM && version == 0;
+ if (*crash_type == CRASH_TYPE_OOBMSM && (*version == 0 || *version == 2))
+ return true;
+
+ return false;
}
/*
* I/O
*/
-#define SET true
-#define CLEAR false
+#define SET true
+#define CLEAR false
static void read_modify_write(struct crashlog_entry *crashlog, u32 bit, bool set)
{
@@ -157,7 +215,7 @@ static bool pmt_crashlog_complete(struct crashlog_entry *crashlog)
static bool pmt_crashlog_disabled(struct crashlog_entry *crashlog)
{
/* return current value of the crashlog disabled flag */
- return read_check(crashlog, crashlog->info->status.disable);
+ return read_check(crashlog, crashlog->info->status.disabled);
}
static void pmt_crashlog_set_disable(struct crashlog_entry *crashlog, bool disable)
@@ -175,9 +233,119 @@ static void pmt_crashlog_set_execute(struct crashlog_entry *crashlog)
read_modify_write(crashlog, crashlog->info->control.manual, SET);
}
+/* version 2 support */
+static bool pmt_crashlog_cleared(struct crashlog_entry *crashlog)
+{
+ /* return current value of the crashlog cleared flag */
+ return read_check(crashlog, crashlog->info->status.cleared);
+}
+
+static bool pmt_crashlog_consumed(struct crashlog_entry *crashlog)
+{
+ /* return current value of the crashlog consumedflag */
+ return read_check(crashlog, crashlog->info->status.consumed);
+}
+
+static void pmt_crashlog_set_consumed(struct crashlog_entry *crashlog)
+{
+ read_modify_write(crashlog, crashlog->info->control.consume, SET);
+}
+
+static bool pmt_crashlog_error(struct crashlog_entry *crashlog)
+{
+ /* return current value of the crashlog error flag */
+ return read_check(crashlog, crashlog->info->status.error);
+}
+
+static bool pmt_crashlog_rearm(struct crashlog_entry *crashlog)
+{
+ /* return current value of the crashlog reamed flag */
+ return read_check(crashlog, crashlog->info->status.rearmed);
+}
+
+static void pmt_crashlog_set_rearm(struct crashlog_entry *crashlog)
+{
+ read_modify_write(crashlog, crashlog->info->control.rearm, SET);
+}
+
/*
* sysfs
*/
+static ssize_t
+clear_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ struct crashlog_entry *crashlog = dev_get_drvdata(dev);
+ bool cleared = pmt_crashlog_cleared(crashlog);
+
+ return sysfs_emit(buf, "%d\n", cleared);
+}
+
+static ssize_t
+clear_store(struct device *dev, struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+ struct crashlog_entry *crashlog;
+ bool clear;
+ int result;
+
+ crashlog = dev_get_drvdata(dev);
+
+ result = kstrtobool(buf, &clear);
+ if (result)
+ return result;
+
+ /* set bit only */
+ if (!clear)
+ return -EINVAL;
+
+ guard(mutex)(&crashlog->control_mutex);
+
+ pmt_crashlog_set_clear(crashlog);
+
+ return count;
+}
+static DEVICE_ATTR_RW(clear);
+
+static ssize_t
+consumed_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ struct crashlog_entry *crashlog = dev_get_drvdata(dev);
+ bool consumed = pmt_crashlog_consumed(crashlog);
+
+ return sysfs_emit(buf, "%d\n", consumed);
+}
+
+static ssize_t consumed_store(struct device *dev, struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+ struct crashlog_entry *crashlog;
+ bool consumed;
+ int result;
+
+ crashlog = dev_get_drvdata(dev);
+
+ result = kstrtobool(buf, &consumed);
+ if (result)
+ return result;
+
+ /* set bit only */
+ if (!consumed)
+ return -EINVAL;
+
+ guard(mutex)(&crashlog->control_mutex);
+
+ if (pmt_crashlog_disabled(crashlog))
+ return -EBUSY;
+
+ if (!pmt_crashlog_complete(crashlog))
+ return -EEXIST;
+
+ pmt_crashlog_set_consumed(crashlog);
+
+ return count;
+}
+static DEVICE_ATTR_RW(consumed);
+
static ssize_t
enable_show(struct device *dev, struct device_attribute *attr, char *buf)
{
@@ -209,6 +377,50 @@ enable_store(struct device *dev, struct device_attribute *attr,
}
static DEVICE_ATTR_RW(enable);
+static ssize_t
+error_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ struct crashlog_entry *crashlog = dev_get_drvdata(dev);
+ bool error = pmt_crashlog_error(crashlog);
+
+ return sysfs_emit(buf, "%d\n", error);
+}
+static DEVICE_ATTR_RO(error);
+
+static ssize_t
+rearm_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ struct crashlog_entry *crashlog = dev_get_drvdata(dev);
+ int rearmed = pmt_crashlog_rearm(crashlog);
+
+ return sysfs_emit(buf, "%d\n", rearmed);
+}
+
+static ssize_t rearm_store(struct device *dev, struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+ struct crashlog_entry *crashlog;
+ bool rearm;
+ int result;
+
+ crashlog = dev_get_drvdata(dev);
+
+ result = kstrtobool(buf, &rearm);
+ if (result)
+ return result;
+
+ /* set only */
+ if (!rearm)
+ return -EINVAL;
+
+ guard(mutex)(&crashlog->control_mutex);
+
+ pmt_crashlog_set_rearm(crashlog);
+
+ return count;
+}
+static DEVICE_ATTR_RW(rearm);
+
static ssize_t
trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
{
@@ -263,24 +475,57 @@ static struct attribute *pmt_crashlog_attrs[] = {
NULL
};
+static struct attribute *pmt_crashlog_ver2_attrs[] = {
+ &dev_attr_clear.attr,
+ &dev_attr_consumed.attr,
+ &dev_attr_enable.attr,
+ &dev_attr_error.attr,
+ &dev_attr_rearm.attr,
+ &dev_attr_trigger.attr,
+ NULL
+};
+
static const struct attribute_group pmt_crashlog_group = {
.attrs = pmt_crashlog_attrs,
};
+static const struct attribute_group pmt_crashlog_ver2_group = {
+ .attrs = pmt_crashlog_ver2_attrs,
+};
+
+static const struct crashlog_info *select_crashlog_info(u32 type, u32 version)
+{
+ if (version == 0)
+ return &crashlog_type1_ver0;
+
+ return &crashlog_type1_ver2;
+}
+
+static const struct attribute_group *select_sysfs_grp(u32 type, u32 version)
+{
+ if (version == 0)
+ return &pmt_crashlog_group;
+
+ return &pmt_crashlog_ver2_group;
+}
+
static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry,
struct device *dev)
{
void __iomem *disc_table = entry->disc_table;
struct intel_pmt_header *header = &entry->header;
struct crashlog_entry *crashlog;
+ u32 version;
+ u32 type;
- if (!pmt_crashlog_supported(entry))
+ if (!pmt_crashlog_supported(entry, &type, &version))
return 1;
/* initialize the crashlog struct */
crashlog = container_of(entry, struct crashlog_entry, entry);
mutex_init(&crashlog->control_mutex);
- crashlog->info = &crashlog_type1_ver0;
+
+ crashlog->info = select_crashlog_info(type, version);
header->access_type = GET_ACCESS(readl(disc_table));
header->guid = readl(disc_table + GUID_OFFSET);
@@ -289,7 +534,7 @@ static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry,
/* Size is measured in DWORDS, but accessor returns bytes */
header->size = GET_SIZE(readl(disc_table + SIZE_OFFSET));
- entry->attr_grp = &pmt_crashlog_group;
+ entry->attr_grp = select_sysfs_grp(type, version);
return 0;
}
--
2.49.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* ✓ CI.Patch_applied: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (10 preceding siblings ...)
2025-06-05 18:44 ` [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog Michael J. Ruhl
@ 2025-06-05 22:36 ` Patchwork
2025-06-05 22:36 ` ✓ CI.checkpatch: " Patchwork
` (7 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 22:36 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 832a676ed689 drm-tip: 2025y-06m-05d-18h-32m-30s UTC integration manifest
=== git am output follows ===
Applying: platform/x86/intel: refactor endpoint usage
Applying: platform/x86/intel/pmt: crashlog binary file endpoint
Applying: drm/xe: Correct BMG VSEC header sizing
Applying: platform/x86/intel/pmt: white space cleanup
Applying: platform/x86/intel/pmt: use guard(mutex)
Applying: platform/x86/intel/pmt: re-order trigger logic
Applying: platform/x86/intel/pmt: correct types
Applying: platform/x86/intel/pmt: decouple sysfs and namespace
Applying: platform/x86/intel/pmt: add register access helpers
Applying: platform/x86/intel/pmt: use a version struct
Applying: platform/x86/intel/pmt: support BMG crashlog
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ CI.checkpatch: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (11 preceding siblings ...)
2025-06-05 22:36 ` ✓ CI.Patch_applied: success for Crashlog Type1 Version2 support (rev3) Patchwork
@ 2025-06-05 22:36 ` Patchwork
2025-06-05 22:37 ` ✓ CI.KUnit: " Patchwork
` (6 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 22:36 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
202708c00696422fd217223bb679a353a5936e23
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 29f6c4d38a05c15a0e354c8b64f05cac6cc2c5f0
Author: Michael J. Ruhl <michael.j.ruhl@intel.com>
Date: Thu Jun 5 14:44:44 2025 -0400
platform/x86/intel/pmt: support BMG crashlog
The Battlemage GPU has the type 1 version 2 crashlog feature.
Update the crashlog driver to support this crashlog version.
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
+ /mt/dim checkpatch 832a676ed68901ea8c404d8602381cd8ca413e88 drm-intel
114306f3b033 platform/x86/intel: refactor endpoint usage
23795f48a0c3 platform/x86/intel/pmt: crashlog binary file endpoint
e402c01c42f3 drm/xe: Correct BMG VSEC header sizing
46cbb2e7eccd platform/x86/intel/pmt: white space cleanup
d372fcdefc9e platform/x86/intel/pmt: use guard(mutex)
6248a996ea0c platform/x86/intel/pmt: re-order trigger logic
9dbd53cff6e1 platform/x86/intel/pmt: correct types
310330cb19b0 platform/x86/intel/pmt: decouple sysfs and namespace
5071e548bf27 platform/x86/intel/pmt: add register access helpers
5ffaa007bb6f platform/x86/intel/pmt: use a version struct
29f6c4d38a05 platform/x86/intel/pmt: support BMG crashlog
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ CI.KUnit: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (12 preceding siblings ...)
2025-06-05 22:36 ` ✓ CI.checkpatch: " Patchwork
@ 2025-06-05 22:37 ` Patchwork
2025-06-05 22:48 ` ✓ CI.Build: " Patchwork
` (5 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 22:37 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:36:35] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:36:39] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:37:05] Starting KUnit Kernel (1/1)...
[22:37:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:05] ================== guc_buf (11 subtests) ===================
[22:37:05] [PASSED] test_smallest
[22:37:05] [PASSED] test_largest
[22:37:05] [PASSED] test_granular
[22:37:05] [PASSED] test_unique
[22:37:05] [PASSED] test_overlap
[22:37:05] [PASSED] test_reusable
[22:37:05] [PASSED] test_too_big
[22:37:05] [PASSED] test_flush
[22:37:05] [PASSED] test_lookup
[22:37:05] [PASSED] test_data
[22:37:05] [PASSED] test_class
[22:37:05] ===================== [PASSED] guc_buf =====================
[22:37:05] =================== guc_dbm (7 subtests) ===================
[22:37:05] [PASSED] test_empty
[22:37:05] [PASSED] test_default
[22:37:05] ======================== test_size ========================
[22:37:05] [PASSED] 4
[22:37:05] [PASSED] 8
[22:37:05] [PASSED] 32
[22:37:05] [PASSED] 256
[22:37:05] ==================== [PASSED] test_size ====================
[22:37:05] ======================= test_reuse ========================
[22:37:05] [PASSED] 4
[22:37:05] [PASSED] 8
[22:37:05] [PASSED] 32
[22:37:05] [PASSED] 256
[22:37:05] =================== [PASSED] test_reuse ====================
[22:37:05] =================== test_range_overlap ====================
[22:37:05] [PASSED] 4
[22:37:05] [PASSED] 8
[22:37:05] [PASSED] 32
[22:37:05] [PASSED] 256
[22:37:05] =============== [PASSED] test_range_overlap ================
[22:37:05] =================== test_range_compact ====================
[22:37:05] [PASSED] 4
[22:37:05] [PASSED] 8
[22:37:05] [PASSED] 32
[22:37:05] [PASSED] 256
[22:37:05] =============== [PASSED] test_range_compact ================
[22:37:05] ==================== test_range_spare =====================
[22:37:05] [PASSED] 4
[22:37:05] [PASSED] 8
[22:37:05] [PASSED] 32
[22:37:05] [PASSED] 256
[22:37:05] ================ [PASSED] test_range_spare =================
[22:37:05] ===================== [PASSED] guc_dbm =====================
[22:37:05] =================== guc_idm (6 subtests) ===================
[22:37:05] [PASSED] bad_init
[22:37:05] [PASSED] no_init
[22:37:05] [PASSED] init_fini
[22:37:05] [PASSED] check_used
[22:37:05] [PASSED] check_quota
[22:37:05] [PASSED] check_all
[22:37:05] ===================== [PASSED] guc_idm =====================
[22:37:05] ================== no_relay (3 subtests) ===================
[22:37:05] [PASSED] xe_drops_guc2pf_if_not_ready
[22:37:05] [PASSED] xe_drops_guc2vf_if_not_ready
[22:37:05] [PASSED] xe_rejects_send_if_not_ready
[22:37:05] ==================== [PASSED] no_relay =====================
[22:37:05] ================== pf_relay (14 subtests) ==================
[22:37:05] [PASSED] pf_rejects_guc2pf_too_short
[22:37:05] [PASSED] pf_rejects_guc2pf_too_long
[22:37:05] [PASSED] pf_rejects_guc2pf_no_payload
[22:37:05] [PASSED] pf_fails_no_payload
[22:37:05] [PASSED] pf_fails_bad_origin
[22:37:05] [PASSED] pf_fails_bad_type
[22:37:05] [PASSED] pf_txn_reports_error
[22:37:05] [PASSED] pf_txn_sends_pf2guc
[22:37:05] [PASSED] pf_sends_pf2guc
[22:37:05] [SKIPPED] pf_loopback_nop
[22:37:05] [SKIPPED] pf_loopback_echo
[22:37:05] [SKIPPED] pf_loopback_fail
[22:37:05] [SKIPPED] pf_loopback_busy
[22:37:05] [SKIPPED] pf_loopback_retry
[22:37:05] ==================== [PASSED] pf_relay =====================
[22:37:05] ================== vf_relay (3 subtests) ===================
[22:37:05] [PASSED] vf_rejects_guc2vf_too_short
[22:37:05] [PASSED] vf_rejects_guc2vf_too_long
[22:37:05] [PASSED] vf_rejects_guc2vf_no_payload
[22:37:05] ==================== [PASSED] vf_relay =====================
[22:37:05] ================= pf_service (11 subtests) =================
[22:37:05] [PASSED] pf_negotiate_any
[22:37:05] [PASSED] pf_negotiate_base_match
[22:37:05] [PASSED] pf_negotiate_base_newer
[22:37:05] [PASSED] pf_negotiate_base_next
[22:37:05] [SKIPPED] pf_negotiate_base_older
[22:37:05] [PASSED] pf_negotiate_base_prev
[22:37:05] [PASSED] pf_negotiate_latest_match
[22:37:05] [PASSED] pf_negotiate_latest_newer
[22:37:05] [PASSED] pf_negotiate_latest_next
[22:37:05] [SKIPPED] pf_negotiate_latest_older
[22:37:05] [SKIPPED] pf_negotiate_latest_prev
[22:37:05] =================== [PASSED] pf_service ====================
[22:37:05] ===================== lmtt (1 subtest) =====================
[22:37:05] ======================== test_ops =========================
[22:37:05] [PASSED] 2-level
[22:37:05] [PASSED] multi-level
[22:37:05] ==================== [PASSED] test_ops =====================
[22:37:05] ====================== [PASSED] lmtt =======================
[22:37:05] =================== xe_mocs (2 subtests) ===================
[22:37:05] ================ xe_live_mocs_kernel_kunit ================
[22:37:05] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:37:05] ================ xe_live_mocs_reset_kunit =================
[22:37:05] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:37:05] ==================== [SKIPPED] xe_mocs =====================
[22:37:05] ================= xe_migrate (2 subtests) ==================
[22:37:05] ================= xe_migrate_sanity_kunit =================
[22:37:05] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:37:05] ================== xe_validate_ccs_kunit ==================
[22:37:05] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:37:05] =================== [SKIPPED] xe_migrate ===================
[22:37:05] ================== xe_dma_buf (1 subtest) ==================
[22:37:05] ==================== xe_dma_buf_kunit =====================
[22:37:05] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:37:05] =================== [SKIPPED] xe_dma_buf ===================
[22:37:05] ================= xe_bo_shrink (1 subtest) =================
[22:37:05] =================== xe_bo_shrink_kunit ====================
[22:37:05] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:37:05] ================== [SKIPPED] xe_bo_shrink ==================
[22:37:05] ==================== xe_bo (2 subtests) ====================
[22:37:05] ================== xe_ccs_migrate_kunit ===================
[22:37:05] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:37:05] ==================== xe_bo_evict_kunit ====================
[22:37:05] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:37:05] ===================== [SKIPPED] xe_bo ======================
[22:37:05] ==================== args (11 subtests) ====================
[22:37:05] [PASSED] count_args_test
[22:37:05] [PASSED] call_args_example
[22:37:05] [PASSED] call_args_test
[22:37:05] [PASSED] drop_first_arg_example
[22:37:05] [PASSED] drop_first_arg_test
[22:37:05] [PASSED] first_arg_example
[22:37:05] [PASSED] first_arg_test
[22:37:05] [PASSED] last_arg_example
[22:37:05] [PASSED] last_arg_test
[22:37:05] [PASSED] pick_arg_example
[22:37:05] [PASSED] sep_comma_example
[22:37:05] ====================== [PASSED] args =======================
[22:37:05] =================== xe_pci (2 subtests) ====================
[22:37:05] [PASSED] xe_gmdid_graphics_ip
[22:37:05] [PASSED] xe_gmdid_media_ip
[22:37:05] ===================== [PASSED] xe_pci ======================
[22:37:05] =================== xe_rtp (2 subtests) ====================
[22:37:05] =============== xe_rtp_process_to_sr_tests ================
[22:37:05] [PASSED] coalesce-same-reg
[22:37:05] [PASSED] no-match-no-add
[22:37:05] [PASSED] match-or
[22:37:05] [PASSED] match-or-xfail
[22:37:05] [PASSED] no-match-no-add-multiple-rules
[22:37:05] [PASSED] two-regs-two-entries
[22:37:05] [PASSED] clr-one-set-other
[22:37:05] [PASSED] set-field
[22:37:05] [PASSED] conflict-duplicate
[22:37:05] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[22:37:05] [PASSED] conflict-reg-type
[22:37:05] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:37:05] ================== xe_rtp_process_tests ===================
[22:37:05] [PASSED] active1
[22:37:05] [PASSED] active2
[22:37:05] [PASSED] active-inactive
[22:37:05] [PASSED] inactive-active
[22:37:05] [PASSED] inactive-1st_or_active-inactive
[22:37:05] [PASSED] inactive-2nd_or_active-inactive
[22:37:05] [PASSED] inactive-last_or_active-inactive
[22:37:05] [PASSED] inactive-no_or_active-inactive
[22:37:05] ============== [PASSED] xe_rtp_process_tests ===============
[22:37:05] ===================== [PASSED] xe_rtp ======================
[22:37:05] ==================== xe_wa (1 subtest) =====================
[22:37:05] ======================== xe_wa_gt =========================
[22:37:05] [PASSED] TIGERLAKE (B0)
[22:37:05] [PASSED] DG1 (A0)
[22:37:05] [PASSED] DG1 (B0)
[22:37:05] [PASSED] ALDERLAKE_S (A0)
[22:37:05] [PASSED] ALDERLAKE_S (B0)
[22:37:05] [PASSED] ALDERLAKE_S (C0)
[22:37:05] [PASSED] ALDERLAKE_S (D0)
[22:37:05] [PASSED] ALDERLAKE_P (A0)
[22:37:05] [PASSED] ALDERLAKE_P (B0)
[22:37:05] [PASSED] ALDERLAKE_P (C0)
[22:37:05] [PASSED] ALDERLAKE_S_RPLS (D0)
[22:37:05] [PASSED] ALDERLAKE_P_RPLU (E0)
[22:37:05] [PASSED] DG2_G10 (C0)
[22:37:05] [PASSED] DG2_G11 (B1)
[22:37:05] [PASSED] DG2_G12 (A1)
[22:37:05] [PASSED] METEORLAKE (g:A0, m:A0)
[22:37:05] [PASSED] METEORLAKE (g:A0, m:A0)
[22:37:05] [PASSED] METEORLAKE (g:A0, m:A0)
[22:37:05] [PASSED] LUNARLAKE (g:A0, m:A0)
[22:37:05] [PASSED] LUNARLAKE (g:B0, m:A0)
[22:37:05] [PASSED] BATTLEMAGE (g:A0, m:A1)
[22:37:05] ==================== [PASSED] xe_wa_gt =====================
[22:37:05] ====================== [PASSED] xe_wa ======================
[22:37:05] ============================================================
[22:37:05] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[22:37:06] Elapsed time: 30.794s total, 4.156s configuring, 26.322s building, 0.297s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:37:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:37:07] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:37:29] Starting KUnit Kernel (1/1)...
[22:37:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:29] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:37:29] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:37:29] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:37:29] =========== drm_validate_clone_mode (2 subtests) ===========
[22:37:29] ============== drm_test_check_in_clone_mode ===============
[22:37:29] [PASSED] in_clone_mode
[22:37:29] [PASSED] not_in_clone_mode
[22:37:29] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:37:29] =============== drm_test_check_valid_clones ===============
[22:37:29] [PASSED] not_in_clone_mode
[22:37:29] [PASSED] valid_clone
[22:37:29] [PASSED] invalid_clone
[22:37:29] =========== [PASSED] drm_test_check_valid_clones ===========
[22:37:29] ============= [PASSED] drm_validate_clone_mode =============
[22:37:29] ============= drm_validate_modeset (1 subtest) =============
[22:37:29] [PASSED] drm_test_check_connector_changed_modeset
[22:37:29] ============== [PASSED] drm_validate_modeset ===============
[22:37:29] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:37:29] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:37:29] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:37:29] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:37:29] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:37:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:37:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:37:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:37:29] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:37:29] ================== drm_buddy (7 subtests) ==================
[22:37:29] [PASSED] drm_test_buddy_alloc_limit
[22:37:29] [PASSED] drm_test_buddy_alloc_optimistic
[22:37:29] [PASSED] drm_test_buddy_alloc_pessimistic
[22:37:29] [PASSED] drm_test_buddy_alloc_pathological
[22:37:29] [PASSED] drm_test_buddy_alloc_contiguous
[22:37:29] [PASSED] drm_test_buddy_alloc_clear
[22:37:29] [PASSED] drm_test_buddy_alloc_range_bias
[22:37:29] ==================== [PASSED] drm_buddy ====================
[22:37:29] ============= drm_cmdline_parser (40 subtests) =============
[22:37:29] [PASSED] drm_test_cmdline_force_d_only
[22:37:29] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:37:29] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:37:29] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:37:29] [PASSED] drm_test_cmdline_force_e_only
[22:37:29] [PASSED] drm_test_cmdline_res
[22:37:29] [PASSED] drm_test_cmdline_res_vesa
[22:37:29] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:37:29] [PASSED] drm_test_cmdline_res_rblank
[22:37:29] [PASSED] drm_test_cmdline_res_bpp
[22:37:29] [PASSED] drm_test_cmdline_res_refresh
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:37:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:37:29] [PASSED] drm_test_cmdline_res_margins_force_on
[22:37:29] [PASSED] drm_test_cmdline_res_vesa_margins
[22:37:29] [PASSED] drm_test_cmdline_name
[22:37:29] [PASSED] drm_test_cmdline_name_bpp
[22:37:29] [PASSED] drm_test_cmdline_name_option
[22:37:29] [PASSED] drm_test_cmdline_name_bpp_option
[22:37:29] [PASSED] drm_test_cmdline_rotate_0
[22:37:29] [PASSED] drm_test_cmdline_rotate_90
[22:37:29] [PASSED] drm_test_cmdline_rotate_180
[22:37:29] [PASSED] drm_test_cmdline_rotate_270
[22:37:29] [PASSED] drm_test_cmdline_hmirror
[22:37:29] [PASSED] drm_test_cmdline_vmirror
[22:37:29] [PASSED] drm_test_cmdline_margin_options
[22:37:29] [PASSED] drm_test_cmdline_multiple_options
[22:37:29] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:37:29] [PASSED] drm_test_cmdline_extra_and_option
[22:37:29] [PASSED] drm_test_cmdline_freestanding_options
[22:37:29] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:37:29] [PASSED] drm_test_cmdline_panel_orientation
[22:37:29] ================ drm_test_cmdline_invalid =================
[22:37:29] [PASSED] margin_only
[22:37:29] [PASSED] interlace_only
[22:37:29] [PASSED] res_missing_x
[22:37:29] [PASSED] res_missing_y
[22:37:29] [PASSED] res_bad_y
[22:37:29] [PASSED] res_missing_y_bpp
[22:37:29] [PASSED] res_bad_bpp
[22:37:29] [PASSED] res_bad_refresh
[22:37:29] [PASSED] res_bpp_refresh_force_on_off
[22:37:29] [PASSED] res_invalid_mode
[22:37:29] [PASSED] res_bpp_wrong_place_mode
[22:37:29] [PASSED] name_bpp_refresh
[22:37:29] [PASSED] name_refresh
[22:37:29] [PASSED] name_refresh_wrong_mode
[22:37:29] [PASSED] name_refresh_invalid_mode
[22:37:29] [PASSED] rotate_multiple
[22:37:29] [PASSED] rotate_invalid_val
[22:37:29] [PASSED] rotate_truncated
[22:37:29] [PASSED] invalid_option
[22:37:29] [PASSED] invalid_tv_option
[22:37:29] [PASSED] truncated_tv_option
[22:37:29] ============ [PASSED] drm_test_cmdline_invalid =============
[22:37:29] =============== drm_test_cmdline_tv_options ===============
[22:37:29] [PASSED] NTSC
[22:37:29] [PASSED] NTSC_443
[22:37:29] [PASSED] NTSC_J
[22:37:29] [PASSED] PAL
[22:37:29] [PASSED] PAL_M
[22:37:29] [PASSED] PAL_N
[22:37:29] [PASSED] SECAM
[22:37:29] [PASSED] MONO_525
[22:37:29] [PASSED] MONO_625
[22:37:29] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:37:29] =============== [PASSED] drm_cmdline_parser ================
[22:37:29] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:37:29] [PASSED] drm_test_connector_hdmi_init_valid
[22:37:29] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:37:29] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:37:29] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:37:29] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:37:29] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:37:29] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:37:29] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:37:29] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:37:29] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:37:29] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:37:29] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:37:29] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:37:29] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:37:29] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:37:29] [PASSED] drm_test_connector_hdmi_init_null_product
[22:37:29] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:37:29] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:37:29] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:37:29] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:37:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:37:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:37:29] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:37:29] ========= drm_test_connector_hdmi_init_type_valid =========
[22:37:29] [PASSED] HDMI-A
[22:37:29] [PASSED] HDMI-B
[22:37:29] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:37:29] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:37:29] [PASSED] Unknown
[22:37:29] [PASSED] VGA
[22:37:29] [PASSED] DVI-I
[22:37:29] [PASSED] DVI-D
[22:37:29] [PASSED] DVI-A
[22:37:29] [PASSED] Composite
[22:37:29] [PASSED] SVIDEO
[22:37:29] [PASSED] LVDS
[22:37:29] [PASSED] Component
[22:37:29] [PASSED] DIN
[22:37:29] [PASSED] DP
[22:37:29] [PASSED] TV
[22:37:29] [PASSED] eDP
[22:37:29] [PASSED] Virtual
[22:37:29] [PASSED] DSI
[22:37:29] [PASSED] DPI
[22:37:29] [PASSED] Writeback
[22:37:29] [PASSED] SPI
[22:37:29] [PASSED] USB
[22:37:29] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:37:29] ============ [PASSED] drmm_connector_hdmi_init =============
[22:37:29] ============= drmm_connector_init (3 subtests) =============
[22:37:29] [PASSED] drm_test_drmm_connector_init
[22:37:29] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:37:29] ========= drm_test_drmm_connector_init_type_valid =========
[22:37:29] [PASSED] Unknown
[22:37:29] [PASSED] VGA
[22:37:29] [PASSED] DVI-I
[22:37:29] [PASSED] DVI-D
[22:37:29] [PASSED] DVI-A
[22:37:29] [PASSED] Composite
[22:37:29] [PASSED] SVIDEO
[22:37:29] [PASSED] LVDS
[22:37:29] [PASSED] Component
[22:37:29] [PASSED] DIN
[22:37:29] [PASSED] DP
[22:37:29] [PASSED] HDMI-A
[22:37:29] [PASSED] HDMI-B
[22:37:29] [PASSED] TV
[22:37:29] [PASSED] eDP
[22:37:29] [PASSED] Virtual
[22:37:29] [PASSED] DSI
[22:37:29] [PASSED] DPI
[22:37:29] [PASSED] Writeback
[22:37:29] [PASSED] SPI
[22:37:29] [PASSED] USB
[22:37:29] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:37:29] =============== [PASSED] drmm_connector_init ===============
[22:37:29] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_init
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:37:29] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:37:29] [PASSED] Unknown
[22:37:29] [PASSED] VGA
[22:37:29] [PASSED] DVI-I
[22:37:29] [PASSED] DVI-D
[22:37:29] [PASSED] DVI-A
[22:37:29] [PASSED] Composite
[22:37:29] [PASSED] SVIDEO
[22:37:29] [PASSED] LVDS
[22:37:29] [PASSED] Component
[22:37:29] [PASSED] DIN
[22:37:29] [PASSED] DP
[22:37:29] [PASSED] HDMI-A
[22:37:29] [PASSED] HDMI-B
[22:37:29] [PASSED] TV
[22:37:29] [PASSED] eDP
[22:37:29] [PASSED] Virtual
[22:37:29] [PASSED] DSI
[22:37:29] [PASSED] DPI
[22:37:29] [PASSED] Writeback
[22:37:29] [PASSED] SPI
[22:37:29] [PASSED] USB
[22:37:29] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:37:29] ======== drm_test_drm_connector_dynamic_init_name =========
[22:37:29] [PASSED] Unknown
[22:37:29] [PASSED] VGA
[22:37:29] [PASSED] DVI-I
[22:37:29] [PASSED] DVI-D
[22:37:29] [PASSED] DVI-A
[22:37:29] [PASSED] Composite
[22:37:29] [PASSED] SVIDEO
[22:37:29] [PASSED] LVDS
[22:37:29] [PASSED] Component
[22:37:29] [PASSED] DIN
[22:37:29] [PASSED] DP
[22:37:29] [PASSED] HDMI-A
[22:37:29] [PASSED] HDMI-B
[22:37:29] [PASSED] TV
[22:37:29] [PASSED] eDP
[22:37:29] [PASSED] Virtual
[22:37:29] [PASSED] DSI
[22:37:29] [PASSED] DPI
[22:37:29] [PASSED] Writeback
[22:37:29] [PASSED] SPI
[22:37:29] [PASSED] USB
[22:37:29] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:37:29] =========== [PASSED] drm_connector_dynamic_init ============
[22:37:29] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:37:29] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:37:29] ======= drm_connector_dynamic_register (7 subtests) ========
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:37:29] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:37:29] ========= [PASSED] drm_connector_dynamic_register ==========
[22:37:29] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:37:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:37:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:37:29] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:37:29] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:37:29] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:37:29] [PASSED] NTSC
[22:37:29] [PASSED] NTSC-443
[22:37:29] [PASSED] NTSC-J
[22:37:29] [PASSED] PAL
[22:37:29] [PASSED] PAL-M
[22:37:29] [PASSED] PAL-N
[22:37:29] [PASSED] SECAM
[22:37:29] [PASSED] Mono
[22:37:29] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:37:29] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:37:29] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:37:29] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:37:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:37:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:37:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:37:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:37:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:37:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:37:29] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:37:29] [PASSED] VIC 96
[22:37:29] [PASSED] VIC 97
[22:37:29] [PASSED] VIC 101
[22:37:29] [PASSED] VIC 102
[22:37:29] [PASSED] VIC 106
[22:37:29] [PASSED] VIC 107
[22:37:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:37:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:37:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:37:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:37:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:37:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:37:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:37:29] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:37:29] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:37:29] [PASSED] Automatic
[22:37:29] [PASSED] Full
[22:37:29] [PASSED] Limited 16:235
[22:37:29] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:37:29] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:37:29] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:37:29] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:37:29] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:37:29] [PASSED] RGB
[22:37:29] [PASSED] YUV 4:2:0
[22:37:29] [PASSED] YUV 4:2:2
[22:37:29] [PASSED] YUV 4:4:4
[22:37:29] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:37:29] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:37:29] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:37:29] ============= drm_damage_helper (21 subtests) ==============
[22:37:29] [PASSED] drm_test_damage_iter_no_damage
[22:37:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:37:29] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:37:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:37:29] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:37:29] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:37:29] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:37:29] [PASSED] drm_test_damage_iter_simple_damage
[22:37:29] [PASSED] drm_test_damage_iter_single_damage
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:37:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:37:29] [PASSED] drm_test_damage_iter_damage
[22:37:29] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:37:29] [PASSED] drm_test_damage_iter_damage_one_outside
[22:37:29] [PASSED] drm_test_damage_iter_damage_src_moved
[22:37:29] [PASSED] drm_test_damage_iter_damage_not_visible
[22:37:29] ================ [PASSED] drm_damage_helper ================
[22:37:29] ============== drm_dp_mst_helper (3 subtests) ==============
[22:37:29] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:37:29] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:37:29] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:37:29] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:37:29] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:37:29] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:37:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:37:29] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:37:29] [PASSED] Link rate 2000000 lane count 4
[22:37:29] [PASSED] Link rate 2000000 lane count 2
[22:37:29] [PASSED] Link rate 2000000 lane count 1
[22:37:29] [PASSED] Link rate 1350000 lane count 4
[22:37:29] [PASSED] Link rate 1350000 lane count 2
[22:37:29] [PASSED] Link rate 1350000 lane count 1
[22:37:29] [PASSED] Link rate 1000000 lane count 4
[22:37:29] [PASSED] Link rate 1000000 lane count 2
[22:37:29] [PASSED] Link rate 1000000 lane count 1
[22:37:29] [PASSED] Link rate 810000 lane count 4
[22:37:29] [PASSED] Link rate 810000 lane count 2
[22:37:29] [PASSED] Link rate 810000 lane count 1
[22:37:29] [PASSED] Link rate 540000 lane count 4
[22:37:29] [PASSED] Link rate 540000 lane count 2
[22:37:29] [PASSED] Link rate 540000 lane count 1
[22:37:29] [PASSED] Link rate 270000 lane count 4
[22:37:29] [PASSED] Link rate 270000 lane count 2
[22:37:29] [PASSED] Link rate 270000 lane count 1
[22:37:29] [PASSED] Link rate 162000 lane count 4
[22:37:29] [PASSED] Link rate 162000 lane count 2
[22:37:29] [PASSED] Link rate 162000 lane count 1
[22:37:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:37:29] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:37:29] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:37:29] [PASSED] DP_POWER_UP_PHY with port number
[22:37:29] [PASSED] DP_POWER_DOWN_PHY with port number
[22:37:29] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:37:29] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:37:29] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:37:29] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:37:29] [PASSED] DP_QUERY_PAYLOAD with port number
[22:37:29] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:37:29] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:37:29] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:37:29] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:37:29] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:37:29] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:37:29] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:37:29] [PASSED] DP_REMOTE_I2C_READ with port number
[22:37:29] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:37:29] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:37:29] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:37:29] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:37:29] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:37:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:37:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:37:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:37:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:37:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:37:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:37:29] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:37:29] ================ [PASSED] drm_dp_mst_helper ================
[22:37:29] ================== drm_exec (7 subtests) ===================
[22:37:29] [PASSED] sanitycheck
[22:37:29] [PASSED] test_lock
[22:37:29] [PASSED] test_lock_unlock
[22:37:29] [PASSED] test_duplicates
[22:37:29] [PASSED] test_prepare
[22:37:29] [PASSED] test_prepare_array
[22:37:29] [PASSED] test_multiple_loops
[22:37:29] ==================== [PASSED] drm_exec =====================
[22:37:29] =========== drm_format_helper_test (18 subtests) ===========
[22:37:29] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:37:29] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:37:29] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:37:29] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:37:29] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:37:29] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:37:29] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:37:29] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:37:29] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:37:29] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:37:29] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:37:29] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:37:29] ==================== drm_test_fb_swab =====================
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ================ [PASSED] drm_test_fb_swab =================
[22:37:29] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:37:29] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:37:29] [PASSED] single_pixel_source_buffer
[22:37:29] [PASSED] single_pixel_clip_rectangle
[22:37:29] [PASSED] well_known_colors
[22:37:29] [PASSED] destination_pitch
[22:37:29] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:37:29] ================= drm_test_fb_clip_offset =================
[22:37:29] [PASSED] pass through
[22:37:29] [PASSED] horizontal offset
[22:37:29] [PASSED] vertical offset
[22:37:29] [PASSED] horizontal and vertical offset
[22:37:29] [PASSED] horizontal offset (custom pitch)
[22:37:29] [PASSED] vertical offset (custom pitch)
[22:37:29] [PASSED] horizontal and vertical offset (custom pitch)
[22:37:29] ============= [PASSED] drm_test_fb_clip_offset =============
[22:37:29] ============== drm_test_fb_build_fourcc_list ==============
[22:37:29] [PASSED] no native formats
[22:37:29] [PASSED] XRGB8888 as native format
[22:37:29] [PASSED] remove duplicates
[22:37:29] [PASSED] convert alpha formats
[22:37:29] [PASSED] random formats
[22:37:29] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[22:37:29] =================== drm_test_fb_memcpy ====================
[22:37:29] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:37:29] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:37:29] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:37:29] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:37:29] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:37:29] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:37:29] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:37:29] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:37:29] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:37:29] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:37:29] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:37:29] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:37:29] =============== [PASSED] drm_test_fb_memcpy ================
[22:37:29] ============= [PASSED] drm_format_helper_test ==============
[22:37:29] ================= drm_format (18 subtests) =================
[22:37:29] [PASSED] drm_test_format_block_width_invalid
[22:37:29] [PASSED] drm_test_format_block_width_one_plane
[22:37:29] [PASSED] drm_test_format_block_width_two_plane
[22:37:29] [PASSED] drm_test_format_block_width_three_plane
[22:37:29] [PASSED] drm_test_format_block_width_tiled
[22:37:29] [PASSED] drm_test_format_block_height_invalid
[22:37:29] [PASSED] drm_test_format_block_height_one_plane
[22:37:29] [PASSED] drm_test_format_block_height_two_plane
[22:37:29] [PASSED] drm_test_format_block_height_three_plane
[22:37:29] [PASSED] drm_test_format_block_height_tiled
[22:37:29] [PASSED] drm_test_format_min_pitch_invalid
[22:37:29] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:37:29] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:37:29] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:37:29] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:37:29] [PASSED] drm_test_format_min_pitch_two_plane
[22:37:29] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:37:29] [PASSED] drm_test_format_min_pitch_tiled
[22:37:29] =================== [PASSED] drm_format ====================
[22:37:29] ============== drm_framebuffer (10 subtests) ===============
[22:37:29] ========== drm_test_framebuffer_check_src_coords ==========
[22:37:29] [PASSED] Success: source fits into fb
[22:37:29] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:37:29] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:37:29] [PASSED] Fail: overflowing fb with source width
[22:37:29] [PASSED] Fail: overflowing fb with source height
[22:37:29] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:37:29] [PASSED] drm_test_framebuffer_cleanup
[22:37:29] =============== drm_test_framebuffer_create ===============
[22:37:29] [PASSED] ABGR8888 normal sizes
[22:37:29] [PASSED] ABGR8888 max sizes
[22:37:29] [PASSED] ABGR8888 pitch greater than min required
[22:37:29] [PASSED] ABGR8888 pitch less than min required
[22:37:29] [PASSED] ABGR8888 Invalid width
[22:37:29] [PASSED] ABGR8888 Invalid buffer handle
[22:37:29] [PASSED] No pixel format
[22:37:29] [PASSED] ABGR8888 Width 0
[22:37:29] [PASSED] ABGR8888 Height 0
[22:37:29] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:37:29] [PASSED] ABGR8888 Large buffer offset
[22:37:29] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:37:29] [PASSED] ABGR8888 Invalid flag
[22:37:29] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:37:29] [PASSED] ABGR8888 Valid buffer modifier
[22:37:29] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:37:29] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] NV12 Normal sizes
[22:37:29] [PASSED] NV12 Max sizes
[22:37:29] [PASSED] NV12 Invalid pitch
[22:37:29] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:37:29] [PASSED] NV12 different modifier per-plane
[22:37:29] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:37:29] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] NV12 Modifier for inexistent plane
[22:37:29] [PASSED] NV12 Handle for inexistent plane
[22:37:29] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:37:29] [PASSED] YVU420 Normal sizes
[22:37:29] [PASSED] YVU420 Max sizes
[22:37:29] [PASSED] YVU420 Invalid pitch
[22:37:29] [PASSED] YVU420 Different pitches
[22:37:29] [PASSED] YVU420 Different buffer offsets/pitches
[22:37:29] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:37:29] [PASSED] YVU420 Valid modifier
[22:37:29] [PASSED] YVU420 Different modifiers per plane
[22:37:29] [PASSED] YVU420 Modifier for inexistent plane
[22:37:29] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:37:29] [PASSED] X0L2 Normal sizes
[22:37:29] [PASSED] X0L2 Max sizes
[22:37:29] [PASSED] X0L2 Invalid pitch
[22:37:29] [PASSED] X0L2 Pitch greater than minimum required
[22:37:29] [PASSED] X0L2 Handle for inexistent plane
[22:37:29] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:37:29] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:37:29] [PASSED] X0L2 Valid modifier
[22:37:29] [PASSED] X0L2 Modifier for inexistent plane
[22:37:29] =========== [PASSED] drm_test_framebuffer_create ===========
[22:37:29] [PASSED] drm_test_framebuffer_free
[22:37:29] [PASSED] drm_test_framebuffer_init
[22:37:29] [PASSED] drm_test_framebuffer_init_bad_format
[22:37:29] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:37:29] [PASSED] drm_test_framebuffer_lookup
[22:37:29] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:37:29] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:37:29] ================= [PASSED] drm_framebuffer =================
[22:37:29] ================ drm_gem_shmem (8 subtests) ================
[22:37:29] [PASSED] drm_gem_shmem_test_obj_create
[22:37:29] [PASSED] drm_gem_shmem_test_obj_create_private
[22:37:29] [PASSED] drm_gem_shmem_test_pin_pages
[22:37:29] [PASSED] drm_gem_shmem_test_vmap
[22:37:29] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:37:29] [PASSED] drm_gem_shmem_test_get_sg_table
[22:37:29] [PASSED] drm_gem_shmem_test_madvise
[22:37:29] [PASSED] drm_gem_shmem_test_purge
[22:37:29] ================== [PASSED] drm_gem_shmem ==================
[22:37:29] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:37:29] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:37:29] [PASSED] Automatic
[22:37:29] [PASSED] Full
[22:37:29] [PASSED] Limited 16:235
[22:37:29] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:37:29] [PASSED] drm_test_check_disable_connector
[22:37:29] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:37:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:37:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:37:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:37:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:37:29] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:37:29] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:37:29] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:37:29] [PASSED] drm_test_check_output_bpc_dvi
[22:37:29] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:37:29] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:37:29] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:37:29] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:37:29] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:37:29] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:37:29] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:37:29] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:37:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:37:29] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:37:29] [PASSED] drm_test_check_broadcast_rgb_value
[22:37:29] [PASSED] drm_test_check_bpc_8_value
[22:37:29] [PASSED] drm_test_check_bpc_10_value
[22:37:29] [PASSED] drm_test_check_bpc_12_value
[22:37:29] [PASSED] drm_test_check_format_value
[22:37:29] [PASSED] drm_test_check_tmds_char_value
[22:37:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:37:29] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:37:29] [PASSED] drm_test_check_mode_valid
[22:37:29] [PASSED] drm_test_check_mode_valid_reject
[22:37:29] [PASSED] drm_test_check_mode_valid_reject_rate
[22:37:29] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:37:29] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:37:29] ================= drm_managed (2 subtests) =================
[22:37:29] [PASSED] drm_test_managed_release_action
[22:37:29] [PASSED] drm_test_managed_run_action
[22:37:29] =================== [PASSED] drm_managed ===================
[22:37:29] =================== drm_mm (6 subtests) ====================
[22:37:29] [PASSED] drm_test_mm_init
[22:37:29] [PASSED] drm_test_mm_debug
[22:37:29] [PASSED] drm_test_mm_align32
[22:37:29] [PASSED] drm_test_mm_align64
[22:37:29] [PASSED] drm_test_mm_lowest
[22:37:29] [PASSED] drm_test_mm_highest
[22:37:29] ===================== [PASSED] drm_mm ======================
[22:37:29] ============= drm_modes_analog_tv (5 subtests) =============
[22:37:29] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:37:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:37:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:37:29] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:37:29] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:37:29] =============== [PASSED] drm_modes_analog_tv ===============
[22:37:29] ============== drm_plane_helper (2 subtests) ===============
[22:37:29] =============== drm_test_check_plane_state ================
[22:37:29] [PASSED] clipping_simple
[22:37:29] [PASSED] clipping_rotate_reflect
[22:37:29] [PASSED] positioning_simple
[22:37:29] [PASSED] upscaling
[22:37:29] [PASSED] downscaling
[22:37:29] [PASSED] rounding1
[22:37:29] [PASSED] rounding2
[22:37:29] [PASSED] rounding3
[22:37:29] [PASSED] rounding4
[22:37:29] =========== [PASSED] drm_test_check_plane_state ============
[22:37:29] =========== drm_test_check_invalid_plane_state ============
[22:37:29] [PASSED] positioning_invalid
[22:37:29] [PASSED] upscaling_invalid
[22:37:29] [PASSED] downscaling_invalid
[22:37:29] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:37:29] ================ [PASSED] drm_plane_helper =================
[22:37:29] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:37:29] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:37:29] [PASSED] None
[22:37:29] [PASSED] PAL
[22:37:29] [PASSED] NTSC
[22:37:29] [PASSED] Both, NTSC Default
[22:37:29] [PASSED] Both, PAL Default
[22:37:29] [PASSED] Both, NTSC Default, with PAL on command-line
[22:37:29] [PASSED] Both, PAL Default, with NTSC on command-line
[22:37:29] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:37:29] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:37:29] ================== drm_rect (9 subtests) ===================
[22:37:29] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:37:29] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:37:29] [PASSED] drm_test_rect_clip_scaled_clipped
[22:37:29] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:37:29] ================= drm_test_rect_intersect =================
[22:37:29] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:37:29] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:37:29] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:37:29] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:37:29] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:37:29] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:37:29] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:37:29] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:37:29] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:37:29] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:37:29] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:37:29] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:37:29] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:37:29] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:37:29] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:37:29] ============= [PASSED] drm_test_rect_intersect =============
[22:37:29] ================ drm_test_rect_calc_hscale ================
[22:37:29] [PASSED] normal use
[22:37:29] [PASSED] out of max range
[22:37:29] [PASSED] out of min range
[22:37:29] [PASSED] zero dst
[22:37:29] [PASSED] negative src
[22:37:29] [PASSED] negative dst
[22:37:29] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:37:29] ================ drm_test_rect_calc_vscale ================
[22:37:29] [PASSED] normal use
[22:37:29] [PASSED] out of max range
[22:37:29] [PASSED] out of min range
[22:37:29] [PASSED] zero dst
[22:37:29] [PASSED] negative src
[22:37:29] [PASSED] negative dst
[22:37:29] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:37:29] ================== drm_test_rect_rotate ===================
[22:37:29] [PASSED] reflect-x
[22:37:29] [PASSED] reflect-y
[22:37:29] [PASSED] rotate-0
[22:37:29] [PASSED] rotate-90
[22:37:29] [PASSED] rotate-180
stty: 'standard input': Inappropriate ioctl for device
[22:37:29] [PASSED] rotate-270
[22:37:29] ============== [PASSED] drm_test_rect_rotate ===============
[22:37:29] ================ drm_test_rect_rotate_inv =================
[22:37:29] [PASSED] reflect-x
[22:37:29] [PASSED] reflect-y
[22:37:29] [PASSED] rotate-0
[22:37:29] [PASSED] rotate-90
[22:37:29] [PASSED] rotate-180
[22:37:29] [PASSED] rotate-270
[22:37:29] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:37:29] ==================== [PASSED] drm_rect =====================
[22:37:29] ============================================================
[22:37:29] Testing complete. Ran 614 tests: passed: 614
[22:37:29] Elapsed time: 23.270s total, 1.673s configuring, 21.429s building, 0.151s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:37:29] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:37:31] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:37:38] Starting KUnit Kernel (1/1)...
[22:37:38] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:38] ================= ttm_device (5 subtests) ==================
[22:37:38] [PASSED] ttm_device_init_basic
[22:37:38] [PASSED] ttm_device_init_multiple
[22:37:38] [PASSED] ttm_device_fini_basic
[22:37:38] [PASSED] ttm_device_init_no_vma_man
[22:37:38] ================== ttm_device_init_pools ==================
[22:37:38] [PASSED] No DMA allocations, no DMA32 required
[22:37:38] [PASSED] DMA allocations, DMA32 required
[22:37:38] [PASSED] No DMA allocations, DMA32 required
[22:37:38] [PASSED] DMA allocations, no DMA32 required
[22:37:38] ============== [PASSED] ttm_device_init_pools ==============
[22:37:38] =================== [PASSED] ttm_device ====================
[22:37:38] ================== ttm_pool (8 subtests) ===================
[22:37:38] ================== ttm_pool_alloc_basic ===================
[22:37:38] [PASSED] One page
[22:37:38] [PASSED] More than one page
[22:37:38] [PASSED] Above the allocation limit
[22:37:38] [PASSED] One page, with coherent DMA mappings enabled
[22:37:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:37:38] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:37:38] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:37:38] [PASSED] One page
[22:37:38] [PASSED] More than one page
[22:37:38] [PASSED] Above the allocation limit
[22:37:38] [PASSED] One page, with coherent DMA mappings enabled
[22:37:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:37:38] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:37:38] [PASSED] ttm_pool_alloc_order_caching_match
[22:37:38] [PASSED] ttm_pool_alloc_caching_mismatch
[22:37:38] [PASSED] ttm_pool_alloc_order_mismatch
[22:37:38] [PASSED] ttm_pool_free_dma_alloc
[22:37:38] [PASSED] ttm_pool_free_no_dma_alloc
[22:37:38] [PASSED] ttm_pool_fini_basic
[22:37:38] ==================== [PASSED] ttm_pool =====================
[22:37:38] ================ ttm_resource (8 subtests) =================
[22:37:38] ================= ttm_resource_init_basic =================
[22:37:38] [PASSED] Init resource in TTM_PL_SYSTEM
[22:37:38] [PASSED] Init resource in TTM_PL_VRAM
[22:37:38] [PASSED] Init resource in a private placement
[22:37:38] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:37:38] ============= [PASSED] ttm_resource_init_basic =============
[22:37:38] [PASSED] ttm_resource_init_pinned
[22:37:38] [PASSED] ttm_resource_fini_basic
[22:37:38] [PASSED] ttm_resource_manager_init_basic
[22:37:38] [PASSED] ttm_resource_manager_usage_basic
[22:37:38] [PASSED] ttm_resource_manager_set_used_basic
[22:37:38] [PASSED] ttm_sys_man_alloc_basic
[22:37:38] [PASSED] ttm_sys_man_free_basic
[22:37:38] ================== [PASSED] ttm_resource ===================
[22:37:38] =================== ttm_tt (15 subtests) ===================
[22:37:38] ==================== ttm_tt_init_basic ====================
[22:37:38] [PASSED] Page-aligned size
[22:37:38] [PASSED] Extra pages requested
[22:37:38] ================ [PASSED] ttm_tt_init_basic ================
[22:37:38] [PASSED] ttm_tt_init_misaligned
[22:37:38] [PASSED] ttm_tt_fini_basic
[22:37:38] [PASSED] ttm_tt_fini_sg
[22:37:38] [PASSED] ttm_tt_fini_shmem
[22:37:38] [PASSED] ttm_tt_create_basic
[22:37:38] [PASSED] ttm_tt_create_invalid_bo_type
[22:37:38] [PASSED] ttm_tt_create_ttm_exists
[22:37:38] [PASSED] ttm_tt_create_failed
[22:37:38] [PASSED] ttm_tt_destroy_basic
[22:37:38] [PASSED] ttm_tt_populate_null_ttm
[22:37:38] [PASSED] ttm_tt_populate_populated_ttm
[22:37:38] [PASSED] ttm_tt_unpopulate_basic
[22:37:38] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:37:38] [PASSED] ttm_tt_swapin_basic
[22:37:38] ===================== [PASSED] ttm_tt ======================
[22:37:38] =================== ttm_bo (14 subtests) ===================
[22:37:38] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:37:38] [PASSED] Cannot be interrupted and sleeps
[22:37:38] [PASSED] Cannot be interrupted, locks straight away
[22:37:38] [PASSED] Can be interrupted, sleeps
[22:37:38] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:37:38] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:37:38] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:37:38] [PASSED] ttm_bo_reserve_double_resv
[22:37:38] [PASSED] ttm_bo_reserve_interrupted
[22:37:38] [PASSED] ttm_bo_reserve_deadlock
[22:37:38] [PASSED] ttm_bo_unreserve_basic
[22:37:38] [PASSED] ttm_bo_unreserve_pinned
[22:37:38] [PASSED] ttm_bo_unreserve_bulk
[22:37:38] [PASSED] ttm_bo_put_basic
[22:37:38] [PASSED] ttm_bo_put_shared_resv
[22:37:38] [PASSED] ttm_bo_pin_basic
[22:37:38] [PASSED] ttm_bo_pin_unpin_resource
[22:37:38] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:37:38] ===================== [PASSED] ttm_bo ======================
[22:37:38] ============== ttm_bo_validate (22 subtests) ===============
[22:37:38] ============== ttm_bo_init_reserved_sys_man ===============
[22:37:38] [PASSED] Buffer object for userspace
[22:37:38] [PASSED] Kernel buffer object
[22:37:38] [PASSED] Shared buffer object
[22:37:38] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:37:38] ============== ttm_bo_init_reserved_mock_man ==============
[22:37:38] [PASSED] Buffer object for userspace
[22:37:38] [PASSED] Kernel buffer object
[22:37:38] [PASSED] Shared buffer object
[22:37:38] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:37:38] [PASSED] ttm_bo_init_reserved_resv
[22:37:38] ================== ttm_bo_validate_basic ==================
[22:37:38] [PASSED] Buffer object for userspace
[22:37:38] [PASSED] Kernel buffer object
[22:37:38] [PASSED] Shared buffer object
[22:37:38] ============== [PASSED] ttm_bo_validate_basic ==============
[22:37:38] [PASSED] ttm_bo_validate_invalid_placement
[22:37:38] ============= ttm_bo_validate_same_placement ==============
[22:37:38] [PASSED] System manager
[22:37:38] [PASSED] VRAM manager
[22:37:38] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:37:38] [PASSED] ttm_bo_validate_failed_alloc
[22:37:38] [PASSED] ttm_bo_validate_pinned
[22:37:38] [PASSED] ttm_bo_validate_busy_placement
[22:37:38] ================ ttm_bo_validate_multihop =================
[22:37:38] [PASSED] Buffer object for userspace
[22:37:38] [PASSED] Kernel buffer object
[22:37:38] [PASSED] Shared buffer object
[22:37:38] ============ [PASSED] ttm_bo_validate_multihop =============
[22:37:38] ========== ttm_bo_validate_no_placement_signaled ==========
[22:37:38] [PASSED] Buffer object in system domain, no page vector
[22:37:38] [PASSED] Buffer object in system domain with an existing page vector
[22:37:38] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:37:38] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:37:38] [PASSED] Buffer object for userspace
[22:37:38] [PASSED] Kernel buffer object
[22:37:38] [PASSED] Shared buffer object
[22:37:38] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:37:38] [PASSED] ttm_bo_validate_move_fence_signaled
[22:37:38] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:37:38] [PASSED] Waits for GPU
[22:37:38] [PASSED] Tries to lock straight away
[22:37:39] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:37:39] [PASSED] ttm_bo_validate_swapout
[22:37:39] [PASSED] ttm_bo_validate_happy_evict
[22:37:39] [PASSED] ttm_bo_validate_all_pinned_evict
[22:37:39] [PASSED] ttm_bo_validate_allowed_only_evict
[22:37:39] [PASSED] ttm_bo_validate_deleted_evict
[22:37:39] [PASSED] ttm_bo_validate_busy_domain_evict
[22:37:39] [PASSED] ttm_bo_validate_evict_gutting
[22:37:39] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:37:39] ================= [PASSED] ttm_bo_validate =================
[22:37:39] ============================================================
[22:37:39] Testing complete. Ran 102 tests: passed: 102
[22:37:39] Elapsed time: 9.952s total, 1.692s configuring, 7.642s building, 0.521s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ CI.Build: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (13 preceding siblings ...)
2025-06-05 22:37 ` ✓ CI.KUnit: " Patchwork
@ 2025-06-05 22:48 ` Patchwork
2025-06-05 22:50 ` ✓ CI.Hooks: " Patchwork
` (4 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 22:48 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx6110.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8025.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8010.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8111.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8581.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-s35390a.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8025.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8111.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-rx8581.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-s35390a.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-sd3078.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-stk17ta8.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-tps6586x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-tps6594.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-sd3078.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-stk17ta8.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-tps6586x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-tps6594.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-tps65910.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-wilco-ec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-wm831x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-wm8350.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-x1205.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-tps65910.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-wilco-ec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-wm831x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-wm8350.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/rtc/rtc-x1205.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/algos/i2c-algo-bit.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/algos/i2c-algo-pca.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-scmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ccgx-ucsi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/algos/i2c-algo-bit.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/algos/i2c-algo-pca.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-scmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ccgx-ucsi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ali1535.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ali1563.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ali15x3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd756.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ali1535.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ali1563.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ali15x3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd8111.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd756.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cht-wc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-i801.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-isch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ismt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd8111.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cht-wc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-i801.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-isch.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ismt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-nforce2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-nvidia-gpu.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-piix4.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-nforce2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-nvidia-gpu.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-piix4.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-sis5595.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-sis630.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-sis96x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-via.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viapro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-sis5595.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-sis630.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-sis96x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-via.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viai2c-zhaoxin.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viapro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viai2c-common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd-mp2-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viai2c-zhaoxin.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viai2c-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd-mp2-pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd-mp2-plat.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cbus-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-designware-pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-gpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-amd-mp2-plat.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-kempld.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cbus-gpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-designware-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ocores.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-pca-platform.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-simtec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-kempld.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-xiic.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ocores.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-pca-platform.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-simtec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-diolan-u2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-xiic.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-dln2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ljca.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cp2615.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-diolan-u2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-dln2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-parport.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-ljca.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cp2615.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-mchp-pci1xxxx.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-robotfuzz-osif.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-taos-evm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-parport.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-tiny-usb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-mchp-pci1xxxx.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-robotfuzz-osif.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-taos-evm.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viperboard.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-tiny-usb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cros-ec-tunnel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-mlxcpld.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-viperboard.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-cros-ec-tunnel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-virtio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-mlxcpld.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-ltc4306.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-mlxcpld.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-pca9541.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/busses/i2c-virtio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-gpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-ltc4306.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-mlxcpld.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-pca954x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-pca9541.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-reg.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/i2c-smbus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/i2c-mux.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-pca954x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/muxes/i2c-mux-reg.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/i2c-smbus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/i2c-stub.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/i2c-mux.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/i3c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/i3c-master-cdns.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/dw-i3c-master.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i2c/i2c-stub.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/svc-i3c-master.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/i3c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/i3c-master-cdns.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/dw-i3c-master.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/svc-i3c-master.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-alink-dtu-m.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-anysee.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-apac-viewcomp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-alink-dtu-m.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-anysee.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-apac-viewcomp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-astrometa-t2hybrid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-asus-pc39.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-asus-ps3-100.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-astrometa-t2hybrid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-asus-pc39.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-asus-ps3-100.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-ati-x10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-a16d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-cardbus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-dvbt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-ati-x10.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-a16d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-cardbus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-dvbt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-m135a.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-rm-ks.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-m135a.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avermedia-rm-ks.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avertv-303.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-azurewave-ad-tu700.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-beelink-gs1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-beelink-mxiii.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-avertv-303.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-azurewave-ad-tu700.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-beelink-gs1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-behold-columbus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-beelink-mxiii.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-behold.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-budget-ci-old.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-cinergy-1400.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-behold-columbus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-behold.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-budget-ci-old.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-cinergy-1400.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-cinergy.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-ct-90405.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-d680-dmb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-delock-61959.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-cinergy.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-ct-90405.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-d680-dmb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-delock-61959.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dib0700-nec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dib0700-rc5.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-digitalnow-tinytwin.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-digittrade.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dib0700-nec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dib0700-rc5.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-digitalnow-tinytwin.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dm1105-nec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-digittrade.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dntv-live-dvb-t.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dreambox.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dtt200u.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dm1105-nec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dntv-live-dvb-t.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dreambox.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dtt200u.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dvbsky.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dvico-mce.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dvico-portable.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-em-terratec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dvbsky.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dvico-mce.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-dvico-portable.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-em-terratec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-encore-enltv2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-encore-enltv-fm53.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-encore-enltv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-evga-indtube.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-encore-enltv2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-encore-enltv-fm53.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-encore-enltv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-eztv.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-evga-indtube.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-flydvb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-flyvideo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-fusionhdtv-mce.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-eztv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-gadmei-rm008z.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-flydvb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-flyvideo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-fusionhdtv-mce.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-geekbox.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-gadmei-rm008z.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-gotview7135.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-hauppauge.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-geekbox.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-hisi-poplar.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-gotview7135.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-hauppauge.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-hisi-tv-demo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-imon-mce.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-hisi-poplar.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-imon-pad.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-imon-rsc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-hisi-tv-demo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-imon-mce.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-iodata-bctv7e.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-imon-pad.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-imon-rsc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-it913x-v1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-it913x-v2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kaiomy.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-iodata-bctv7e.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-it913x-v1.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-it913x-v2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kaiomy.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-khadas.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-khamsin.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kworld-315u.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kworld-pc150u.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-khadas.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-khamsin.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kworld-315u.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-leadtek-y04g0051.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kworld-pc150u.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-lme2510.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-manli.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-leadtek-y04g0051.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-mecool-kiii-pro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-lme2510.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-manli.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-mecool-kii-pro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-medion-x10-digitainer.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-mecool-kiii-pro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-medion-x10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-medion-x10-or2x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-mecool-kii-pro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-medion-x10-digitainer.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-minix-neo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-medion-x10.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-medion-x10-or2x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-digivox-iii.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-digivox-ii.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-tvanywhere.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-minix-neo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-digivox-iii.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-digivox-ii.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-tvanywhere.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-mygica-utv3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-nebula.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-mygica-utv3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-nebula.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-norwood.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-npgtech.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-odroid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-norwood.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pctv-sedna.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-npgtech.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-odroid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pine64.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pinnacle-color.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pinnacle-grey.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pctv-sedna.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pine64.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pinnacle-color.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pinnacle-grey.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview-002t.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview-mk12.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview-new.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview-002t.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview-mk12.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview-new.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pixelview.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-powercolor-real-angel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-proteus-2309.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-purpletv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pv951.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-rc6-mce.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-powercolor-real-angel.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-proteus-2309.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-purpletv.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-pv951.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-rc6-mce.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-real-audio-220-32-keys.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-reddo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-siemens-gigaset-rc20.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-snapstream-firefly.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-real-audio-220-32-keys.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-reddo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-siemens-gigaset-rc20.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-snapstream-firefly.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-streamzap.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-su3000.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tanix-tx3mini.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tanix-tx5max.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tbs-nec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-streamzap.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-su3000.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tanix-tx3mini.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tanix-tx5max.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tbs-nec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-technisat-ts35.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-technisat-usb2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-technisat-ts35.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-technisat-usb2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-cinergy-xs.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-slim-2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-slim.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tevii-nec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-cinergy-xs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-slim-2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-terratec-slim.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tevii-nec.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/kallsyms
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tivo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-total-media-in-hand-02.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/sorttable
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-total-media-in-hand.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/asn1_compiler
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-trekstor.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tt-1500.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tivo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-total-media-in-hand-02.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-total-media-in-hand.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-trekstor.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-tt-1500.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-twinhan1027.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/basic/fixdep
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-vega-s9x.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/genksyms/genksyms.o
YACC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/genksyms/parse.tab.[ch]
LEX debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/genksyms/lex.lex.c
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-twinhan1027.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-vega-s9x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videomate-m1f.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videomate-s350.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videomate-tv-pvr.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videostrong-kii-pro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-wetek-hub.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videomate-m1f.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videomate-s350.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videomate-tv-pvr.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-videostrong-kii-pro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-wetek-play2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-wetek-hub.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/selinux/mdp/mdp
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-winfast.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-x96max.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-wetek-play2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-winfast.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-x96max.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-xbox-360.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-xbox-dvd.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/sign-file
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-zx-irdec.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/insert-sys-cert
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/rc-core.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/mod/modpost.o
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-imon-decoder.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/mod/file2alias.o
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/mod/sumversion.o
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-xbox-360.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-xbox-dvd.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/mod/symsearch.o
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/keymaps/rc-zx-irdec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-jvc-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/rc-core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-imon-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-mce_kbd-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-nec-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-jvc-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-rc5-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-mce_kbd-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-nec-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-rc6-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-rcmm-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-rc5-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-sanyo-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-rc6-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-sharp-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-rcmm-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-sony-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-sanyo-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-xmp-decoder.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-sharp-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ene_ir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-sony-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/fintek-cir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir-xmp-decoder.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/igorplugusb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ene_ir.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/iguanair.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/fintek-cir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/igorplugusb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/imon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/imon_raw.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/iguanair.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ite-cir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/imon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/imon_raw.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/mceusb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/nuvoton-cir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ite-cir.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/redrat3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/serial_ir.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/streamzap.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/mceusb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/nuvoton-cir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/redrat3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/serial_ir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/streamzap.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir_toy.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ttusbir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ir_toy.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/winbond-cir.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ttusbir.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ati_remote.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/rc-loopback.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/xbox_remote.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/core/cec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/winbond-cir.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/i2c/ch7322.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/ati_remote.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/rc-loopback.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/rc/xbox_remote.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/i2c/tda9950.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/core/cec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/i2c/ch7322.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/platform/cros-ec/cros-ec-cec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/i2c/tda9950.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/platform/cec-gpio/cec-gpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/platform/cros-ec/cros-ec-cec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/platform/seco/seco-cec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/platform/cec-gpio/cec-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/usb/pulse8/pulse8-cec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/usb/rainshadow/rainshadow-cec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/platform/seco/seco-cec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/pps/clients/pps-ldisc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/pps/clients/pps_parport.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/usb/pulse8/pulse8-cec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/media/cec/usb/rainshadow/rainshadow-cec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/pps/clients/pps-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_ines.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/pps/clients/pps-ldisc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/pps/clients/pps_parport.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/pps/clients/pps-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_kvm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_ines.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_vmclock.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_clockmatrix.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_kvm.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_fc3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_vmclock.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_clockmatrix.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_idt82p33.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_mock.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_fc3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_vmw.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_ocp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_idt82p33.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_mock.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_vmw.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/reset/atc260x-poweroff.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ptp/ptp_ocp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ip5xxx_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8925_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wm831x_backup.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/reset/atc260x-poweroff.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ip5xxx_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wm831x_power.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8925_power.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wm831x_backup.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wm8350_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/test_power.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wm831x_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/88pm860x_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wm8350_power.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/test_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/adp5061.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cw2015_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/88pm860x_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2760_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2780_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/adp5061.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cw2015_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2781_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2782_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2760_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2780_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ltc2941-battery-gauge.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2781_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ds2782_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/goldfish_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/sbs-battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ltc2941-battery-gauge.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/sbs-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/sbs-manager.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/goldfish_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/sbs-battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq27xxx_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/sbs-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/sbs-manager.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq27xxx_battery_i2c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq27xxx_battery_hdq.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq27xxx_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/da9030_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/da9052-battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq27xxx_battery_i2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq27xxx_battery_hdq.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/da9030_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/da9150-fg.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/da9052-battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max17042_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max1720x_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/da9150-fg.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max1721x_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max17042_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max1720x_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt5033_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt5033_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max1721x_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt9455_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt9467-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt5033_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt5033_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt9471.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt9455_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt9467-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/88pm860x_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/isp1704_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/rt9471.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8903_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/lp8727_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/88pm860x_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/isp1704_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8903_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/lp8727_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/gpio-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/lt3651-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ltc4162-l-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/gpio-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/lt3651-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max14577_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ltc4162-l-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max77693_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max77976_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8997_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max14577_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8998_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max77693_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max77976_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8997_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/mt6360_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq2415x_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/max8998_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq24190_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq24257_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/mt6360_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq24735-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq2415x_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq24190_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq24257_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq2515x_charger.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/genksyms/parse.tab.o
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq25890_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq24735-charger.ko
HOSTCC debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/genksyms/lex.lex.o
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq25980_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq256xx_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq2515x_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq25890_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq25980_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/smb347-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bq256xx_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/tps65090-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/axp288_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cros_charge-control.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/smb347-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/tps65090-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cros_usbpd-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/axp288_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cros_charge-control.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cros_peripheral_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bd99954-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wilco-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cros_usbpd-charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/cros_peripheral_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/bd99954-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/surface_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/wilco-charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/surface_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ug3105_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/mm8013.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/surface_battery.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/surface_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/ug3105_battery.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/sequencing/pwrseq-core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/supply/mm8013.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hwmon-vid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/acpi_power_meter.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus_atk0110.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/power/sequencing/pwrseq-core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hwmon-vid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/acpi_power_meter.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus_atk0110.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus-ec-sensors.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus_wmi_sensors.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hp-wmi-sensors.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asb100.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83627hf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus-ec-sensors.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus_wmi_sensors.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hp-wmi-sensors.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asb100.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83773g.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83627hf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83792d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83793.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83795.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83781d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83773g.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83792d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83793.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83795.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83791d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83781d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/abituguru.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/abituguru3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ad7314.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ad7414.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83791d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/abituguru.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/abituguru3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ad7314.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ad7414.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ad7418.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adc128d818.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adcxx.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1025.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ad7418.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adc128d818.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adcxx.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1025.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1026.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1029.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1031.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1026.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1029.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1031.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1177.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm9240.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ads7828.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ads7871.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm1177.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adm9240.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ads7828.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7x10.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ads7871.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7310.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7410.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7411.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7462.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7x10.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7310.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7410.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7411.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7462.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7470.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7475.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/aht10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/applesmc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/aquacomputer_d5next.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7470.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/adt7475.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/aht10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/as370-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/applesmc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asc7621.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/aquacomputer_d5next.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus_rog_ryujin.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/atxp1.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/as370-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asc7621.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/axi-fan-control.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/asus_rog_ryujin.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/atxp1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/chipcap2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/coretemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/axi-fan-control.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/corsair-cpro.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/corsair-psu.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/cros_ec_hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/chipcap2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/coretemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/corsair-cpro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/corsair-psu.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/cros_ec_hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/da9052-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/da9055-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/dell-smm-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/dme1737.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/da9052-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/da9055-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/dell-smm-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/drivetemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/dme1737.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ds620.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ds1621.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc1403.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/drivetemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ds620.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc2103.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ds1621.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc1403.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc2305.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc6w201.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc2103.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/f71805f.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc2305.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/emc6w201.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/f71882fg.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/f75375s.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/f71805f.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/fam15h_power.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/fschmd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/f71882fg.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/f75375s.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ftsteutates.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/fam15h_power.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/fschmd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/g760a.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/g762.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/gigabyte_waterforce.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ftsteutates.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/gl518sm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/g760a.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/g762.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/gigabyte_waterforce.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/gl520sm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/gl518sm.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hih6130.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hs3001.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/i5500_temp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/gl520sm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hih6130.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/hs3001.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/i5k_amb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/i5500_temp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ibmaem.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ibmpex.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina209.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/i5k_amb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina2xx.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ibmaem.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ibmpex.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina209.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina238.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina3221.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina2xx.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/intel-m10-bmc-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/it87.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina238.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ina3221.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/intel-m10-bmc-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/jc42.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/it87.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/k8temp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/k10temp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lenovo-ec-sensors.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/jc42.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/k8temp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lineage-pem.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/k10temp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lenovo-ec-sensors.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm63.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm70.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lineage-pem.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm73.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm63.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm70.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm75.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm73.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm77.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm78.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm80.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm75.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm83.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm77.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm78.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm80.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm85.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm87.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm83.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm90.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm92.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm93.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm85.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm87.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm90.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm92.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm95234.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm93.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm95241.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm95245.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2945.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2947-core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm95234.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm95241.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/lm95245.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2945.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2947-core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2947-i2c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2947-spi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2990.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2947-i2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2947-spi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2990.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2991.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2992.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4151.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4215.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4222.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2991.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc2992.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4151.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4245.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4215.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4222.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4260.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4261.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4245.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4282.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4260.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4261.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max1111.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max127.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/ltc4282.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max16065.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max1619.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max1668.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max1111.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max127.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max16065.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max197.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max1619.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max1668.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31722.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31730.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max197.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31760.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31722.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31730.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6620.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6621.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31760.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6639.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6650.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6620.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6621.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6697.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6639.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31790.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6650.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31827.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mc13783-adc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max6697.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31790.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mc34vr500.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/max31827.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mc13783-adc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mcp3021.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tc654.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mc34vr500.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tps23861.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mlxreg-fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mcp3021.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tc654.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/menf21bmc_hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tps23861.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mlxreg-fan.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mr75203.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6683.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6775-core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/menf21bmc_hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6775.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/mr75203.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6683.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6775-core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6775-i2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6775.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct7802.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct7904.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/npcm750-pwm-fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct6775-i2c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nzxt-kraken2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct7802.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nct7904.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/npcm750-pwm-fan.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nzxt-kraken3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nzxt-kraken2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nzxt-smart2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/oxp-sensors.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pc87360.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nzxt-kraken3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/nzxt-smart2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/oxp-sensors.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pc87427.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pc87360.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pcf8591.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/powerz.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/powr1220.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pc87427.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pt5161l.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pcf8591.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/powerz.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/powr1220.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pwm-fan.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sbtsi_temp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pt5161l.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sbrmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pwm-fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sbtsi_temp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sch56xx-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sbrmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sch5627.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sch5636.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht15.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht21.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sch56xx-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sch5627.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sch5636.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht3x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht15.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht21.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht4x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/shtc1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sis5595.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht3x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sht4x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/shtc1.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sis5595.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smpro-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smsc47b397.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smsc47m1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smsc47m192.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smpro-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smsc47b397.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/stts751.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smsc47m1.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/smsc47m192.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/surface_fan.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sy7636a-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/amc6821.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/stts751.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tc74.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/surface_fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/sy7636a-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/amc6821.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/thmc50.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tc74.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp102.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp103.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp108.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/thmc50.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp102.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp103.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp401.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp108.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp421.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp464.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp513.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp401.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp421.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp464.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/via-cputemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/tmp513.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/via686a.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/vt1211.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/vt8231.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/via-cputemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/via686a.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/vt1211.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83627ehf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/vt8231.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83l785ts.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83l786ng.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/wm831x-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/wm8350-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83627ehf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83l785ts.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/w83l786ng.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/wm831x-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/wm8350-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/xgene-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/occ/occ-hwmon-common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/occ/occ-p8-hwmon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/peci/peci-cputemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/xgene-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/occ/occ-hwmon-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/occ/occ-p8-hwmon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/peci/peci-cputemp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/peci/peci-dimmtemp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pmbus_core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pmbus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/acbel-fsg032.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/adm1266.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/peci/peci-dimmtemp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pmbus_core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pmbus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/acbel-fsg032.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/adm1266.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/adm1275.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/adp1050.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/bel-pfe.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/bpa-rs600.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/adm1275.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/adp1050.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/bel-pfe.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/bpa-rs600.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/delta-ahe50dc-fan.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/fsp-3y.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ibm-cffps.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/dps920ab.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/delta-ahe50dc-fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/fsp-3y.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ibm-cffps.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/dps920ab.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/inspur-ipsps.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ir35221.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ir36021.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ir38064.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/inspur-ipsps.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ir35221.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ir36021.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ir38064.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/irps5401.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/isl68137.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/lm25066.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/lt7182s.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ltc2978.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/irps5401.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/isl68137.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/lm25066.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/lt7182s.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ltc3815.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ltc2978.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max15301.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max16064.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max16601.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ltc3815.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max15301.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max16064.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max16601.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max20730.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max20751.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max31785.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max34440.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max20730.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max20751.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max31785.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max34440.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max8688.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2856.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2888.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2891.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2975.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/max8688.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2856.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2888.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2891.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2993.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2975.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp5023.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp5920.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp5990.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp2993.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp5023.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp5920.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp5990.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp9941.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mpq7932.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mpq8785.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pli1209bc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mp9941.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mpq7932.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/mpq8785.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pli1209bc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pm6764tr.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pxe1610.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/q54sj108a2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/stpddc60.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pm6764tr.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pxe1610.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/q54sj108a2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tda38640.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/stpddc60.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tps40422.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tps53679.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tps546d24.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tda38640.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tps40422.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tps53679.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/tps546d24.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ucd9000.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ucd9200.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/xdp710.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/xdpe12284.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ucd9000.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/ucd9200.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/xdpe12284.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/xdp710.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/xdpe152c4.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/zl6100.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pim4328.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_powerclamp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/xdpe152c4.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/zl6100.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hwmon/pmbus/pim4328.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_powerclamp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_soc_dts_iosf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_soc_dts_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3400_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_soc_dts_iosf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_soc_dts_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3400_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3402_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3403_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_device.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3401_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3402_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3403_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_device.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci_legacy.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3401_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_rapl.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_rfim.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci_legacy.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_rapl.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_mbox.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_rfim.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_wt_req.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_wt_hint.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_power_floor.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_mbox.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_wt_req.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3406_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_wt_hint.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/processor_thermal_power_floor.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_bxt_pmic_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_pch_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/int3406_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_tcc_cooling.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_bxt_pmic_thermal.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_pch_thermal.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pretimeout_panic.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pcwd_pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/thermal/intel/intel_tcc_cooling.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wdt_pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pcwd_usb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pretimeout_panic.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pcwd_pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/cadence_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wdt_pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pcwd_usb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/twl4030_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/dw_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/cadence_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/retu_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/twl4030_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/dw_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/acquirewdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/retu_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/advantechwdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/advantech_ec_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/alim1535_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/acquirewdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/alim7101_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/advantechwdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/advantech_ec_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ebc-c384_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/alim1535_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/exar_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/alim7101_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/f71808e_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sp5100_tco.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ebc-c384_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/exar_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sbc_fitpc2_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/f71808e_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sp5100_tco.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/eurotechwdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ib700wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sbc_fitpc2_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ibmasr.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wafer5823wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/eurotechwdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ib700wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/i6300esb.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ibmasr.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wafer5823wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ie6xx_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/iTCO_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/lenovo_se10_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/i6300esb.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/iTCO_vendor_support.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ie6xx_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/iTCO_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/lenovo_se10_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/it8712f_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/iTCO_vendor_support.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/it87_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/hpwdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/kempld_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/it8712f_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/it87_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/hpwdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sc1200wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/kempld_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pc87413_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/nv_tco.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sbc60xxwdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sc1200wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/pc87413_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/nv_tco.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sch311x_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sbc60xxwdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/smsc37b787_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/tqmx86_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/via_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/w83627hf_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sch311x_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/smsc37b787_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/tqmx86_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/via_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/w83627hf_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/w83877f_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/w83977f_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/machzwd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sbc_epx_c3.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/w83877f_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/w83977f_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/machzwd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/mei_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/sbc_epx_c3.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ni903x_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/nic7018_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/mlx_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/simatic-ipc-wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/mei_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ni903x_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/nic7018_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/mlx_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/simatic-ipc-wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/of_xilinx_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/mena21_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/xen_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/cros_ec_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/of_xilinx_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/mena21_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/xen_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/cros_ec_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9052_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9055_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9062_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9063_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wdat_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9052_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9055_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9062_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/da9063_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wdat_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wm831x_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wm8350_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/max63xx_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ziirave_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wm831x_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/wm8350_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/max63xx_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/ziirave_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/menf21bmc_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/menz69_wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/rave-sp-wdt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid0.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/menf21bmc_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/menz69_wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/watchdog/rave-sp-wdt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid0.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid456.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/bcache/bcache.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-unstripe.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid1.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-bufio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/raid456.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-unstripe.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-bio-prison.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-crypt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/bcache/bcache.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-delay.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-flakey.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-bufio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-bio-prison.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-crypt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-delay.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-flakey.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-multipath.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-round-robin.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-queue-length.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-service-time.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-multipath.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-round-robin.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-queue-length.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-service-time.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-historical-service-time.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-io-affinity.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-switch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-snapshot.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-historical-service-time.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-io-affinity.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-switch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/persistent-data/dm-persistent-data.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-snapshot.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-mirror.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-log.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-region-hash.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-log-userspace.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/persistent-data/dm-persistent-data.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-mirror.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-log.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-region-hash.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-zero.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-log-userspace.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-raid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-thin-pool.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-verity.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-vdo/dm-vdo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-zero.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-raid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-thin-pool.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-verity.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-cache.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-cache-smq.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-ebs.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-era.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-clone.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-vdo/dm-vdo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-cache.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-cache-smq.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-ebs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-era.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-clone.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-log-writes.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-integrity.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-zoned.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-writecache.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/edac_mce_amd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-log-writes.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-integrity.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-zoned.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/md/dm-writecache.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/edac_mce_amd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i5100_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i5400_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i7300_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i7core_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/sb_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i5100_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i5400_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i7300_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i7core_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/sb_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/pnd2_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/igen6_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/e752x_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i82975x_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/pnd2_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/igen6_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/e752x_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i82975x_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i3000_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i3200_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/ie31200_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/x38_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/amd64_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i3000_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i3200_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/ie31200_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/x38_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/amd64_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/skx_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/skx_edac_common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i10nm_edac.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpufreq/speedstep-lib.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/skx_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/skx_edac_common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/edac/i10nm_edac.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpufreq/speedstep-lib.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpufreq/p4-clockmod.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpufreq/amd_freq_sensitivity.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpuidle/cpuidle-haltpoll.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/core/mmc_block.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpufreq/p4-clockmod.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpufreq/amd_freq_sensitivity.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/cpuidle/cpuidle-haltpoll.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/core/sdio_uart.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/core/mmc_block.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/sdhci_f_sdh30.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/wbsd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/alcor.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/core/sdio_uart.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/mtk-sd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/sdhci_f_sdh30.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/wbsd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/alcor.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/tifm_sd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/mmc_spi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/of_mmc_spi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/mtk-sd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/cb710-mmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/tifm_sd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/mmc_spi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/of_mmc_spi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/via-sdmmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/cb710-mmc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/vub300.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/ushc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/usdhi6rol0.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/via-sdmmc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/toshsd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/vub300.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/ushc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/usdhi6rol0.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/rtsx_usb_sdmmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/toshsd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/mmc_hsq.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/sdhci-xenon-driver.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/core/ufshcd-core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/rtsx_usb_sdmmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/mmc_hsq.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/mmc/host/sdhci-xenon-driver.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/tc-dwc-g210-pci.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/ufshcd-dwc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/tc-dwc-g210.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/core/ufshcd-core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/cdns-pltfrm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/tc-dwc-g210-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/ufshcd-dwc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/tc-dwc-g210.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/ufshcd-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/cdns-pltfrm.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/ufshcd-pltfrm.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/cirrus/cs_dsp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/efi-pstore.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/ufshcd-pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/ufs/host/ufshcd-pltfrm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/cirrus/cs_dsp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/efi-pstore.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/efibc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/test/efi_test.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/capsule-loader.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/iscsi_ibft.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/efibc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/test/efi_test.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/efi/capsule-loader.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/qemu_fw_cfg.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/iscsi_ibft.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/ccp/ccp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/ccp/ccp-crypto.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/inside-secure/crypto_safexcel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_common/intel_qat.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/firmware/qemu_fw_cfg.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/ccp/ccp-crypto.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/ccp/ccp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_dh895xcc/qat_dh895xcc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/inside-secure/crypto_safexcel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c3xxx/qat_c3xxx.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c62x/qat_c62x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_4xxx/qat_4xxx.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_420xx/qat_420xx.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_dh895xcc/qat_dh895xcc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_common/intel_qat.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c3xxx/qat_c3xxx.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c62x/qat_c62x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_4xxx/qat_4xxx.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_420xx/qat_420xx.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_dh895xccvf/qat_dh895xccvf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c3xxxvf/qat_c3xxxvf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c62xvf/qat_c62xvf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/iaa/iaa_crypto.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_dh895xccvf/qat_dh895xccvf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c3xxxvf/qat_c3xxxvf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/qat/qat_c62xvf/qat_c62xvf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/atmel-i2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/intel/iaa/iaa_crypto.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/atmel-ecc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/atmel-sha204a.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/atmel-i2c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/cavium/nitrox/n5pf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/atmel-ecc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/atmel-sha204a.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/padlock-aes.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/padlock-sha.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/virtio/virtio_crypto.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/cavium/nitrox/n5pf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/amlogic/amlogic-gxl-crypto.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/padlock-aes.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/padlock-sha.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/virtio/virtio_crypto.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/uhid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/crypto/amlogic/amlogic-gxl-crypto.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-generic.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-a4tech.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/uhid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-accutouch.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-generic.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-a4tech.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-alps.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-apple.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-asus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-accutouch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-belkin.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-alps.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-apple.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-asus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cherry.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-belkin.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-chicony.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-corsair.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-corsair-void.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cherry.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-chicony.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cougar.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-corsair.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-corsair-void.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cp2112.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cypress.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-elan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cougar.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-elecom.ko
HOSTLD debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/genksyms/genksyms
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cp2112.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-cypress.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-elan.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-elo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-elecom.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-ft260.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-glorious.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-elo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-vivaldi-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-ft260.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-glorious.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-google-hammer.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-vivaldi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-holtek-kbd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-vivaldi-common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-holtek-mouse.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-holtekff.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-google-hammer.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-vivaldi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-holtek-kbd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-holtek-mouse.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-ite.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-holtekff.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-jabra.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-kensington.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-ite.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-keytouch.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-jabra.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-kensington.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-lenovo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-logitech.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-keytouch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-lg-g15.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-logitech-dj.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-lenovo.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-logitech.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-logitech-hidpp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-lg-g15.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-logitech-dj.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-magicmouse.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-mcp2200.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-mcp2221.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-logitech-hidpp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-microsoft.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-magicmouse.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-mcp2200.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-mcp2221.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-monterey.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-multitouch.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-microsoft.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-ntrig.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-monterey.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-multitouch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-penmount.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-ntrig.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-plantronics.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-primax.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-razer.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-penmount.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-redragon.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-plantronics.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-primax.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-razer.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-redragon.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-arvo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-isku.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-arvo.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-kone.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-koneplus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-isku.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-konepure.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-kovaplus.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-kone.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-koneplus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-lua.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-konepure.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-kovaplus.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-pyra.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-ryos.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-lua.ko
dpkg-deb: building package 'linux-libc-dev' in '../linux-libc-dev_6.15.0-g29f6c4d38a05-2_amd64.deb'.
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-savu.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-pyra.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-ryos.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-rmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-roccat-savu.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-saitek.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-samsung.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-rmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-semitek.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-saitek.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-sigmamicro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-samsung.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-steam.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-topre.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-semitek.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-xiaomi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-sigmamicro.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-steam.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-topre.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-sensor-hub.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-sensor-custom.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-xiaomi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/usbhid/usbhid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/usbhid/usbkbd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-sensor-hub.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/hid-sensor-custom.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/usbhid/usbmouse.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/usbhid/usbhid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/i2c-hid/i2c-hid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/usbhid/usbkbd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/i2c-hid/i2c-hid-acpi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/i2c-hid/i2c-hid-of.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/usbhid/usbmouse.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ishtp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/i2c-hid/i2c-hid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/i2c-hid/i2c-hid-acpi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/i2c-hid/i2c-hid-of.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ish-ipc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ishtp-hid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ishtp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ishtp-loader.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ish-ipc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ishtp-hid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/amd-sfh-hid/amd_sfh.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/intel-ish-hid/intel-ishtp-loader.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/surface-hid/surface_hid_core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/surface-hid/surface_kbd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/vme_user/vme_user.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/amd-sfh-hid/amd_sfh.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/surface-hid/surface_hid_core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/hid/surface-hid/surface_kbd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/vme_user/vme_tsi148.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/vme_user/vme_user.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/vme_user/vme_fake.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fbtft.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_agm1264k-fl.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_bd663474.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/vme_user/vme_tsi148.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/vme_user/vme_fake.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fbtft.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_agm1264k-fl.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_bd663474.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8340bn.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8347d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8353d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8357d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9163.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8340bn.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8347d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8353d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_hx8357d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9163.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9320.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9325.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9340.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9341.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9320.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9325.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9340.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9341.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9481.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9486.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_pcd8544.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ra8875.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_s6d02a1.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9481.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ili9486.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_pcd8544.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ra8875.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_s6d1121.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_s6d02a1.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_seps525.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_sh1106.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1289.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_s6d1121.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_seps525.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_sh1106.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1289.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1305.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1306.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1325.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1331.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1351.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1305.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1306.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1325.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1331.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_ssd1351.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_st7735r.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_st7789v.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_tinylcd.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_tls8204.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_st7735r.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_st7789v.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_tinylcd.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_tls8204.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_uc1611.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_uc1701.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_upd161704.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/most/net/most_net.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/most/i2c/most_i2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_uc1611.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_uc1701.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/fbtft/fb_upd161704.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/most/net/most_net.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/amd/pmc/amd-pmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/staging/most/i2c/most_i2c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/amd/pmf/amd-pmf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/alienware-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dcdbas.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/amd/pmc/amd-pmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/amd/pmf/amd-pmf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/alienware-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dcdbas.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell_rbu.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-pc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-smbios.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-smo8800.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-lis3lv02d.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell_rbu.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-pc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-smbios.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-smo8800.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-lis3lv02d.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-aio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-descriptor.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-ddv.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-aio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-descriptor.ko
HOSTLD debian/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/usr/src/linux-headers-6.15.0-lgci-xe-g29f6c4d38a05/scripts/mod/modpost
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-led.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-sysman/dell-wmi-sysman.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-ddv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hp/hp_accel.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hp/hp-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-led.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/dell/dell-wmi-sysman/dell-wmi-sysman.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hp/hp-bioscfg/hp-bioscfg.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hp/hp_accel.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hp/hp-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/atomisp2/intel_atomisp2_led.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/atomisp2/intel_atomisp2_pm.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/wmi/intel-wmi-sbl-fw-update.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hp/hp-bioscfg/hp-bioscfg.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/wmi/intel-wmi-thunderbolt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/atomisp2/intel_atomisp2_led.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/atomisp2/intel_atomisp2_pm.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/wmi/intel-wmi-sbl-fw-update.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/ifs/intel_ifs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/wmi/intel-wmi-thunderbolt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int1092/intel_sar.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int3472/intel_skl_int3472_discrete.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int3472/intel_skl_int3472_tps68470.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/ifs/intel_ifs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int1092/intel_sar.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int3472/intel_skl_int3472_discrete.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int3472/intel_skl_int3472_common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int3472/intel_skl_int3472_tps68470.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/int3472/intel_skl_int3472_common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmc/intel_pmc_core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmc/intel_pmc_core_pltdrv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmt/pmt_class.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmt/pmt_telemetry.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmt/pmt_crashlog.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmc/intel_pmc_core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmc/intel_pmc_core_pltdrv.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmt/pmt_class.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmt/pmt_telemetry.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_mmio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/pmt/pmt_crashlog.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_mbox_pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_mbox_msr.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_mmio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_mbox_pci.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_if_mbox_msr.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_tpmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/telemetry/intel_telemetry_core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/telemetry/intel_telemetry_pltdrv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/telemetry/intel_telemetry_debugfs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/speed_select_if/isst_tpmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/telemetry/intel_telemetry_core.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/telemetry/intel_telemetry_pltdrv.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/telemetry/intel_telemetry_debugfs.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-tpmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-hid.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-vbtn.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-tpmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-hid.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-int0002_vgpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-vbtn.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-ishtp_eclite.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-sdsi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-vsec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-int0002_vgpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-ishtp_eclite.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-sdsi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-vsec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-bytcrc_pwrsrc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-bxtwc_tmu.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-chtdc_ti_pwrbtn.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-chtwc_int33fe.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-crystal_cove_charger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-bytcrc_pwrsrc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-bxtwc_tmu.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-chtdc_ti_pwrbtn.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-chtwc_int33fe.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-crystal_cove_charger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-mrfld_pwrbtn.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-punit_ipc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-plr_tpmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-tpmi_power_domains.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-mrfld_pwrbtn.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-punit_ipc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-plr_tpmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-tpmi_power_domains.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-vsec_tpmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-smartconnect.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/wmi-bmof.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/huawei-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-vsec_tpmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel/intel-smartconnect.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/wmi-bmof.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/huawei-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/mxm-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/nvidia-wmi-ec-backlight.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/xiaomi-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/gigabyte-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/mxm-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/nvidia-wmi-ec-backlight.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/xiaomi-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/gigabyte-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/acerhdf.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/acer-wireless.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/acer-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/adv_swbutton.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/apple-gmux.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/acerhdf.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/acer-wireless.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/acer-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/adv_swbutton.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/apple-gmux.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-wireless.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-nb-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-wireless.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-tf103c-dock.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-nb-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/eeepc-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/eeepc-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/meraki-mx100.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/fujitsu-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/asus-tf103c-dock.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/fujitsu-tablet.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/eeepc-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/eeepc-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/meraki-mx100.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/fujitsu-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/gpd-pocket-fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/fujitsu-tablet.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/uv_sysfs.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/ibm_rtl.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hdaps.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/gpd-pocket-fan.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/uv_sysfs.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/ibm_rtl.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/hdaps.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/thinkpad_acpi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/think-lmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lenovo-yogabook.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lenovo-yoga-tab2-pro-1380-fastcharger.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/thinkpad_acpi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/think-lmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lenovo-yogabook.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lenovo-wmi-camera.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lenovo-yoga-tab2-pro-1380-fastcharger.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/quickstart.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/meegopad_anx7428.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/msi-ec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/msi-wmi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lenovo-wmi-camera.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/quickstart.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/meegopad_anx7428.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/msi-ec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/msi-wmi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/msi-wmi-platform.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/pcengines-apuv2.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/barco-p50-gpio.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/msi-wmi-platform.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/pcengines-apuv2.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/barco-p50-gpio.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/samsung-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/samsung-q10.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/toshiba_bluetooth.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/toshiba_haps.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/inspur_platform_profile.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/samsung-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/samsung-q10.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/toshiba_bluetooth.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/toshiba_haps.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/classmate-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/inspur_platform_profile.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lg-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/panasonic-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/system76_acpi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/classmate-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/lg-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/panasonic-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/system76_acpi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/topstar-laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/firmware_attributes_class.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/serial-multi-instantiate.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/wireless-hotkey.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/x86-android-tablets/vexia_atla10_ec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/topstar-laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/firmware_attributes_class.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/serial-multi-instantiate.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/wireless-hotkey.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/x86-android-tablets/vexia_atla10_ec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/x86-android-tablets/x86-android-tablets.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel_ips.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel_scu_pltdrv.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel_scu_ipcutil.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/x86-android-tablets/x86-android-tablets.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel_ips.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel_scu_pltdrv.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/intel_scu_ipcutil.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt-apollolake.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt-elkhartlake.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt-f7188x.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt-apollolake.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt-elkhartlake.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/siemens/simatic-ipc-batt-f7188x.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/silicom-platform.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/winmate-fm07-keys.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/sel3350-platform.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlx-platform.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/silicom-platform.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/winmate-fm07-keys.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/x86/sel3350-platform.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlx-platform.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlxreg-hotplug.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlxreg-io.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlxreg-lc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/nvsw-sn2201.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_acpi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlxreg-hotplug.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlxreg-io.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/mlxreg-lc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/mellanox/nvsw-sn2201.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_acpi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_laptop.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_privacy_screen.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_pstore.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_tbmc.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_laptop.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_privacy_screen.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_pstore.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/chromeos_tbmc.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_i2c.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_ishtp.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_typec_switch.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_spi.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_i2c.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_ishtp.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_typec_switch.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_spi.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_uart.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros-ec-typec.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_ec_lpcs.ko
INSTALL debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers/platform/chrome/cros_kbd_led_backlight.ko
STRIP debian/linux-image-6.15.0-lgci-xe-g29f6c4d38a05/lib/modules/6.15.0-lgci-xe-g29f6c4d38a05/kernel/drivers
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ CI.Hooks: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (14 preceding siblings ...)
2025-06-05 22:48 ` ✓ CI.Build: " Patchwork
@ 2025-06-05 22:50 ` Patchwork
2025-06-05 22:52 ` ✓ CI.checksparse: " Patchwork
` (3 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 22:50 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-debug"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-debug ']'
+ BUILD_DIR=/workspace/kernel/build64-debug
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-debug modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-debug'
GEN Makefile
DESCEND objtool
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-debug/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-debug/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-debug/tools/objtool/weak.o
CC /workspace/kernel/build64-debug/tools/objtool/check.o
CC /workspace/kernel/build64-debug/tools/objtool/special.o
CC /workspace/kernel/build64-debug/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-debug/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-debug/tools/objtool/elf.o
CC /workspace/kernel/build64-debug/tools/objtool/objtool.o
CC /workspace/kernel/build64-debug/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-debug/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-debug/tools/objtool/arch/x86/orc.o
CC /workspace/kernel/build64-debug/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-debug/tools/objtool/libctype.o
CC /workspace/kernel/build64-debug/tools/objtool/libstring.o
CC /workspace/kernel/build64-debug/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-debug/tools/objtool/librbtree.o
LD /workspace/kernel/build64-debug/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-debug/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-debug/tools/objtool/objtool
CALL ../scripts/checksyscalls.sh
make[1]: Leaving directory '/workspace/kernel/build64-debug'
++ nproc
+ make -j48 O=/workspace/kernel/build64-debug W=1 drivers/gpu/drm/xe
make[1]: Entering directory '/workspace/kernel/build64-debug'
make[2]: Nothing to be done for 'drivers/gpu/drm/xe'.
make[1]: Leaving directory '/workspace/kernel/build64-debug'
run-parts: executing /workspace/ci/hooks/11-build-32b
+++ realpath /workspace/ci/hooks/11-build-32b
++ dirname /workspace/ci/hooks/11-build-32b
+ THIS_SCRIPT_DIR=/workspace/ci/hooks
+ SRC_DIR=/workspace/kernel
+ TOOLS_SRC_DIR=/workspace/ci
+ '[' -n /workspace/kernel/build64-debug ']'
+ BUILD_DIR=/workspace/kernel/build64-debug
+ BUILD_DIR=/workspace/kernel/build64-debug/build32
+ cd /workspace/kernel
+ mkdir -p /workspace/kernel/build64-debug/build32
++ nproc
+ make -j48 ARCH=i386 O=/workspace/kernel/build64-debug/build32 defconfig
make[1]: Entering directory '/workspace/kernel/build64-debug/build32'
GEN Makefile
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/confdata.o
HOSTCC scripts/kconfig/expr.o
LEX scripts/kconfig/lexer.lex.c
YACC scripts/kconfig/parser.tab.[ch]
HOSTCC scripts/kconfig/menu.o
HOSTCC scripts/kconfig/preprocess.o
HOSTCC scripts/kconfig/symbol.o
HOSTCC scripts/kconfig/util.o
HOSTCC scripts/kconfig/lexer.lex.o
HOSTCC scripts/kconfig/parser.tab.o
HOSTLD scripts/kconfig/conf
*** Default configuration is based on 'i386_defconfig'
#
# configuration written to .config
#
make[1]: Leaving directory '/workspace/kernel/build64-debug/build32'
+ cd /workspace/kernel/build64-debug/build32
+ /workspace/kernel/scripts/kconfig/merge_config.sh .config /workspace/ci/kernel/fragments/10-xe.fragment
Using .config as base
Merging /workspace/ci/kernel/fragments/10-xe.fragment
Value of CONFIG_DRM_XE is redefined by fragment /workspace/ci/kernel/fragments/10-xe.fragment:
Previous value: # CONFIG_DRM_XE is not set
New value: CONFIG_DRM_XE=m
GEN Makefile
#
# configuration written to .config
#
Value requested for CONFIG_HAVE_UID16 not in final .config
Requested value: CONFIG_HAVE_UID16=y
Actual value:
Value requested for CONFIG_UID16 not in final .config
Requested value: CONFIG_UID16=y
Actual value:
Value requested for CONFIG_X86_32 not in final .config
Requested value: CONFIG_X86_32=y
Actual value:
Value requested for CONFIG_OUTPUT_FORMAT not in final .config
Requested value: CONFIG_OUTPUT_FORMAT="elf32-i386"
Actual value: CONFIG_OUTPUT_FORMAT="elf64-x86-64"
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MIN not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MIN=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MIN=28
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MAX not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MAX=16
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MAX=32
Value requested for CONFIG_PGTABLE_LEVELS not in final .config
Requested value: CONFIG_PGTABLE_LEVELS=2
Actual value: CONFIG_PGTABLE_LEVELS=5
Value requested for CONFIG_X86_INTEL_QUARK not in final .config
Requested value: # CONFIG_X86_INTEL_QUARK is not set
Actual value:
Value requested for CONFIG_X86_RDC321X not in final .config
Requested value: # CONFIG_X86_RDC321X is not set
Actual value:
Value requested for CONFIG_X86_32_IRIS not in final .config
Requested value: # CONFIG_X86_32_IRIS is not set
Actual value:
Value requested for CONFIG_M486SX not in final .config
Requested value: # CONFIG_M486SX is not set
Actual value:
Value requested for CONFIG_M486 not in final .config
Requested value: # CONFIG_M486 is not set
Actual value:
Value requested for CONFIG_M586 not in final .config
Requested value: # CONFIG_M586 is not set
Actual value:
Value requested for CONFIG_M586TSC not in final .config
Requested value: # CONFIG_M586TSC is not set
Actual value:
Value requested for CONFIG_M586MMX not in final .config
Requested value: # CONFIG_M586MMX is not set
Actual value:
Value requested for CONFIG_M686 not in final .config
Requested value: CONFIG_M686=y
Actual value:
Value requested for CONFIG_MPENTIUMII not in final .config
Requested value: # CONFIG_MPENTIUMII is not set
Actual value:
Value requested for CONFIG_MPENTIUMIII not in final .config
Requested value: # CONFIG_MPENTIUMIII is not set
Actual value:
Value requested for CONFIG_MPENTIUMM not in final .config
Requested value: # CONFIG_MPENTIUMM is not set
Actual value:
Value requested for CONFIG_MPENTIUM4 not in final .config
Requested value: # CONFIG_MPENTIUM4 is not set
Actual value:
Value requested for CONFIG_MK6 not in final .config
Requested value: # CONFIG_MK6 is not set
Actual value:
Value requested for CONFIG_MK7 not in final .config
Requested value: # CONFIG_MK7 is not set
Actual value:
Value requested for CONFIG_MCRUSOE not in final .config
Requested value: # CONFIG_MCRUSOE is not set
Actual value:
Value requested for CONFIG_MEFFICEON not in final .config
Requested value: # CONFIG_MEFFICEON is not set
Actual value:
Value requested for CONFIG_MWINCHIPC6 not in final .config
Requested value: # CONFIG_MWINCHIPC6 is not set
Actual value:
Value requested for CONFIG_MWINCHIP3D not in final .config
Requested value: # CONFIG_MWINCHIP3D is not set
Actual value:
Value requested for CONFIG_MELAN not in final .config
Requested value: # CONFIG_MELAN is not set
Actual value:
Value requested for CONFIG_MGEODEGX1 not in final .config
Requested value: # CONFIG_MGEODEGX1 is not set
Actual value:
Value requested for CONFIG_MGEODE_LX not in final .config
Requested value: # CONFIG_MGEODE_LX is not set
Actual value:
Value requested for CONFIG_MCYRIXIII not in final .config
Requested value: # CONFIG_MCYRIXIII is not set
Actual value:
Value requested for CONFIG_MVIAC3_2 not in final .config
Requested value: # CONFIG_MVIAC3_2 is not set
Actual value:
Value requested for CONFIG_MVIAC7 not in final .config
Requested value: # CONFIG_MVIAC7 is not set
Actual value:
Value requested for CONFIG_MATOM not in final .config
Requested value: # CONFIG_MATOM is not set
Actual value:
Value requested for CONFIG_X86_GENERIC not in final .config
Requested value: # CONFIG_X86_GENERIC is not set
Actual value:
Value requested for CONFIG_X86_INTERNODE_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_INTERNODE_CACHE_SHIFT=5
Actual value: CONFIG_X86_INTERNODE_CACHE_SHIFT=6
Value requested for CONFIG_X86_L1_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_L1_CACHE_SHIFT=5
Actual value: CONFIG_X86_L1_CACHE_SHIFT=6
Value requested for CONFIG_X86_USE_PPRO_CHECKSUM not in final .config
Requested value: CONFIG_X86_USE_PPRO_CHECKSUM=y
Actual value:
Value requested for CONFIG_X86_MINIMUM_CPU_FAMILY not in final .config
Requested value: CONFIG_X86_MINIMUM_CPU_FAMILY=6
Actual value: CONFIG_X86_MINIMUM_CPU_FAMILY=64
Value requested for CONFIG_CPU_SUP_TRANSMETA_32 not in final .config
Requested value: CONFIG_CPU_SUP_TRANSMETA_32=y
Actual value:
Value requested for CONFIG_CPU_SUP_VORTEX_32 not in final .config
Requested value: CONFIG_CPU_SUP_VORTEX_32=y
Actual value:
Value requested for CONFIG_HPET_TIMER not in final .config
Requested value: # CONFIG_HPET_TIMER is not set
Actual value: CONFIG_HPET_TIMER=y
Value requested for CONFIG_NR_CPUS_RANGE_END not in final .config
Requested value: CONFIG_NR_CPUS_RANGE_END=8
Actual value: CONFIG_NR_CPUS_RANGE_END=512
Value requested for CONFIG_NR_CPUS_DEFAULT not in final .config
Requested value: CONFIG_NR_CPUS_DEFAULT=8
Actual value: CONFIG_NR_CPUS_DEFAULT=64
Value requested for CONFIG_X86_ANCIENT_MCE not in final .config
Requested value: # CONFIG_X86_ANCIENT_MCE is not set
Actual value:
Value requested for CONFIG_X86_LEGACY_VM86 not in final .config
Requested value: # CONFIG_X86_LEGACY_VM86 is not set
Actual value:
Value requested for CONFIG_X86_ESPFIX32 not in final .config
Requested value: CONFIG_X86_ESPFIX32=y
Actual value:
Value requested for CONFIG_TOSHIBA not in final .config
Requested value: # CONFIG_TOSHIBA is not set
Actual value:
Value requested for CONFIG_X86_REBOOTFIXUPS not in final .config
Requested value: # CONFIG_X86_REBOOTFIXUPS is not set
Actual value:
Value requested for CONFIG_MICROCODE_INITRD32 not in final .config
Requested value: CONFIG_MICROCODE_INITRD32=y
Actual value:
Value requested for CONFIG_HIGHMEM4G not in final .config
Requested value: # CONFIG_HIGHMEM4G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_3G not in final .config
Requested value: CONFIG_VMSPLIT_3G=y
Actual value:
Value requested for CONFIG_VMSPLIT_3G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_3G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G not in final .config
Requested value: # CONFIG_VMSPLIT_2G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_2G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_1G not in final .config
Requested value: # CONFIG_VMSPLIT_1G is not set
Actual value:
Value requested for CONFIG_PAGE_OFFSET not in final .config
Requested value: CONFIG_PAGE_OFFSET=0xC0000000
Actual value:
Value requested for CONFIG_X86_PAE not in final .config
Requested value: # CONFIG_X86_PAE is not set
Actual value:
Value requested for CONFIG_ARCH_FLATMEM_ENABLE not in final .config
Requested value: CONFIG_ARCH_FLATMEM_ENABLE=y
Actual value:
Value requested for CONFIG_ARCH_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_ARCH_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_ILLEGAL_POINTER_VALUE not in final .config
Requested value: CONFIG_ILLEGAL_POINTER_VALUE=0
Actual value: CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
Value requested for CONFIG_COMPAT_VDSO not in final .config
Requested value: # CONFIG_COMPAT_VDSO is not set
Actual value:
Value requested for CONFIG_FUNCTION_PADDING_CFI not in final .config
Requested value: CONFIG_FUNCTION_PADDING_CFI=0
Actual value: CONFIG_FUNCTION_PADDING_CFI=11
Value requested for CONFIG_FUNCTION_PADDING_BYTES not in final .config
Requested value: CONFIG_FUNCTION_PADDING_BYTES=4
Actual value: CONFIG_FUNCTION_PADDING_BYTES=16
Value requested for CONFIG_APM not in final .config
Requested value: # CONFIG_APM is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K6 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K6 is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K7 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K7 is not set
Actual value:
Value requested for CONFIG_X86_GX_SUSPMOD not in final .config
Requested value: # CONFIG_X86_GX_SUSPMOD is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_ICH not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_ICH is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_SMI not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_SMI is not set
Actual value:
Value requested for CONFIG_X86_CPUFREQ_NFORCE2 not in final .config
Requested value: # CONFIG_X86_CPUFREQ_NFORCE2 is not set
Actual value:
Value requested for CONFIG_X86_LONGRUN not in final .config
Requested value: # CONFIG_X86_LONGRUN is not set
Actual value:
Value requested for CONFIG_X86_LONGHAUL not in final .config
Requested value: # CONFIG_X86_LONGHAUL is not set
Actual value:
Value requested for CONFIG_X86_E_POWERSAVER not in final .config
Requested value: # CONFIG_X86_E_POWERSAVER is not set
Actual value:
Value requested for CONFIG_PCI_GOBIOS not in final .config
Requested value: # CONFIG_PCI_GOBIOS is not set
Actual value:
Value requested for CONFIG_PCI_GOMMCONFIG not in final .config
Requested value: # CONFIG_PCI_GOMMCONFIG is not set
Actual value:
Value requested for CONFIG_PCI_GODIRECT not in final .config
Requested value: # CONFIG_PCI_GODIRECT is not set
Actual value:
Value requested for CONFIG_PCI_GOANY not in final .config
Requested value: CONFIG_PCI_GOANY=y
Actual value:
Value requested for CONFIG_PCI_BIOS not in final .config
Requested value: CONFIG_PCI_BIOS=y
Actual value:
Value requested for CONFIG_ISA not in final .config
Requested value: # CONFIG_ISA is not set
Actual value:
Value requested for CONFIG_SCx200 not in final .config
Requested value: # CONFIG_SCx200 is not set
Actual value:
Value requested for CONFIG_OLPC not in final .config
Requested value: # CONFIG_OLPC is not set
Actual value:
Value requested for CONFIG_ALIX not in final .config
Requested value: # CONFIG_ALIX is not set
Actual value:
Value requested for CONFIG_NET5501 not in final .config
Requested value: # CONFIG_NET5501 is not set
Actual value:
Value requested for CONFIG_GEOS not in final .config
Requested value: # CONFIG_GEOS is not set
Actual value:
Value requested for CONFIG_COMPAT_32 not in final .config
Requested value: CONFIG_COMPAT_32=y
Actual value:
Value requested for CONFIG_HAVE_ATOMIC_IOMAP not in final .config
Requested value: CONFIG_HAVE_ATOMIC_IOMAP=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_PCID not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_PCID=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_PKU not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_PKU=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_OSPKE not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_OSPKE=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_LA57 not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_LA57=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_PTI not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_PTI=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_IBT not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_IBT=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_INVLPGB not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_INVLPGB=y
Actual value:
Value requested for CONFIG_ARCH_32BIT_OFF_T not in final .config
Requested value: CONFIG_ARCH_32BIT_OFF_T=y
Actual value:
Value requested for CONFIG_ARCH_WANT_IPC_PARSE_VERSION not in final .config
Requested value: CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
Actual value:
Value requested for CONFIG_MODULES_USE_ELF_REL not in final .config
Requested value: CONFIG_MODULES_USE_ELF_REL=y
Actual value:
Value requested for CONFIG_ARCH_MMAP_RND_BITS not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS=28
Value requested for CONFIG_CLONE_BACKWARDS not in final .config
Requested value: CONFIG_CLONE_BACKWARDS=y
Actual value:
Value requested for CONFIG_OLD_SIGSUSPEND3 not in final .config
Requested value: CONFIG_OLD_SIGSUSPEND3=y
Actual value:
Value requested for CONFIG_OLD_SIGACTION not in final .config
Requested value: CONFIG_OLD_SIGACTION=y
Actual value:
Value requested for CONFIG_ARCH_SPLIT_ARG64 not in final .config
Requested value: CONFIG_ARCH_SPLIT_ARG64=y
Actual value:
Value requested for CONFIG_FUNCTION_ALIGNMENT not in final .config
Requested value: CONFIG_FUNCTION_ALIGNMENT=4
Actual value: CONFIG_FUNCTION_ALIGNMENT=16
Value requested for CONFIG_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_FLATMEM_MANUAL not in final .config
Requested value: CONFIG_FLATMEM_MANUAL=y
Actual value:
Value requested for CONFIG_SPARSEMEM_MANUAL not in final .config
Requested value: # CONFIG_SPARSEMEM_MANUAL is not set
Actual value:
Value requested for CONFIG_FLATMEM not in final .config
Requested value: CONFIG_FLATMEM=y
Actual value:
Value requested for CONFIG_SPARSEMEM_STATIC not in final .config
Requested value: CONFIG_SPARSEMEM_STATIC=y
Actual value:
Value requested for CONFIG_KMAP_LOCAL not in final .config
Requested value: CONFIG_KMAP_LOCAL=y
Actual value:
Value requested for CONFIG_HAVE_EISA not in final .config
Requested value: CONFIG_HAVE_EISA=y
Actual value:
Value requested for CONFIG_EISA not in final .config
Requested value: # CONFIG_EISA is not set
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_COMPAQ not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_COMPAQ is not set
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_IBM not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_IBM is not set
Actual value:
Value requested for CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH not in final .config
Requested value: CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH=y
Actual value:
Value requested for CONFIG_PCH_PHUB not in final .config
Requested value: # CONFIG_PCH_PHUB is not set
Actual value:
Value requested for CONFIG_SCSI_NSP32 not in final .config
Requested value: # CONFIG_SCSI_NSP32 is not set
Actual value:
Value requested for CONFIG_PATA_CS5520 not in final .config
Requested value: # CONFIG_PATA_CS5520 is not set
Actual value:
Value requested for CONFIG_PATA_CS5530 not in final .config
Requested value: # CONFIG_PATA_CS5530 is not set
Actual value:
Value requested for CONFIG_PATA_CS5535 not in final .config
Requested value: # CONFIG_PATA_CS5535 is not set
Actual value:
Value requested for CONFIG_PATA_CS5536 not in final .config
Requested value: # CONFIG_PATA_CS5536 is not set
Actual value:
Value requested for CONFIG_PATA_SC1200 not in final .config
Requested value: # CONFIG_PATA_SC1200 is not set
Actual value:
Value requested for CONFIG_PCH_GBE not in final .config
Requested value: # CONFIG_PCH_GBE is not set
Actual value:
Value requested for CONFIG_INPUT_WISTRON_BTNS not in final .config
Requested value: # CONFIG_INPUT_WISTRON_BTNS is not set
Actual value:
Value requested for CONFIG_SERIAL_TIMBERDALE not in final .config
Requested value: # CONFIG_SERIAL_TIMBERDALE is not set
Actual value:
Value requested for CONFIG_SERIAL_PCH_UART not in final .config
Requested value: # CONFIG_SERIAL_PCH_UART is not set
Actual value:
Value requested for CONFIG_HW_RANDOM_GEODE not in final .config
Requested value: CONFIG_HW_RANDOM_GEODE=y
Actual value:
Value requested for CONFIG_SONYPI not in final .config
Requested value: # CONFIG_SONYPI is not set
Actual value:
Value requested for CONFIG_PC8736x_GPIO not in final .config
Requested value: # CONFIG_PC8736x_GPIO is not set
Actual value:
Value requested for CONFIG_NSC_GPIO not in final .config
Requested value: # CONFIG_NSC_GPIO is not set
Actual value:
Value requested for CONFIG_I2C_EG20T not in final .config
Requested value: # CONFIG_I2C_EG20T is not set
Actual value:
Value requested for CONFIG_SCx200_ACB not in final .config
Requested value: # CONFIG_SCx200_ACB is not set
Actual value:
Value requested for CONFIG_PTP_1588_CLOCK_PCH not in final .config
Requested value: # CONFIG_PTP_1588_CLOCK_PCH is not set
Actual value:
Value requested for CONFIG_SBC8360_WDT not in final .config
Requested value: # CONFIG_SBC8360_WDT is not set
Actual value:
Value requested for CONFIG_SBC7240_WDT not in final .config
Requested value: # CONFIG_SBC7240_WDT is not set
Actual value:
Value requested for CONFIG_MFD_CS5535 not in final .config
Requested value: # CONFIG_MFD_CS5535 is not set
Actual value:
Value requested for CONFIG_AGP_ALI not in final .config
Requested value: # CONFIG_AGP_ALI is not set
Actual value:
Value requested for CONFIG_AGP_ATI not in final .config
Requested value: # CONFIG_AGP_ATI is not set
Actual value:
Value requested for CONFIG_AGP_AMD not in final .config
Requested value: # CONFIG_AGP_AMD is not set
Actual value:
Value requested for CONFIG_AGP_NVIDIA not in final .config
Requested value: # CONFIG_AGP_NVIDIA is not set
Actual value:
Value requested for CONFIG_AGP_SWORKS not in final .config
Requested value: # CONFIG_AGP_SWORKS is not set
Actual value:
Value requested for CONFIG_AGP_EFFICEON not in final .config
Requested value: # CONFIG_AGP_EFFICEON is not set
Actual value:
Value requested for CONFIG_SND_CS5530 not in final .config
Requested value: # CONFIG_SND_CS5530 is not set
Actual value:
Value requested for CONFIG_SND_CS5535AUDIO not in final .config
Requested value: # CONFIG_SND_CS5535AUDIO is not set
Actual value:
Value requested for CONFIG_SND_SIS7019 not in final .config
Requested value: # CONFIG_SND_SIS7019 is not set
Actual value:
Value requested for CONFIG_LEDS_OT200 not in final .config
Requested value: # CONFIG_LEDS_OT200 is not set
Actual value:
Value requested for CONFIG_PCH_DMA not in final .config
Requested value: # CONFIG_PCH_DMA is not set
Actual value:
Value requested for CONFIG_CLKSRC_I8253 not in final .config
Requested value: CONFIG_CLKSRC_I8253=y
Actual value:
Value requested for CONFIG_MAILBOX not in final .config
Requested value: # CONFIG_MAILBOX is not set
Actual value: CONFIG_MAILBOX=y
Value requested for CONFIG_CRYPTO_SERPENT_SSE2_586 not in final .config
Requested value: # CONFIG_CRYPTO_SERPENT_SSE2_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_TWOFISH_586 not in final .config
Requested value: # CONFIG_CRYPTO_TWOFISH_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_GEODE not in final .config
Requested value: # CONFIG_CRYPTO_DEV_GEODE is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_HIFN_795X not in final .config
Requested value: # CONFIG_CRYPTO_DEV_HIFN_795X is not set
Actual value:
Value requested for CONFIG_CRYPTO_LIB_POLY1305_RSIZE not in final .config
Requested value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1
Actual value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
Value requested for CONFIG_AUDIT_GENERIC not in final .config
Requested value: CONFIG_AUDIT_GENERIC=y
Actual value:
Value requested for CONFIG_GENERIC_VDSO_32 not in final .config
Requested value: CONFIG_GENERIC_VDSO_32=y
Actual value:
Value requested for CONFIG_DEBUG_KMAP_LOCAL not in final .config
Requested value: # CONFIG_DEBUG_KMAP_LOCAL is not set
Actual value:
Value requested for CONFIG_HAVE_DEBUG_STACKOVERFLOW not in final .config
Requested value: CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
Actual value:
Value requested for CONFIG_DEBUG_STACKOVERFLOW not in final .config
Requested value: # CONFIG_DEBUG_STACKOVERFLOW is not set
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_TRACER not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_FREGS not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_FREGS=y
Actual value:
Value requested for CONFIG_HAVE_FTRACE_GRAPH_FUNC not in final .config
Requested value: CONFIG_HAVE_FTRACE_GRAPH_FUNC=y
Actual value:
Value requested for CONFIG_DRM_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_KUNIT_TEST=m
Actual value:
Value requested for CONFIG_DRM_XE_WERROR not in final .config
Requested value: CONFIG_DRM_XE_WERROR=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG not in final .config
Requested value: CONFIG_DRM_XE_DEBUG=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG_MEM not in final .config
Requested value: CONFIG_DRM_XE_DEBUG_MEM=y
Actual value:
Value requested for CONFIG_DRM_XE_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_XE_KUNIT_TEST=m
Actual value:
++ nproc
+ make -j48 ARCH=i386 olddefconfig
GEN Makefile
#
# configuration written to .config
#
++ nproc
+ make -j48 ARCH=i386
SYNC include/config/auto.conf.cmd
GEN Makefile
GEN Makefile
WRAP arch/x86/include/generated/uapi/asm/errno.h
WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
WRAP arch/x86/include/generated/uapi/asm/fcntl.h
WRAP arch/x86/include/generated/uapi/asm/ioctl.h
WRAP arch/x86/include/generated/uapi/asm/ioctls.h
WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
WRAP arch/x86/include/generated/uapi/asm/param.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
WRAP arch/x86/include/generated/uapi/asm/poll.h
WRAP arch/x86/include/generated/uapi/asm/resource.h
UPD include/generated/uapi/linux/version.h
SYSTBL arch/x86/include/generated/asm/syscalls_32.h
WRAP arch/x86/include/generated/uapi/asm/socket.h
WRAP arch/x86/include/generated/uapi/asm/sockios.h
WRAP arch/x86/include/generated/uapi/asm/termbits.h
WRAP arch/x86/include/generated/uapi/asm/termios.h
UPD arch/x86/include/generated/asm/cpufeaturemasks.h
WRAP arch/x86/include/generated/uapi/asm/types.h
UPD include/generated/compile.h
HOSTCC arch/x86/tools/relocs_32.o
HOSTCC arch/x86/tools/relocs_64.o
HOSTCC arch/x86/tools/relocs_common.o
WRAP arch/x86/include/generated/asm/early_ioremap.h
WRAP arch/x86/include/generated/asm/fprobe.h
WRAP arch/x86/include/generated/asm/mcs_spinlock.h
WRAP arch/x86/include/generated/asm/mmzone.h
WRAP arch/x86/include/generated/asm/irq_regs.h
WRAP arch/x86/include/generated/asm/kmap_size.h
HOSTCC scripts/kallsyms
WRAP arch/x86/include/generated/asm/local64.h
HOSTCC scripts/sorttable
HOSTCC scripts/asn1_compiler
WRAP arch/x86/include/generated/asm/module.lds.h
WRAP arch/x86/include/generated/asm/mmiowb.h
WRAP arch/x86/include/generated/asm/rwonce.h
HOSTCC scripts/selinux/mdp/mdp
HOSTLD arch/x86/tools/relocs
UPD include/config/kernel.release
UPD include/generated/utsrelease.h
CC scripts/mod/empty.o
HOSTCC scripts/mod/mk_elfconfig
CC scripts/mod/devicetable-offsets.s
UPD scripts/mod/devicetable-offsets.h
MKELF scripts/mod/elfconfig.h
HOSTCC scripts/mod/modpost.o
HOSTCC scripts/mod/file2alias.o
HOSTCC scripts/mod/sumversion.o
HOSTCC scripts/mod/symsearch.o
HOSTLD scripts/mod/modpost
CC kernel/bounds.s
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-arch-fallback.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-instrumented.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-long.h
UPD include/generated/timeconst.h
UPD include/generated/bounds.h
CC arch/x86/kernel/asm-offsets.s
UPD include/generated/asm-offsets.h
CALL /workspace/kernel/scripts/checksyscalls.sh
LDS scripts/module.lds
HOSTCC usr/gen_init_cpio
CC init/main.o
CC init/do_mounts.o
CC certs/system_keyring.o
CC init/do_mounts_initrd.o
UPD init/utsversion-tmp.h
CC mm/filemap.o
CC init/initramfs.o
CC ipc/util.o
CC init/calibrate.o
CC mm/mempool.o
CC init/init_task.o
CC ipc/msgutil.o
CC security/commoncap.o
CC mm/oom_kill.o
AS arch/x86/entry/entry.o
CC block/bdev.o
CC ipc/msg.o
CC mm/fadvise.o
CC security/lsm_syscalls.o
AS arch/x86/entry/entry_32.o
CC io_uring/io_uring.o
AS arch/x86/lib/atomic64_cx8_32.o
CC arch/x86/realmode/init.o
AR arch/x86/crypto/built-in.a
CC arch/x86/pci/i386.o
AR arch/x86/net/built-in.a
CC arch/x86/video/video-common.o
CC arch/x86/power/cpu.o
CC security/keys/gc.o
HOSTCC security/selinux/genheaders
CC security/integrity/iint.o
CC block/partitions/core.o
AR arch/x86/entry/vsyscall/built-in.a
CC arch/x86/events/amd/core.o
AR virt/lib/built-in.a
AR arch/x86/platform/atom/built-in.a
CC arch/x86/virt/svm/cmdline.o
CC arch/x86/mm/pat/set_memory.o
CC security/min_addr.o
AR drivers/cache/built-in.a
CC net/core/sock.o
AR sound/i2c/other/built-in.a
AR virt/built-in.a
CC fs/notify/dnotify/dnotify.o
CC sound/core/seq/seq.o
CC arch/x86/kernel/fpu/init.o
AR lib/math/tests/built-in.a
CC fs/nfs_common/nfsacl.o
AR sound/i2c/built-in.a
AS arch/x86/realmode/rm/header.o
AR arch/x86/platform/ce4100/built-in.a
CC arch/x86/entry/vdso/vma.o
AS arch/x86/lib/checksum_32.o
CC lib/math/div64.o
CC arch/x86/lib/cmdline.o
AR drivers/irqchip/built-in.a
CC block/fops.o
CC security/keys/key.o
CC arch/x86/platform/efi/memmap.o
AR drivers/bus/mhi/built-in.a
CC arch/x86/events/amd/lbr.o
AS arch/x86/realmode/rm/trampoline_32.o
CC kernel/sched/core.o
AR drivers/bus/built-in.a
CC arch/x86/power/hibernate_32.o
CC crypto/asymmetric_keys/asymmetric_type.o
AR drivers/pwm/built-in.a
AS arch/x86/realmode/rm/stack.o
AR drivers/leds/trigger/built-in.a
AS arch/x86/realmode/rm/reboot.o
AR drivers/leds/blink/built-in.a
AR arch/x86/virt/svm/built-in.a
AR drivers/leds/simatic/built-in.a
AS arch/x86/realmode/rm/wakeup_asm.o
CC drivers/leds/led-core.o
AR arch/x86/virt/vmx/built-in.a
AS arch/x86/lib/cmpxchg8b_emu.o
AR arch/x86/virt/built-in.a
CC arch/x86/realmode/rm/wakemain.o
AS arch/x86/power/hibernate_asm_32.o
CC arch/x86/lib/cpu.o
CC crypto/asymmetric_keys/restrict.o
GEN security/selinux/flask.h security/selinux/av_permissions.h
CC lib/math/gcd.o
CC security/selinux/avc.o
CC arch/x86/realmode/rm/video-mode.o
CC lib/math/lcm.o
AR arch/x86/platform/geode/built-in.a
CC lib/math/int_log.o
CC lib/math/int_pow.o
GEN usr/initramfs_data.cpio
AS arch/x86/realmode/rm/copy.o
COPY usr/initramfs_inc_data
AS usr/initramfs_data.o
CC arch/x86/kernel/fpu/bugs.o
AS arch/x86/realmode/rm/bioscall.o
HOSTCC certs/extract-cert
AR usr/built-in.a
CC mm/maccess.o
CC arch/x86/realmode/rm/regs.o
CC crypto/api.o
CC lib/math/int_sqrt.o
CC arch/x86/realmode/rm/video-vga.o
CC arch/x86/kernel/fpu/core.o
CC lib/math/reciprocal_div.o
CC arch/x86/realmode/rm/video-vesa.o
CC arch/x86/lib/delay.o
CC lib/math/rational.o
CC sound/core/seq/seq_lock.o
CC lib/crypto/mpi/generic_mpih-lshift.o
CC arch/x86/realmode/rm/video-bios.o
CC arch/x86/pci/init.o
AR arch/x86/video/built-in.a
CC lib/crypto/memneq.o
CERT certs/x509_certificate_list
CERT certs/signing_key.x509
AS certs/system_certificates.o
CC security/keys/keyring.o
CC block/bio.o
PASYMS arch/x86/realmode/rm/pasyms.h
AR certs/built-in.a
CC security/integrity/integrity_audit.o
CC fs/nfs_common/grace.o
CC kernel/locking/mutex.o
AR sound/drivers/opl3/built-in.a
LDS arch/x86/realmode/rm/realmode.lds
AR sound/drivers/opl4/built-in.a
CC drivers/leds/led-class.o
LD arch/x86/realmode/rm/realmode.elf
CC drivers/leds/led-triggers.o
CC security/selinux/hooks.o
CC mm/page-writeback.o
AR sound/drivers/mpu401/built-in.a
RELOCS arch/x86/realmode/rm/realmode.relocs
OBJCOPY arch/x86/realmode/rm/realmode.bin
CC block/elevator.o
CC crypto/asymmetric_keys/signature.o
CC block/blk-core.o
AR sound/drivers/vx/built-in.a
AS arch/x86/realmode/rmpiggy.o
CC arch/x86/entry/vdso/extable.o
AR sound/drivers/pcsp/built-in.a
AR sound/drivers/built-in.a
AR arch/x86/realmode/built-in.a
AR lib/tests/built-in.a
CC arch/x86/entry/syscall_32.o
CC lib/vdso/datastore.o
CC sound/core/seq/seq_clientmgr.o
CC arch/x86/platform/efi/quirks.o
AR fs/notify/dnotify/built-in.a
CC drivers/pci/msi/pcidev_msi.o
CC fs/notify/inotify/inotify_fsnotify.o
AS arch/x86/lib/getuser.o
CC arch/x86/power/hibernate.o
GEN arch/x86/lib/inat-tables.c
CC block/partitions/msdos.o
CC arch/x86/lib/insn-eval.o
AR lib/math/built-in.a
CC kernel/sched/fair.o
CC security/selinux/selinuxfs.o
CC net/ethernet/eth.o
CC drivers/pci/msi/api.o
AR sound/isa/ad1816a/built-in.a
CC block/partitions/efi.o
AR sound/isa/ad1848/built-in.a
CC arch/x86/mm/init.o
AR sound/isa/cs423x/built-in.a
CC arch/x86/lib/insn.o
CC arch/x86/mm/pat/memtype.o
AR sound/isa/es1688/built-in.a
AR sound/isa/galaxy/built-in.a
CC ipc/sem.o
AR sound/isa/gus/built-in.a
AR sound/isa/msnd/built-in.a
AR sound/isa/opti9xx/built-in.a
AR sound/isa/sb/built-in.a
AR sound/isa/wavefront/built-in.a
CC ipc/shm.o
CC lib/crypto/mpi/generic_mpih-mul1.o
AR sound/isa/wss/built-in.a
AR sound/isa/built-in.a
CC ipc/syscall.o
CC arch/x86/events/amd/ibs.o
CC security/selinux/netlink.o
CC block/blk-sysfs.o
CC arch/x86/pci/pcbios.o
CC security/selinux/nlmsgtab.o
CC crypto/asymmetric_keys/public_key.o
CC drivers/pci/msi/msi.o
CC fs/notify/inotify/inotify_user.o
CC security/selinux/netif.o
CC fs/nfs_common/common.o
AR lib/vdso/built-in.a
CC arch/x86/events/amd/uncore.o
CC fs/iomap/trace.o
AR security/integrity/built-in.a
AS arch/x86/entry/thunk.o
CC init/version.o
CC arch/x86/kernel/cpu/mce/core.o
CC sound/core/sound.o
AR drivers/leds/built-in.a
CC lib/crypto/mpi/generic_mpih-mul2.o
AR arch/x86/power/built-in.a
CC crypto/cipher.o
LDS arch/x86/entry/vdso/vdso32/vdso32.lds
AS arch/x86/entry/vdso/vdso32/note.o
AS arch/x86/entry/vdso/vdso32/system_call.o
AS arch/x86/entry/vdso/vdso32/sigreturn.o
AR net/802/built-in.a
CC lib/crypto/utils.o
CC arch/x86/entry/vdso/vdso32/vclock_gettime.o
CC arch/x86/kernel/fpu/regset.o
AR init/built-in.a
CC sound/core/seq/seq_memory.o
CC arch/x86/platform/efi/efi.o
CC kernel/locking/semaphore.o
CC arch/x86/lib/kaslr.o
CC arch/x86/lib/memcpy_32.o
AR fs/notify/fanotify/built-in.a
CC lib/zlib_inflate/inffast.o
CC lib/zlib_deflate/deflate.o
CC lib/lzo/lzo1x_compress.o
CC lib/lzo/lzo1x_compress_safe.o
CC security/keys/keyctl.o
CC arch/x86/pci/mmconfig_32.o
AR block/partitions/built-in.a
CC sound/core/init.o
CC security/selinux/netnode.o
CC lib/zlib_inflate/inflate.o
CC arch/x86/mm/pat/memtype_interval.o
AS arch/x86/lib/memmove_32.o
CC sound/core/memory.o
ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
CC arch/x86/lib/misc.o
CC arch/x86/kernel/acpi/boot.o
CC crypto/asymmetric_keys/x509_loader.o
CC crypto/asymmetric_keys/x509_public_key.o
CC arch/x86/lib/pc-conf-reg.o
CC kernel/sched/build_policy.o
CC fs/quota/dquot.o
CC lib/crypto/mpi/generic_mpih-mul3.o
AR fs/nfs_common/built-in.a
CC arch/x86/kernel/acpi/sleep.o
AS arch/x86/lib/putuser.o
CC arch/x86/kernel/apic/apic.o
CC arch/x86/events/intel/core.o
CC arch/x86/kernel/kprobes/core.o
CC fs/iomap/iter.o
AS arch/x86/lib/retpoline.o
CC arch/x86/kernel/cpu/mtrr/mtrr.o
CC arch/x86/kernel/cpu/microcode/core.o
CC arch/x86/lib/string_32.o
CC drivers/pci/msi/irqdomain.o
AR fs/notify/inotify/built-in.a
CC arch/x86/lib/strstr_32.o
CC arch/x86/entry/vdso/vdso32/vgetcpu.o
CC arch/x86/kernel/cpu/microcode/intel.o
CC fs/notify/fsnotify.o
AR net/ethernet/built-in.a
CC fs/quota/quota_v2.o
CC arch/x86/lib/usercopy.o
CC fs/quota/quota_tree.o
HOSTCC arch/x86/entry/vdso/vdso2c
CC lib/lzo/lzo1x_decompress_safe.o
CC arch/x86/kernel/fpu/signal.o
CC kernel/locking/rwsem.o
CC arch/x86/kernel/fpu/xstate.o
CC arch/x86/entry/vdso/vdso32-setup.o
AR arch/x86/events/amd/built-in.a
CC arch/x86/events/intel/bts.o
CC arch/x86/mm/init_32.o
CC sound/core/seq/seq_queue.o
ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
CC arch/x86/pci/direct.o
CC crypto/asymmetric_keys/pkcs7_trust.o
CC block/blk-flush.o
CC net/sched/sch_generic.o
CC kernel/locking/percpu-rwsem.o
CC lib/zlib_inflate/infutil.o
AR arch/x86/mm/pat/built-in.a
CC lib/zlib_deflate/deftree.o
CC arch/x86/lib/usercopy_32.o
CC lib/crypto/mpi/generic_mpih-rshift.o
CC drivers/pci/pcie/portdrv.o
CC arch/x86/platform/efi/efi_32.o
CC kernel/locking/spinlock.o
CC lib/zlib_inflate/inftrees.o
CC lib/zlib_inflate/inflate_syms.o
CC lib/lz4/lz4_decompress.o
VDSO arch/x86/entry/vdso/vdso32.so.dbg
OBJCOPY arch/x86/entry/vdso/vdso32.so
VDSO2C arch/x86/entry/vdso/vdso-image-32.c
CC arch/x86/entry/vdso/vdso-image-32.o
CC security/selinux/netport.o
CC ipc/ipc_sysctl.o
AR lib/lzo/built-in.a
CC lib/zlib_deflate/deflate_syms.o
CC io_uring/opdef.o
CC lib/crypto/chacha.o
CC arch/x86/lib/msr-smp.o
CC crypto/asymmetric_keys/pkcs7_verify.o
CC arch/x86/kernel/cpu/mtrr/if.o
CC mm/folio-compat.o
CC drivers/video/console/dummycon.o
CC fs/iomap/buffered-io.o
AR drivers/pci/msi/built-in.a
CC arch/x86/lib/cache-smp.o
AR drivers/idle/built-in.a
CC ipc/mqueue.o
CC security/keys/permission.o
CC drivers/video/backlight/backlight.o
CC net/core/request_sock.o
CC arch/x86/kernel/cpu/microcode/amd.o
AR drivers/video/fbdev/core/built-in.a
AR arch/x86/entry/vdso/built-in.a
AR drivers/video/fbdev/omap/built-in.a
AR arch/x86/entry/built-in.a
AS arch/x86/kernel/acpi/wakeup_32.o
AR lib/zlib_inflate/built-in.a
CC arch/x86/events/intel/ds.o
CC kernel/sched/build_utility.o
CC arch/x86/kernel/cpu/cacheinfo.o
CC arch/x86/kernel/acpi/cstate.o
AR drivers/video/fbdev/omap2/omapfb/dss/built-in.a
AR drivers/video/fbdev/omap2/omapfb/displays/built-in.a
AR drivers/video/fbdev/omap2/omapfb/built-in.a
CC arch/x86/kernel/kprobes/opt.o
AR drivers/video/fbdev/omap2/built-in.a
AR drivers/video/fbdev/built-in.a
CC crypto/algapi.o
CC lib/crypto/mpi/generic_mpih-sub1.o
CC fs/iomap/direct-io.o
CC fs/notify/notification.o
CC arch/x86/lib/crc32-glue.o
CC fs/iomap/ioend.o
AR drivers/char/ipmi/built-in.a
CC arch/x86/kernel/apic/apic_common.o
CC kernel/locking/osq_lock.o
CC block/blk-settings.o
CC arch/x86/pci/mmconfig-shared.o
AR lib/zlib_deflate/built-in.a
CC net/core/skbuff.o
CC io_uring/kbuf.o
CC arch/x86/kernel/cpu/mce/severity.o
CC sound/core/seq/seq_fifo.o
CC crypto/asymmetric_keys/x509.asn1.o
AS arch/x86/platform/efi/efi_stub_32.o
CC crypto/scatterwalk.o
CC crypto/asymmetric_keys/x509_akid.asn1.o
CC arch/x86/platform/efi/runtime-map.o
CC crypto/asymmetric_keys/x509_cert_parser.o
CC drivers/acpi/acpica/dsargs.o
CC drivers/pci/pcie/rcec.o
CC arch/x86/mm/fault.o
CC arch/x86/mm/ioremap.o
CC kernel/locking/qspinlock.o
CC drivers/video/console/vgacon.o
AR arch/x86/kernel/fpu/built-in.a
CC arch/x86/kernel/cpu/mtrr/generic.o
CC net/core/datagram.o
AS arch/x86/lib/crc32-pclmul.o
CC arch/x86/kernel/cpu/mtrr/cleanup.o
CC mm/readahead.o
AR arch/x86/kernel/acpi/built-in.a
CC arch/x86/lib/msr.o
CC ipc/namespace.o
CC drivers/acpi/acpica/dscontrol.o
CC drivers/acpi/acpica/dsdebug.o
CC arch/x86/kernel/apic/apic_noop.o
CC security/keys/process_keys.o
CC lib/crypto/mpi/generic_mpih-add1.o
LDS arch/x86/kernel/vmlinux.lds
CC arch/x86/mm/extable.o
CC fs/notify/group.o
AR drivers/video/backlight/built-in.a
CC arch/x86/events/intel/knc.o
CC fs/proc/task_mmu.o
CC sound/core/seq/seq_prioq.o
CC kernel/locking/rtmutex_api.o
CC crypto/asymmetric_keys/pkcs7.asn1.o
CC kernel/power/qos.o
AR arch/x86/kernel/kprobes/built-in.a
CC arch/x86/kernel/cpu/scattered.o
CC crypto/asymmetric_keys/pkcs7_parser.o
CC crypto/proc.o
AR arch/x86/kernel/cpu/microcode/built-in.a
AS arch/x86/kernel/head_32.o
CC kernel/locking/qrwlock.o
CC fs/quota/quota.o
CC arch/x86/kernel/cpu/mce/genpool.o
AR lib/lz4/built-in.a
CC drivers/pci/pcie/bwctrl.o
CC crypto/aead.o
CC crypto/geniv.o
CC fs/notify/mark.o
CC drivers/acpi/acpica/dsfield.o
AR sound/pci/ac97/built-in.a
CC arch/x86/kernel/apic/ipi.o
AR arch/x86/platform/efi/built-in.a
AR sound/pci/ali5451/built-in.a
AR sound/pci/asihpi/built-in.a
AR arch/x86/platform/iris/built-in.a
CC block/blk-ioc.o
AR sound/pci/au88x0/built-in.a
CC arch/x86/platform/intel/iosf_mbi.o
CC arch/x86/pci/fixup.o
AR sound/pci/aw2/built-in.a
AR sound/pci/ctxfi/built-in.a
AR sound/ppc/built-in.a
CC fs/quota/kqid.o
AR sound/pci/ca0106/built-in.a
AR sound/arm/built-in.a
CC sound/core/seq/seq_timer.o
AR sound/pci/cs46xx/built-in.a
CC crypto/lskcipher.o
AR sound/pci/cs5535audio/built-in.a
AR sound/pci/lola/built-in.a
AR sound/pci/lx6464es/built-in.a
CC lib/crypto/mpi/mpicoder.o
AR sound/pci/echoaudio/built-in.a
CC security/keys/request_key.o
AR sound/pci/emu10k1/built-in.a
CC drivers/video/aperture.o
CC io_uring/rsrc.o
CC sound/pci/hda/hda_bind.o
AS arch/x86/lib/msr-reg.o
CC sound/pci/hda/hda_codec.o
CC sound/pci/hda/hda_jack.o
CC arch/x86/lib/msr-reg-export.o
CC net/core/stream.o
CC net/sched/sch_mq.o
AR drivers/video/console/built-in.a
CC crypto/skcipher.o
AR crypto/asymmetric_keys/built-in.a
CC block/blk-map.o
CC arch/x86/kernel/cpu/mtrr/amd.o
CC security/selinux/status.o
CC ipc/mq_sysctl.o
CC drivers/acpi/acpica/dsinit.o
CC lib/zstd/zstd_decompress_module.o
CC lib/crypto/mpi/mpi-add.o
CC mm/swap.o
CC fs/kernfs/mount.o
CC arch/x86/kernel/cpu/mce/intel.o
AS arch/x86/lib/hweight.o
CC arch/x86/mm/mmap.o
CC arch/x86/lib/iomem.o
CC net/netlink/af_netlink.o
CC arch/x86/kernel/apic/vector.o
AR net/bpf/built-in.a
CC drivers/acpi/acpica/dsmethod.o
CC arch/x86/lib/atomic64_32.o
CC drivers/pci/pcie/aspm.o
CC fs/iomap/fiemap.o
CC drivers/pci/pcie/pme.o
AR kernel/locking/built-in.a
CC arch/x86/kernel/head32.o
AR arch/x86/platform/intel/built-in.a
AR arch/x86/platform/intel-mid/built-in.a
AR arch/x86/platform/intel-quark/built-in.a
AR arch/x86/platform/olpc/built-in.a
CC arch/x86/kernel/cpu/mce/amd.o
AR arch/x86/platform/scx200/built-in.a
CC lib/zstd/decompress/huf_decompress.o
AR arch/x86/platform/ts5500/built-in.a
AR ipc/built-in.a
CC arch/x86/events/intel/lbr.o
CC lib/crypto/mpi/mpi-bit.o
AR arch/x86/platform/uv/built-in.a
CC lib/crypto/mpi/mpi-cmp.o
CC arch/x86/kernel/cpu/mce/threshold.o
AR arch/x86/platform/built-in.a
CC sound/core/seq/seq_system.o
CC arch/x86/events/zhaoxin/core.o
CC arch/x86/kernel/apic/init.o
CC kernel/power/main.o
CC fs/notify/fdinfo.o
CC net/ethtool/ioctl.o
CC kernel/printk/printk.o
CC arch/x86/pci/acpi.o
CC arch/x86/lib/inat.o
CC arch/x86/kernel/cpu/mtrr/cyrix.o
CC kernel/printk/printk_safe.o
CC drivers/video/cmdline.o
CC drivers/acpi/acpica/dsmthdat.o
AR arch/x86/lib/built-in.a
AR arch/x86/lib/lib.a
CC security/keys/request_key_auth.o
CC arch/x86/events/core.o
CC fs/quota/netlink.o
CC arch/x86/pci/legacy.o
CC arch/x86/kernel/cpu/mtrr/centaur.o
CC drivers/pnp/pnpacpi/core.o
CC arch/x86/mm/pgtable.o
CC net/ethtool/common.o
CC net/ethtool/netlink.o
CC io_uring/notif.o
CC block/blk-merge.o
CC fs/kernfs/inode.o
CC fs/iomap/seek.o
AR sound/sh/built-in.a
CC arch/x86/kernel/ebda.o
CC arch/x86/kernel/cpu/topology_common.o
CC net/sched/sch_frag.o
CC net/sched/sch_api.o
CC fs/proc/inode.o
CC sound/core/seq/seq_ports.o
CC arch/x86/mm/physaddr.o
CC drivers/acpi/acpica/dsobject.o
CC lib/crypto/mpi/mpi-sub-ui.o
CC crypto/seqiv.o
CC net/sched/sch_blackhole.o
CC security/selinux/ss/ebitmap.o
AR fs/notify/built-in.a
CC sound/core/control.o
CC arch/x86/pci/irq.o
CC net/netlink/genetlink.o
CC kernel/irq/irqdesc.o
CC arch/x86/kernel/cpu/mtrr/legacy.o
CC kernel/irq/handle.o
CC drivers/video/nomodeset.o
CC drivers/video/hdmi.o
CC security/keys/user_defined.o
CC drivers/pnp/pnpacpi/rsparser.o
AR arch/x86/events/zhaoxin/built-in.a
CC sound/pci/hda/hda_auto_parser.o
CC lib/xz/xz_dec_syms.o
CC lib/dim/dim.o
CC drivers/acpi/acpica/dsopcode.o
CC arch/x86/events/probe.o
CC arch/x86/mm/tlb.o
AR fs/quota/built-in.a
CC lib/dim/net_dim.o
CC mm/truncate.o
AR drivers/pci/pcie/built-in.a
CC lib/dim/rdma_dim.o
AR drivers/pci/pwrctrl/built-in.a
CC drivers/pci/hotplug/pci_hotplug_core.o
CC kernel/power/console.o
AR drivers/pci/controller/dwc/built-in.a
AR drivers/pci/controller/mobiveil/built-in.a
CC fs/iomap/swapfile.o
AR drivers/pci/controller/plda/built-in.a
AR drivers/pci/controller/built-in.a
CC arch/x86/kernel/cpu/topology_ext.o
AR arch/x86/kernel/cpu/mtrr/built-in.a
CC lib/crypto/mpi/mpi-div.o
CC lib/xz/xz_dec_stream.o
CC arch/x86/kernel/apic/hw_nmi.o
CC net/netfilter/core.o
CC crypto/echainiv.o
CC fs/kernfs/dir.o
CC arch/x86/events/intel/p4.o
AR arch/x86/kernel/cpu/mce/built-in.a
CC sound/core/seq/seq_info.o
CC drivers/acpi/acpica/dspkginit.o
CC kernel/irq/manage.o
CC fs/proc/root.o
CC io_uring/tctx.o
AR drivers/acpi/pmic/built-in.a
CC sound/core/misc.o
CC mm/vmscan.o
CC arch/x86/kernel/platform-quirks.o
CC security/selinux/ss/hashtab.o
CC drivers/acpi/dptf/int340x_thermal.o
CC security/keys/proc.o
CC sound/core/device.o
AR drivers/amba/built-in.a
CC arch/x86/kernel/apic/io_apic.o
CC crypto/ahash.o
CC fs/sysfs/file.o
CC lib/xz/xz_dec_lzma2.o
CC arch/x86/kernel/cpu/topology_amd.o
AR drivers/video/built-in.a
CC net/netlink/policy.o
CC kernel/rcu/update.o
CC lib/fonts/fonts.o
CC fs/proc/base.o
CC drivers/acpi/acpica/dsutils.o
AR drivers/pnp/pnpacpi/built-in.a
CC drivers/pnp/core.o
CC lib/argv_split.o
CC kernel/power/process.o
CC lib/crypto/mpi/mpi-mod.o
CC net/core/scm.o
CC arch/x86/pci/common.o
CC drivers/pci/hotplug/acpi_pcihp.o
CC security/selinux/ss/symtab.o
CC sound/core/seq/seq_dummy.o
AR kernel/livepatch/built-in.a
AR fs/iomap/built-in.a
CC block/blk-timeout.o
CC net/ethtool/bitset.o
AR drivers/acpi/dptf/built-in.a
CC lib/fonts/font_8x16.o
CC security/keys/sysctl.o
CC lib/zstd/decompress/zstd_ddict.o
CC arch/x86/mm/cpu_entry_area.o
AR lib/dim/built-in.a
CC fs/proc/generic.o
CC arch/x86/mm/maccess.o
CC sound/core/info.o
CC sound/pci/hda/hda_sysfs.o
CC arch/x86/kernel/cpu/common.o
CC block/blk-lib.o
CC security/selinux/ss/sidtab.o
CC arch/x86/pci/early.o
CC net/netfilter/nf_log.o
CC arch/x86/pci/bus_numa.o
CC fs/proc/array.o
CC security/security.o
CC block/blk-mq.o
CC kernel/printk/nbcon.o
CC fs/sysfs/dir.o
CC drivers/acpi/acpica/dswexec.o
CC lib/xz/xz_dec_bcj.o
CC io_uring/filetable.o
CC arch/x86/events/intel/p6.o
AR lib/fonts/built-in.a
CC sound/pci/hda/hda_controller.o
CC arch/x86/kernel/cpu/rdrand.o
CC sound/pci/hda/hda_proc.o
CC security/selinux/ss/avtab.o
AR drivers/pci/switch/built-in.a
CC drivers/acpi/x86/apple.o
CC lib/zstd/decompress/zstd_decompress.o
CC lib/crypto/mpi/mpi-mul.o
CC sound/pci/hda/hda_hwdep.o
AR sound/core/seq/built-in.a
CC security/keys/keyctl_pkey.o
CC net/ethtool/strset.o
CC drivers/pnp/card.o
CC net/sched/cls_api.o
AR drivers/pci/hotplug/built-in.a
CC drivers/pci/access.o
AR net/netlink/built-in.a
CC drivers/acpi/acpica/dswload.o
CC fs/kernfs/file.o
CC arch/x86/mm/pgprot.o
AR drivers/clk/actions/built-in.a
AR drivers/clk/analogbits/built-in.a
AR drivers/clk/bcm/built-in.a
CC net/core/gen_stats.o
AR drivers/clk/imgtec/built-in.a
AR drivers/clk/imx/built-in.a
AR drivers/clk/ingenic/built-in.a
CC drivers/pci/bus.o
CC arch/x86/kernel/apic/msi.o
CC crypto/shash.o
AR drivers/clk/mediatek/built-in.a
CC fs/kernfs/symlink.o
AR drivers/clk/microchip/built-in.a
CC fs/sysfs/symlink.o
AR drivers/clk/mstar/built-in.a
AR drivers/clk/mvebu/built-in.a
CC kernel/power/suspend.o
CC security/lsm_audit.o
AR drivers/clk/ralink/built-in.a
CC kernel/irq/spurious.o
AR drivers/clk/renesas/built-in.a
CC arch/x86/pci/amd_bus.o
AR drivers/clk/socfpga/built-in.a
AR drivers/clk/sophgo/built-in.a
AR drivers/clk/sprd/built-in.a
AR drivers/clk/starfive/built-in.a
AR lib/xz/built-in.a
AR drivers/clk/sunxi-ng/built-in.a
AR drivers/clk/ti/built-in.a
CC arch/x86/kernel/apic/probe_32.o
AR drivers/clk/versatile/built-in.a
CC fs/devpts/inode.o
AR drivers/clk/xilinx/built-in.a
CC fs/netfs/buffered_read.o
CC lib/crypto/mpi/mpih-cmp.o
AR drivers/clk/built-in.a
CC drivers/acpi/x86/cmos_rtc.o
CC arch/x86/events/intel/pt.o
CC sound/core/isadma.o
CC drivers/acpi/acpica/dswload2.o
CC kernel/printk/printk_ringbuffer.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
AR sound/pci/ice1712/built-in.a
CC block/blk-mq-tag.o
AR security/keys/built-in.a
CC io_uring/rw.o
CC sound/pci/hda/hda_intel.o
CC drivers/acpi/acpica/dswscope.o
CC kernel/dma/mapping.o
CC net/sched/act_api.o
CC drivers/acpi/acpica/dswstate.o
CC arch/x86/mm/pgtable_32.o
CC drivers/pnp/driver.o
AR kernel/sched/built-in.a
CC lib/crypto/aes.o
CC drivers/acpi/acpica/evevent.o
CC net/netfilter/nf_queue.o
CC net/xfrm/xfrm_policy.o
CC net/unix/af_unix.o
CC kernel/irq/resend.o
CC lib/zstd/decompress/zstd_decompress_block.o
CC net/unix/garbage.o
CC sound/core/vmaster.o
CC net/ipv4/route.o
CC net/xfrm/xfrm_state.o
CC net/xfrm/xfrm_hash.o
CC fs/sysfs/mount.o
AR arch/x86/kernel/apic/built-in.a
CC lib/crypto/mpi/mpih-div.o
CC drivers/pci/probe.o
CC fs/sysfs/group.o
CC net/xfrm/xfrm_input.o
CC block/blk-stat.o
CC drivers/acpi/x86/lpss.o
CC arch/x86/kernel/cpu/match.o
CC security/selinux/ss/policydb.o
AR arch/x86/pci/built-in.a
CC kernel/printk/sysctl.o
CC crypto/akcipher.o
AR fs/kernfs/built-in.a
CC net/ethtool/linkinfo.o
CC net/ethtool/linkmodes.o
CC net/ethtool/rss.o
CC drivers/acpi/acpica/evgpe.o
CC net/core/gen_estimator.o
AR fs/devpts/built-in.a
CC arch/x86/events/utils.o
CC fs/proc/fd.o
CC io_uring/net.o
CC kernel/irq/chip.o
CC drivers/pnp/resource.o
CC io_uring/poll.o
CC kernel/power/hibernate.o
CC drivers/acpi/tables.o
CC arch/x86/mm/iomap_32.o
AR kernel/printk/built-in.a
CC kernel/rcu/sync.o
CC net/ipv4/inetpeer.o
CC fs/netfs/buffered_write.o
CC arch/x86/kernel/cpu/bugs.o
CC sound/core/ctljack.o
CC drivers/dma/dw/core.o
CC drivers/dma/hsu/hsu.o
CC drivers/acpi/acpica/evgpeblk.o
CC net/sched/sch_fifo.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC drivers/acpi/osi.o
AR fs/sysfs/built-in.a
AR drivers/dma/idxd/built-in.a
CC arch/x86/events/intel/uncore.o
CC net/netfilter/nf_sockopt.o
CC drivers/acpi/x86/s2idle.o
CC fs/proc/proc_tty.o
CC lib/crypto/mpi/mpih-mul.o
CC mm/shrinker.o
CC kernel/rcu/srcutree.o
CC sound/core/jack.o
CC kernel/power/snapshot.o
CC arch/x86/mm/hugetlbpage.o
CC crypto/sig.o
CC net/core/net_namespace.o
CC drivers/acpi/osl.o
CC net/ipv6/netfilter/ip6_tables.o
CC drivers/acpi/acpica/evgpeinit.o
CC net/ipv6/af_inet6.o
CC drivers/pci/host-bridge.o
AR sound/pci/hda/built-in.a
AR sound/pci/korg1212/built-in.a
CC net/ipv4/netfilter/ip_tables.o
CC net/ethtool/linkstate.o
CC lib/crypto/mpi/mpi-pow.o
AR sound/pci/mixart/built-in.a
AR sound/pci/nm256/built-in.a
AR sound/pci/oxygen/built-in.a
CC lib/crypto/mpi/mpiutil.o
CC kernel/irq/dummychip.o
AR sound/pci/pcxhr/built-in.a
AR sound/pci/riptide/built-in.a
AR sound/pci/rme9652/built-in.a
AR sound/pci/trident/built-in.a
AR sound/pci/ymfpci/built-in.a
CC kernel/irq/devres.o
AR sound/pci/vx222/built-in.a
AR sound/pci/built-in.a
CC kernel/irq/kexec.o
CC drivers/pnp/manager.o
AR drivers/dma/hsu/built-in.a
AR drivers/soc/apple/built-in.a
AR drivers/soc/aspeed/built-in.a
CC drivers/virtio/virtio.o
CC drivers/acpi/acpica/evgpeutil.o
AR drivers/soc/bcm/built-in.a
AR drivers/soc/fsl/built-in.a
AR drivers/soc/fujitsu/built-in.a
AR drivers/soc/hisilicon/built-in.a
AR drivers/soc/imx/built-in.a
AR drivers/soc/ixp4xx/built-in.a
CC fs/proc/cmdline.o
AR drivers/soc/loongson/built-in.a
AR drivers/soc/mediatek/built-in.a
AR drivers/soc/microchip/built-in.a
CC drivers/tty/vt/vt_ioctl.o
CC kernel/irq/autoprobe.o
CC fs/netfs/direct_read.o
AR drivers/soc/nuvoton/built-in.a
CC drivers/char/hw_random/core.o
AR drivers/soc/pxa/built-in.a
AR drivers/soc/amlogic/built-in.a
CC sound/core/hwdep.o
AR drivers/soc/qcom/built-in.a
CC net/ipv4/netfilter/iptable_filter.o
AR arch/x86/mm/built-in.a
CC drivers/virtio/virtio_ring.o
AR drivers/soc/renesas/built-in.a
CC drivers/acpi/x86/utils.o
CC arch/x86/events/rapl.o
AR drivers/soc/rockchip/built-in.a
CC drivers/dma/dw/dw.o
AR sound/synth/emux/built-in.a
AR drivers/soc/sunxi/built-in.a
AR sound/synth/built-in.a
AR drivers/soc/ti/built-in.a
CC net/netfilter/utils.o
CC io_uring/eventfd.o
CC drivers/char/agp/backend.o
CC net/ipv6/netfilter/ip6table_filter.o
AR drivers/soc/versatile/built-in.a
AR drivers/soc/xilinx/built-in.a
AR drivers/soc/built-in.a
CC mm/shmem.o
CC kernel/dma/direct.o
CC kernel/power/swap.o
CC net/sched/cls_cgroup.o
CC drivers/pci/remove.o
CC fs/proc/consoles.o
CC net/netfilter/nfnetlink.o
CC crypto/kpp.o
CC fs/ext4/balloc.o
CC drivers/acpi/acpica/evglock.o
AR lib/crypto/mpi/built-in.a
CC lib/crypto/arc4.o
CC block/blk-mq-sysfs.o
CC arch/x86/events/intel/uncore_nhmex.o
CC drivers/pnp/support.o
CC kernel/rcu/tree.o
CC lib/zstd/zstd_common_module.o
CC arch/x86/kernel/cpu/aperfmperf.o
CC net/core/secure_seq.o
CC kernel/irq/irqdomain.o
CC sound/core/timer.o
CC net/unix/sysctl_net_unix.o
CC net/ethtool/debug.o
CC net/ipv6/netfilter/ip6table_mangle.o
CC net/xfrm/xfrm_output.o
CC drivers/acpi/acpica/evhandler.o
CC drivers/dma/dw/idma32.o
CC lib/crypto/gf128mul.o
CC lib/crypto/blake2s.o
CC fs/proc/cpuinfo.o
CC net/ipv4/protocol.o
CC drivers/char/hw_random/intel-rng.o
CC drivers/acpi/x86/blacklist.o
CC drivers/char/agp/generic.o
CC io_uring/uring_cmd.o
CC kernel/irq/proc.o
CC arch/x86/kernel/process_32.o
CC drivers/pci/pci.o
CC fs/netfs/direct_write.o
CC arch/x86/events/msr.o
CC drivers/pnp/interface.o
CC security/selinux/ss/services.o
CC drivers/tty/vt/vc_screen.o
ASN.1 crypto/rsapubkey.asn1.[ch]
ASN.1 crypto/rsaprivkey.asn1.[ch]
CC crypto/rsa.o
CC drivers/tty/hvc/hvc_console.o
CC kernel/dma/ops_helpers.o
CC drivers/tty/vt/selection.o
CC security/selinux/ss/conditional.o
CC drivers/acpi/acpica/evmisc.o
CC block/blk-mq-cpumap.o
CC drivers/tty/serial/8250/8250_core.o
CC net/ipv4/netfilter/iptable_mangle.o
CC arch/x86/kernel/cpu/cpuid-deps.o
CC net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
CC drivers/tty/serial/8250/8250_platform.o
CC net/sched/ematch.o
AR drivers/acpi/x86/built-in.a
CC lib/crypto/blake2s-generic.o
CC fs/proc/devices.o
CC fs/proc/interrupts.o
CC kernel/irq/migration.o
CC arch/x86/kernel/signal.o
CC crypto/rsa_helper.o
CC drivers/dma/dw/acpi.o
CC net/netfilter/nfnetlink_log.o
CC drivers/char/hw_random/amd-rng.o
AR net/unix/built-in.a
CC sound/core/hrtimer.o
CC drivers/acpi/acpica/evregion.o
CC kernel/power/user.o
CC arch/x86/events/intel/uncore_snb.o
CC drivers/pnp/quirks.o
AR drivers/dma/amd/built-in.a
CC kernel/rcu/rcu_segcblist.o
CC net/ethtool/wol.o
CC arch/x86/kernel/cpu/umwait.o
CC io_uring/openclose.o
CC drivers/char/mem.o
CC drivers/tty/serial/serial_core.o
CC kernel/dma/remap.o
CC drivers/tty/serial/8250/8250_pnp.o
CC lib/crypto/sha1.o
CC net/core/flow_dissector.o
CC fs/netfs/iterator.o
CC net/ethtool/features.o
CC crypto/rsa-pkcs1pad.o
CC drivers/char/agp/isoch.o
CC arch/x86/events/intel/uncore_snbep.o
CC block/blk-mq-sched.o
CC kernel/irq/cpuhotplug.o
CC drivers/acpi/utils.o
CC drivers/virtio/virtio_anchor.o
CC io_uring/sqpoll.o
CC drivers/acpi/reboot.o
CC drivers/tty/vt/keyboard.o
AR drivers/tty/hvc/built-in.a
CC drivers/acpi/nvs.o
CC fs/proc/loadavg.o
CC fs/ext4/bitmap.o
CC kernel/irq/pm.o
CC sound/core/pcm.o
CC drivers/acpi/acpica/evrgnini.o
CC lib/zstd/common/debug.o
CC lib/zstd/common/entropy_common.o
CC lib/bug.o
CC fs/netfs/locking.o
AR drivers/dma/dw/built-in.a
AR drivers/dma/mediatek/built-in.a
AR drivers/dma/qcom/built-in.a
AR drivers/dma/stm32/built-in.a
CC drivers/char/hw_random/geode-rng.o
CC fs/jbd2/transaction.o
CC lib/crypto/sha256.o
AR drivers/dma/ti/built-in.a
AR drivers/dma/xilinx/built-in.a
CC net/ipv4/netfilter/ipt_REJECT.o
CC drivers/dma/dmaengine.o
CC net/xfrm/xfrm_sysctl.o
CC drivers/pnp/system.o
CC fs/jbd2/commit.o
MKCAP arch/x86/kernel/cpu/capflags.c
CC kernel/power/poweroff.o
CC lib/zstd/common/error_private.o
AR kernel/dma/built-in.a
CC drivers/char/random.o
CC drivers/dma/virt-dma.o
AR drivers/iommu/amd/built-in.a
AR net/sched/built-in.a
CC lib/zstd/common/fse_decompress.o
AR drivers/iommu/intel/built-in.a
CC drivers/char/hw_random/via-rng.o
AR drivers/iommu/arm/arm-smmu/built-in.a
AR drivers/iommu/arm/arm-smmu-v3/built-in.a
AR drivers/iommu/arm/built-in.a
AR drivers/iommu/iommufd/built-in.a
CC drivers/tty/serial/8250/8250_rsa.o
CC drivers/acpi/acpica/evsci.o
AR drivers/iommu/riscv/built-in.a
CC net/ipv6/netfilter/nf_conntrack_reasm.o
CC drivers/virtio/virtio_pci_modern_dev.o
CC drivers/iommu/iommu.o
CC fs/proc/meminfo.o
CC crypto/rsassa-pkcs1.o
CC drivers/char/agp/amd64-agp.o
CC sound/core/pcm_native.o
AR kernel/power/built-in.a
CC arch/x86/events/intel/uncore_discovery.o
CC net/packet/af_packet.o
CC block/ioctl.o
CC net/ipv6/anycast.o
AR net/dsa/built-in.a
CC block/genhd.o
CC block/ioprio.o
CC fs/ramfs/inode.o
CC arch/x86/events/intel/cstate.o
CC fs/ext4/block_validity.o
CC drivers/char/misc.o
CC net/netfilter/nf_conntrack_core.o
CC mm/util.o
CC kernel/irq/msi.o
AR drivers/pnp/built-in.a
CC drivers/tty/serial/serial_base_bus.o
AR lib/crypto/built-in.a
CC fs/hugetlbfs/inode.o
CC fs/fat/cache.o
CC net/ethtool/privflags.o
AR drivers/char/hw_random/built-in.a
CC drivers/acpi/acpica/evxface.o
CC fs/fat/dir.o
CC fs/isofs/namei.o
CC fs/netfs/main.o
CC security/selinux/ss/mls.o
CC lib/buildid.o
CC lib/zstd/common/zstd_common.o
CC fs/jbd2/recovery.o
AR lib/zstd/built-in.a
CC kernel/irq/affinity.o
CC drivers/tty/serial/8250/8250_port.o
CC crypto/acompress.o
CC fs/proc/stat.o
CC fs/proc/uptime.o
CC drivers/tty/vt/vt.o
CC drivers/virtio/virtio_pci_legacy_dev.o
CC [M] net/ipv4/netfilter/iptable_nat.o
CC net/xfrm/xfrm_replay.o
CC drivers/acpi/acpica/evxfevnt.o
CC drivers/char/agp/intel-agp.o
CC drivers/iommu/iommu-traces.o
CC drivers/dma/acpi-dma.o
CC fs/ramfs/file-mmu.o
CC io_uring/xattr.o
CC io_uring/nop.o
CC io_uring/fs.o
CC arch/x86/kernel/signal_32.o
CC fs/ext4/dir.o
CC fs/isofs/inode.o
CC net/ipv6/ip6_output.o
CC arch/x86/kernel/cpu/powerflags.o
CC drivers/char/virtio_console.o
CC drivers/char/hpet.o
CC mm/mmzone.o
CC lib/clz_tab.o
AR sound/usb/misc/built-in.a
CC net/sunrpc/auth_gss/auth_gss.o
CC lib/cmdline.o
AR sound/usb/usx2y/built-in.a
AR sound/usb/caiaq/built-in.a
AR sound/usb/6fire/built-in.a
AR sound/usb/hiface/built-in.a
CC drivers/pci/pci-driver.o
CC drivers/acpi/acpica/evxfgpe.o
AR sound/usb/bcd2000/built-in.a
AR sound/usb/built-in.a
CC net/sunrpc/clnt.o
CC net/sunrpc/xprt.o
CC security/selinux/ss/context.o
CC net/core/sysctl_net_core.o
CC net/ethtool/rings.o
CC block/badblocks.o
CC lib/cpumask.o
CC drivers/iommu/iommu-sysfs.o
CC kernel/irq/matrix.o
CC fs/proc/util.o
CC net/ipv6/netfilter/nf_reject_ipv6.o
CC drivers/iommu/dma-iommu.o
CC drivers/virtio/virtio_pci_modern.o
AR arch/x86/events/intel/built-in.a
AR arch/x86/events/built-in.a
CC drivers/iommu/iova.o
CC arch/x86/kernel/cpu/topology.o
CC fs/jbd2/checkpoint.o
CC fs/jbd2/revoke.o
AR fs/ramfs/built-in.a
AR drivers/dma/built-in.a
CC kernel/entry/common.o
CC kernel/module/main.o
CC crypto/scompress.o
CC drivers/char/agp/intel-gtt.o
AR kernel/rcu/built-in.a
CC kernel/entry/syscall_user_dispatch.o
CC mm/vmstat.o
CC drivers/acpi/acpica/evxfregn.o
CC fs/jbd2/journal.o
CC drivers/char/nvram.o
CC io_uring/splice.o
CC fs/fat/fatent.o
AR drivers/tty/ipwireless/built-in.a
CC drivers/acpi/acpica/exconcat.o
CC security/selinux/netlabel.o
CC kernel/time/time.o
AR fs/hugetlbfs/built-in.a
CC net/sunrpc/socklib.o
AR net/ipv4/netfilter/built-in.a
CC net/ipv4/ip_input.o
CC fs/proc/version.o
CC lib/ctype.o
CC fs/netfs/misc.o
CC lib/dec_and_lock.o
CC fs/ext4/ext4_jbd2.o
CC net/xfrm/xfrm_device.o
CC block/blk-rq-qos.o
CC net/ipv6/netfilter/ip6t_ipv6header.o
CC block/disk-events.o
CC mm/backing-dev.o
CC arch/x86/kernel/traps.o
CC lib/decompress.o
CC lib/decompress_bunzip2.o
CC fs/isofs/dir.o
CC sound/core/pcm_lib.o
CC drivers/acpi/acpica/exconfig.o
CC net/netfilter/nf_conntrack_standalone.o
CC net/ethtool/channels.o
CC fs/ext4/extents.o
CC drivers/virtio/virtio_pci_common.o
CC net/netfilter/nf_conntrack_expect.o
CC lib/decompress_inflate.o
CC io_uring/sync.o
COPY drivers/tty/vt/defkeymap.c
CC fs/fat/file.o
CC drivers/pci/search.o
CC fs/proc/softirqs.o
CC fs/isofs/util.o
CC drivers/tty/serial/8250/8250_dma.o
CC fs/netfs/objects.o
CC net/core/dev.o
CC crypto/algboss.o
CC drivers/acpi/wakeup.o
AR kernel/irq/built-in.a
AR drivers/gpu/host1x/built-in.a
AR drivers/char/agp/built-in.a
AR drivers/char/built-in.a
CC drivers/virtio/virtio_pci_legacy.o
CC drivers/acpi/acpica/exconvrt.o
AR kernel/entry/built-in.a
CC drivers/acpi/acpica/excreate.o
CC drivers/tty/vt/consolemap.o
AR drivers/iommu/built-in.a
CC block/blk-ia-ranges.o
AR drivers/gpu/drm/tests/built-in.a
AR drivers/gpu/drm/arm/built-in.a
CC kernel/futex/core.o
AR drivers/gpu/drm/clients/built-in.a
CC drivers/gpu/drm/display/drm_display_helper_mod.o
CC kernel/time/timer.o
CC drivers/gpu/drm/ttm/ttm_tt.o
CC kernel/cgroup/cgroup.o
CC drivers/gpu/drm/i915/i915_config.o
CC kernel/trace/trace_clock.o
CC lib/decompress_unlz4.o
CC block/early-lookup.o
AR net/wireless/tests/built-in.a
CC net/xfrm/xfrm_nat_keepalive.o
CC net/wireless/core.o
CC fs/proc/namespaces.o
CC drivers/tty/tty_io.o
AR net/mac80211/tests/built-in.a
CC net/mac80211/main.o
AR security/selinux/built-in.a
CC drivers/acpi/acpica/exdebug.o
CC net/netlabel/netlabel_user.o
CC security/device_cgroup.o
CC fs/isofs/rock.o
CC drivers/gpu/drm/display/drm_dp_dual_mode_helper.o
CC net/rfkill/core.o
CC drivers/pci/rom.o
CC mm/mm_init.o
CC drivers/gpu/drm/i915/i915_driver.o
AR sound/firewire/built-in.a
CC io_uring/msg_ring.o
AR net/packet/built-in.a
CC net/netlabel/netlabel_kapi.o
CC net/sunrpc/auth_gss/gss_mech_switch.o
CC net/ipv6/netfilter/ip6t_REJECT.o
AR drivers/gpu/vga/built-in.a
CC drivers/pci/setup-res.o
CC drivers/gpu/drm/display/drm_dp_helper.o
CC drivers/tty/serial/8250/8250_dwlib.o
CC net/ipv4/ip_fragment.o
CC kernel/trace/ring_buffer.o
CC io_uring/advise.o
CC drivers/virtio/virtio_pci_admin_legacy_io.o
CC net/ethtool/coalesce.o
CC drivers/virtio/virtio_input.o
CC fs/netfs/read_collect.o
CC fs/fat/inode.o
CC lib/decompress_unlzma.o
CC drivers/virtio/virtio_dma_buf.o
CC drivers/acpi/acpica/exdump.o
CC crypto/testmgr.o
HOSTCC drivers/tty/vt/conmakehash
CC kernel/futex/syscalls.o
CC block/bsg.o
CC net/ipv6/ip6_input.o
CC kernel/cgroup/rstat.o
CC net/netfilter/nf_conntrack_helper.o
CC drivers/gpu/drm/ttm/ttm_bo.o
CC fs/proc/self.o
CC kernel/module/strict_rwx.o
CC sound/core/pcm_misc.o
CC drivers/tty/vt/defkeymap.o
CC drivers/acpi/acpica/exfield.o
CC kernel/cgroup/namespace.o
CC drivers/pci/irq.o
CC mm/percpu.o
CC drivers/tty/serial/serial_ctrl.o
CC drivers/tty/serial/8250/8250_pcilib.o
CC fs/isofs/export.o
CONMK drivers/tty/vt/consolemap_deftbl.c
CC drivers/tty/vt/consolemap_deftbl.o
CC net/ipv6/addrconf.o
AR drivers/tty/vt/built-in.a
CC drivers/tty/n_tty.o
AR fs/jbd2/built-in.a
CC block/blk-cgroup.o
CC kernel/futex/pi.o
CC kernel/cgroup/cgroup-v1.o
CC drivers/pci/vpd.o
CC io_uring/statx.o
CC crypto/cmac.o
CC net/rfkill/input.o
AR drivers/virtio/built-in.a
CC io_uring/timeout.o
CC net/xfrm/xfrm_algo.o
CC drivers/acpi/acpica/exfldio.o
AR security/built-in.a
CC io_uring/fdinfo.o
CC lib/decompress_unlzo.o
CC kernel/time/hrtimer.o
CC fs/proc/thread_self.o
CC kernel/module/kmod.o
AR net/ipv6/netfilter/built-in.a
CC net/netfilter/nf_conntrack_proto.o
CC drivers/acpi/sleep.o
CC net/netfilter/nf_conntrack_proto_generic.o
CC fs/ext4/extents_status.o
CC net/sunrpc/auth_gss/svcauth_gss.o
CC sound/core/pcm_memory.o
CC net/netlabel/netlabel_domainhash.o
CC net/ethtool/pause.o
CC crypto/hmac.o
CC crypto/crypto_null.o
CC net/sunrpc/auth_gss/gss_rpc_upcall.o
CC net/ipv4/ip_forward.o
CC drivers/tty/serial/8250/8250_early.o
CC fs/isofs/joliet.o
CC fs/netfs/read_pgpriv2.o
CC io_uring/cancel.o
AR net/rfkill/built-in.a
CC fs/fat/misc.o
CC net/9p/mod.o
CC arch/x86/kernel/cpu/proc.o
CC net/dns_resolver/dns_key.o
CC drivers/gpu/drm/i915/i915_drm_client.o
CC drivers/gpu/drm/ttm/ttm_bo_util.o
CC drivers/acpi/acpica/exmisc.o
CC drivers/gpu/drm/ttm/ttm_bo_vm.o
CC kernel/futex/requeue.o
CC net/dns_resolver/dns_query.o
CC lib/decompress_unxz.o
CC drivers/pci/setup-bus.o
CC fs/proc/proc_sysctl.o
CC net/sunrpc/auth_gss/gss_rpc_xdr.o
CC kernel/trace/trace.o
CC kernel/bpf/core.o
CC kernel/module/tree_lookup.o
CC arch/x86/kernel/cpu/feat_ctl.o
CC drivers/acpi/acpica/exmutex.o
CC drivers/tty/serial/8250/8250_exar.o
CC drivers/gpu/drm/display/drm_dp_mst_topology.o
CC crypto/md5.o
CC net/9p/client.o
CC net/sunrpc/xprtsock.o
CC fs/isofs/compress.o
CC sound/core/memalloc.o
CC drivers/tty/serial/serial_port.o
CC kernel/trace/trace_output.o
CC net/mac80211/status.o
CC lib/decompress_unzstd.o
CC net/xfrm/xfrm_user.o
CC fs/ext4/file.o
CC kernel/futex/waitwake.o
CC fs/netfs/read_retry.o
CC fs/fat/nfs.o
AR net/dns_resolver/built-in.a
CC kernel/events/core.o
CC net/ethtool/eee.o
CC kernel/time/sleep_timeout.o
CC net/wireless/sysfs.o
CC drivers/acpi/acpica/exnames.o
CC block/blk-ioprio.o
CC net/sunrpc/sched.o
CC io_uring/waitid.o
CC arch/x86/kernel/cpu/intel.o
CC kernel/events/ring_buffer.o
CC fs/netfs/read_single.o
CC drivers/tty/tty_ioctl.o
CC drivers/tty/serial/8250/8250_lpss.o
CC kernel/module/kallsyms.o
CC crypto/sha256_generic.o
CC net/netlabel/netlabel_addrlist.o
CC drivers/gpu/drm/ttm/ttm_module.o
CC net/netfilter/nf_conntrack_proto_tcp.o
CC drivers/gpu/drm/i915/i915_getparam.o
CC lib/dump_stack.o
CC net/ipv4/ip_options.o
CC drivers/acpi/acpica/exoparg1.o
CC drivers/connector/cn_queue.o
CC kernel/time/timekeeping.o
CC io_uring/register.o
AR fs/isofs/built-in.a
CC crypto/sha512_generic.o
CC drivers/connector/connector.o
CC mm/slab_common.o
CC drivers/tty/serial/earlycon.o
CC arch/x86/kernel/cpu/tsx.o
CC sound/core/pcm_timer.o
CC drivers/gpu/drm/ttm/ttm_execbuf_util.o
CC fs/fat/namei_vfat.o
AR kernel/futex/built-in.a
CC kernel/events/callchain.o
CC kernel/events/hw_breakpoint.o
CC net/mac80211/driver-ops.o
CC block/blk-iolatency.o
CC fs/proc/proc_net.o
CC drivers/tty/serial/8250/8250_mid.o
CC net/sunrpc/auth_gss/trace.o
CC kernel/cgroup/freezer.o
CC drivers/acpi/acpica/exoparg2.o
CC net/netfilter/nf_conntrack_proto_udp.o
CC fs/netfs/rolling_buffer.o
CC fs/ext4/fsmap.o
CC kernel/module/procfs.o
CC lib/earlycpio.o
CC net/handshake/alert.o
CC net/ethtool/tsinfo.o
CC drivers/pci/vc.o
CC arch/x86/kernel/cpu/intel_epb.o
CC drivers/tty/serial/8250/8250_pci.o
CC drivers/gpu/drm/display/drm_dsc_helper.o
CC lib/extable.o
CC net/mac80211/sta_info.o
CC drivers/gpu/drm/i915/i915_ioctl.o
CC sound/core/seq_device.o
CC crypto/sha3_generic.o
CC drivers/gpu/drm/ttm/ttm_range_manager.o
CC net/wireless/radiotap.o
CC net/netlabel/netlabel_mgmt.o
CC drivers/acpi/acpica/exoparg3.o
CC lib/flex_proportions.o
CC lib/idr.o
CC net/9p/error.o
CC drivers/connector/cn_proc.o
CC arch/x86/kernel/cpu/amd.o
CC net/sunrpc/auth_gss/gss_krb5_mech.o
CC kernel/module/sysfs.o
CC lib/iomem_copy.o
CC kernel/events/uprobes.o
CC fs/proc/kcore.o
CC net/ipv4/ip_output.o
CC drivers/pci/mmap.o
CC net/sunrpc/auth_gss/gss_krb5_seal.o
CC drivers/acpi/acpica/exoparg6.o
CC kernel/cgroup/legacy_freezer.o
CC net/sunrpc/auth_gss/gss_krb5_unseal.o
CC fs/netfs/write_collect.o
AR sound/core/built-in.a
CC crypto/ecb.o
AR sound/sparc/built-in.a
CC kernel/time/ntp.o
AR sound/spi/built-in.a
AR sound/parisc/built-in.a
AR sound/pcmcia/vx/built-in.a
AR sound/pcmcia/pdaudiocf/built-in.a
CC arch/x86/kernel/idt.o
AR sound/pcmcia/built-in.a
CC fs/proc/kmsg.o
AR sound/mips/built-in.a
AR sound/soc/built-in.a
CC drivers/acpi/acpica/exprep.o
CC net/9p/protocol.o
AR sound/atmel/built-in.a
CC sound/hda/hda_bus_type.o
CC drivers/gpu/drm/ttm/ttm_resource.o
CC lib/irq_regs.o
CC drivers/acpi/acpica/exregion.o
CC fs/fat/namei_msdos.o
CC io_uring/truncate.o
CC drivers/acpi/acpica/exresnte.o
CC block/blk-iocost.o
CC net/ethtool/cabletest.o
CC drivers/gpu/drm/i915/i915_irq.o
CC net/9p/trans_common.o
CC net/netfilter/nf_conntrack_proto_icmp.o
CC lib/is_single_threaded.o
CC net/handshake/genl.o
AR kernel/module/built-in.a
CC net/9p/trans_fd.o
AR kernel/bpf/built-in.a
CC net/ethtool/tunnels.o
CC net/wireless/util.o
AR net/xfrm/built-in.a
CC drivers/pci/devres.o
CC kernel/cgroup/pids.o
CC crypto/cbc.o
CC kernel/cgroup/rdma.o
CC net/sunrpc/auth.o
CC net/ipv6/addrlabel.o
CC arch/x86/kernel/cpu/hygon.o
CC drivers/tty/serial/8250/8250_pericom.o
CC net/ipv4/ip_sockglue.o
CC drivers/acpi/acpica/exresolv.o
CC net/ipv4/inet_hashtables.o
CC fs/ext4/fsync.o
CC fs/proc/page.o
AR drivers/gpu/drm/renesas/rcar-du/built-in.a
AR drivers/gpu/drm/renesas/rz-du/built-in.a
CC net/core/dev_api.o
AR drivers/gpu/drm/renesas/built-in.a
AR drivers/connector/built-in.a
CC lib/klist.o
CC net/core/dev_addr_lists.o
CC fs/ext4/hash.o
CC drivers/gpu/drm/display/drm_hdcp_helper.o
CC net/netlabel/netlabel_unlabeled.o
CC sound/hda/hdac_bus.o
CC kernel/time/clocksource.o
CC net/netfilter/nf_conntrack_extend.o
CC drivers/tty/tty_ldisc.o
CC drivers/gpu/drm/i915/i915_mitigations.o
CC sound/hda/hdac_device.o
CC crypto/ctr.o
CC fs/ext4/ialloc.o
CC net/sunrpc/auth_gss/gss_krb5_wrap.o
CC mm/compaction.o
CC drivers/acpi/acpica/exresop.o
CC arch/x86/kernel/cpu/centaur.o
CC fs/netfs/write_issue.o
CC io_uring/memmap.o
CC drivers/gpu/drm/ttm/ttm_pool.o
CC lib/kobject.o
CC drivers/pci/proc.o
CC net/handshake/netlink.o
AR fs/fat/built-in.a
CC kernel/cgroup/cpuset.o
AR sound/x86/built-in.a
CC kernel/cgroup/misc.o
CC net/sunrpc/auth_null.o
AR drivers/tty/serial/8250/built-in.a
AR drivers/tty/serial/built-in.a
CC arch/x86/kernel/irq.o
CC sound/hda/hdac_sysfs.o
CC net/core/dst.o
AR fs/proc/built-in.a
CC drivers/acpi/acpica/exserial.o
CC arch/x86/kernel/irq_32.o
CC arch/x86/kernel/cpu/transmeta.o
CC crypto/gcm.o
CC drivers/gpu/drm/display/drm_hdmi_helper.o
CC drivers/pci/pci-sysfs.o
CC kernel/trace/trace_seq.o
CC fs/netfs/write_retry.o
CC drivers/acpi/device_sysfs.o
CC drivers/base/power/sysfs.o
CC io_uring/alloc_cache.o
CC net/ethtool/fec.o
CC drivers/tty/tty_buffer.o
CC net/9p/trans_virtio.o
CC net/core/netevent.o
CC kernel/time/jiffies.o
CC lib/kobject_uevent.o
CC net/ipv6/route.o
CC drivers/tty/tty_port.o
CC drivers/gpu/drm/i915/i915_module.o
CC drivers/tty/tty_mutex.o
CC drivers/acpi/acpica/exstore.o
CC drivers/tty/tty_ldsem.o
CC drivers/tty/tty_baudrate.o
CC block/mq-deadline.o
CC net/netfilter/nf_conntrack_acct.o
CC arch/x86/kernel/dumpstack_32.o
CC drivers/acpi/acpica/exstoren.o
CC arch/x86/kernel/cpu/zhaoxin.o
CC kernel/trace/trace_stat.o
CC fs/nfs/client.o
CC net/sunrpc/auth_gss/gss_krb5_crypto.o
CC kernel/time/timer_list.o
CC sound/hda/hdac_regmap.o
CC drivers/base/power/generic_ops.o
CC drivers/gpu/drm/display/drm_scdc_helper.o
CC drivers/base/power/common.o
CC net/netlabel/netlabel_cipso_v4.o
CC drivers/base/power/qos.o
CC io_uring/io-wq.o
CC arch/x86/kernel/cpu/vortex.o
CC net/ethtool/eeprom.o
CC drivers/block/loop.o
CC net/handshake/request.o
CC drivers/gpu/drm/ttm/ttm_device.o
CC drivers/block/virtio_blk.o
CC drivers/acpi/acpica/exstorob.o
CC net/ipv6/ip6_fib.o
CC drivers/base/power/runtime.o
AR fs/netfs/built-in.a
CC net/core/neighbour.o
CC crypto/ccm.o
CC net/netfilter/nf_conntrack_seqadj.o
CC drivers/gpu/drm/ttm/ttm_sys_manager.o
CC net/sunrpc/auth_gss/gss_krb5_keys.o
CC fs/nfs/dir.o
CC net/ipv4/inet_timewait_sock.o
CC drivers/tty/tty_jobctrl.o
CC block/kyber-iosched.o
CC net/devres.o
CC arch/x86/kernel/cpu/perfctr-watchdog.o
CC arch/x86/kernel/cpu/vmware.o
CC kernel/cgroup/debug.o
CC net/netlabel/netlabel_calipso.o
CC drivers/base/power/wakeirq.o
CC kernel/fork.o
CC drivers/pci/slot.o
CC drivers/acpi/acpica/exsystem.o
CC net/mac80211/wep.o
CC drivers/gpu/drm/i915/i915_params.o
CC kernel/time/timeconv.o
CC lib/logic_pio.o
CC kernel/trace/trace_printk.o
CC sound/hda/hdac_controller.o
CC kernel/trace/pid_list.o
AR drivers/gpu/drm/display/built-in.a
CC drivers/gpu/drm/i915/i915_pci.o
CC drivers/tty/n_null.o
AR net/9p/built-in.a
CC kernel/exec_domain.o
CC drivers/base/firmware_loader/builtin/main.o
CC fs/ext4/indirect.o
CC drivers/gpu/drm/ttm/ttm_backup.o
CC crypto/aes_generic.o
CC drivers/acpi/acpica/extrace.o
CC kernel/time/timecounter.o
CC net/ipv6/ipv6_sockglue.o
CC net/ipv4/inet_connection_sock.o
CC fs/nfs/file.o
CC kernel/time/alarmtimer.o
CC drivers/base/regmap/regmap.o
CC net/ethtool/stats.o
AR drivers/base/firmware_loader/builtin/built-in.a
CC drivers/base/firmware_loader/main.o
CC block/blk-mq-debugfs.o
CC arch/x86/kernel/cpu/hypervisor.o
CC kernel/panic.o
CC drivers/acpi/acpica/exutils.o
CC arch/x86/kernel/time.o
AR kernel/cgroup/built-in.a
CC arch/x86/kernel/ioport.o
CC lib/maple_tree.o
CC drivers/pci/pci-acpi.o
CC drivers/tty/pty.o
CC arch/x86/kernel/dumpstack.o
CC drivers/base/power/main.o
CC io_uring/futex.o
CC drivers/base/regmap/regcache.o
CC kernel/time/posix-timers.o
CC net/handshake/tlshd.o
CC mm/show_mem.o
AR net/sunrpc/auth_gss/built-in.a
AR drivers/base/test/built-in.a
CC drivers/acpi/device_pm.o
CC arch/x86/kernel/cpu/mshyperv.o
AR drivers/block/built-in.a
AR drivers/gpu/drm/omapdrm/built-in.a
CC drivers/base/power/wakeup.o
AR net/netlabel/built-in.a
CC net/netfilter/nf_conntrack_proto_icmpv6.o
CC net/netfilter/nf_conntrack_netlink.o
CC net/ipv6/ndisc.o
CC net/ethtool/phc_vclocks.o
CC kernel/trace/trace_sched_switch.o
CC drivers/tty/tty_audit.o
CC sound/hda/hdac_stream.o
CC drivers/pci/iomap.o
CC drivers/acpi/acpica/hwacpi.o
CC net/wireless/reg.o
CC drivers/gpu/drm/ttm/ttm_agp_backend.o
CC kernel/time/posix-cpu-timers.o
AR drivers/gpu/drm/tilcdc/built-in.a
CC drivers/base/component.o
CC crypto/authenc.o
CC drivers/gpu/drm/i915/i915_scatterlist.o
CC net/mac80211/aead_api.o
CC drivers/acpi/proc.o
CC drivers/acpi/acpica/hwesleep.o
CC block/blk-pm.o
CC drivers/acpi/acpica/hwgpe.o
CC io_uring/epoll.o
CC net/ethtool/mm.o
AR sound/xen/built-in.a
CC fs/ext4/inline.o
AR drivers/base/firmware_loader/built-in.a
CC net/mac80211/wpa.o
CC net/sunrpc/auth_tls.o
CC net/core/rtnetlink.o
CC block/holder.o
CC drivers/base/power/wakeup_stats.o
CC drivers/tty/sysrq.o
CC mm/interval_tree.o
CC fs/ext4/inode.o
AR drivers/gpu/drm/ttm/built-in.a
CC arch/x86/kernel/nmi.o
CC crypto/authencesn.o
CC drivers/pci/quirks.o
CC net/ipv6/udp.o
CC net/ethtool/module.o
CC arch/x86/kernel/cpu/debugfs.o
CC net/handshake/trace.o
CC crypto/lzo.o
CC drivers/base/core.o
AR kernel/events/built-in.a
CC drivers/base/power/trace.o
CC net/socket.o
CC drivers/gpu/drm/i915/i915_switcheroo.o
CC net/sysctl_net.o
CC drivers/acpi/acpica/hwregs.o
CC drivers/pci/pci-label.o
CC drivers/base/regmap/regcache-rbtree.o
CC sound/hda/array.o
CC kernel/trace/trace_nop.o
AR sound/virtio/built-in.a
CC fs/exportfs/expfs.o
CC lib/memcat_p.o
CC crypto/lzo-rle.o
CC net/mac80211/scan.o
CC arch/x86/kernel/cpu/bus_lock.o
CC kernel/time/posix-clock.o
CC io_uring/napi.o
CC drivers/base/bus.o
AR block/built-in.a
CC net/wireless/scan.o
CC kernel/cpu.o
CC lib/nmi_backtrace.o
CC drivers/misc/eeprom/eeprom_93cx6.o
CC drivers/gpu/drm/virtio/virtgpu_drv.o
AR drivers/misc/cb710/built-in.a
CC drivers/base/regmap/regcache-flat.o
CC drivers/acpi/acpica/hwsleep.o
CC drivers/acpi/acpica/hwvalid.o
CC net/ipv4/tcp.o
CC drivers/base/regmap/regcache-maple.o
CC drivers/base/dd.o
CC arch/x86/kernel/ldt.o
CC mm/list_lru.o
CC net/sunrpc/auth_unix.o
AR drivers/base/power/built-in.a
CC drivers/gpu/drm/i915/i915_sysfs.o
CC drivers/acpi/bus.o
CC fs/nfs/getroot.o
AR drivers/tty/built-in.a
CC net/netfilter/nf_conntrack_ftp.o
AR drivers/mfd/built-in.a
CC sound/sound_core.o
CC kernel/trace/blktrace.o
CC sound/hda/hdmi_chmap.o
CC drivers/base/syscore.o
AR drivers/misc/eeprom/built-in.a
CC crypto/rng.o
AR drivers/misc/lis3lv02d/built-in.a
AR drivers/misc/cardreader/built-in.a
AR drivers/misc/keba/built-in.a
CC drivers/base/driver.o
AR drivers/misc/built-in.a
CC sound/last.o
CC drivers/acpi/acpica/hwxface.o
AR fs/exportfs/built-in.a
CC arch/x86/kernel/setup.o
CC kernel/exit.o
CC kernel/softirq.o
CC net/ethtool/cmis_fw_update.o
CC lib/objpool.o
CC drivers/pci/vgaarb.o
CC kernel/time/itimer.o
AR drivers/gpu/drm/imx/built-in.a
CC arch/x86/kernel/cpu/capflags.o
AR drivers/nfc/built-in.a
CC net/ethtool/cmis_cdb.o
CC net/ipv4/tcp_input.o
CC lib/plist.o
CC drivers/acpi/acpica/hwxfsleep.o
CC drivers/gpu/drm/virtio/virtgpu_kms.o
AR arch/x86/kernel/cpu/built-in.a
CC fs/nfs/inode.o
CC net/ethtool/pse-pd.o
CC net/mac80211/offchannel.o
AR drivers/dax/hmem/built-in.a
CC net/netfilter/nf_conntrack_irc.o
AR drivers/dax/built-in.a
CC mm/workingset.o
CC drivers/base/regmap/regmap-debugfs.o
CC drivers/acpi/glue.o
CC net/sunrpc/svc.o
CC sound/hda/trace.o
CC drivers/gpu/drm/i915/i915_utils.o
CC fs/lockd/clntlock.o
AR net/handshake/built-in.a
CC kernel/trace/trace_events.o
CC lib/radix-tree.o
CC kernel/time/clockevents.o
CC net/core/utils.o
CC net/netfilter/nf_conntrack_sip.o
CC drivers/acpi/acpica/hwpci.o
CC crypto/drbg.o
CC kernel/time/tick-common.o
AR io_uring/built-in.a
CC net/sunrpc/svcsock.o
CC net/wireless/nl80211.o
CC net/sunrpc/svcauth.o
CC fs/nls/nls_base.o
CC fs/nfs/super.o
CC kernel/resource.o
CC fs/lockd/clntproc.o
CC drivers/acpi/acpica/nsaccess.o
AR drivers/base/regmap/built-in.a
CC net/ethtool/plca.o
CC drivers/gpu/drm/virtio/virtgpu_gem.o
CC arch/x86/kernel/x86_init.o
AR fs/unicode/built-in.a
AR drivers/gpu/drm/panel/built-in.a
CC net/mac80211/ht.o
AR drivers/gpu/drm/bridge/analogix/built-in.a
CC mm/debug.o
AR drivers/gpu/drm/bridge/cadence/built-in.a
AR drivers/gpu/drm/bridge/imx/built-in.a
AR drivers/gpu/drm/bridge/synopsys/built-in.a
AR drivers/gpu/drm/bridge/built-in.a
AR drivers/pci/built-in.a
CC fs/ext4/ioctl.o
CC net/ethtool/phy.o
CC fs/lockd/clntxdr.o
CC net/sunrpc/svcauth_unix.o
CC kernel/sysctl.o
CC lib/ratelimit.o
CC drivers/gpu/drm/i915/intel_clock_gating.o
CC arch/x86/kernel/i8259.o
AR drivers/gpu/drm/hisilicon/built-in.a
CC net/netfilter/nf_nat_core.o
CC fs/nls/nls_cp437.o
CC net/ipv6/udplite.o
CC net/core/link_watch.o
CC sound/hda/hdac_component.o
CC net/wireless/mlme.o
CC fs/nfs/io.o
CC drivers/dma-buf/dma-buf.o
CC crypto/jitterentropy.o
CC drivers/acpi/acpica/nsalloc.o
CC drivers/gpu/drm/i915/intel_cpu_info.o
AR drivers/cxl/core/built-in.a
AR drivers/cxl/built-in.a
CC net/ipv6/raw.o
CC sound/hda/hdac_i915.o
AR drivers/gpu/drm/mxsfb/built-in.a
CC arch/x86/kernel/irqinit.o
CC drivers/base/class.o
CC fs/nls/nls_ascii.o
CC crypto/jitterentropy-kcapi.o
CC net/core/filter.o
CC net/sunrpc/addr.o
CC kernel/time/tick-broadcast.o
CC mm/gup.o
CC drivers/gpu/drm/virtio/virtgpu_vram.o
CC fs/nfs/direct.o
CC net/ipv4/tcp_output.o
CC drivers/acpi/acpica/nsarguments.o
CC net/ethtool/tsconfig.o
CC fs/nls/nls_iso8859-1.o
CC drivers/macintosh/mac_hid.o
AR drivers/gpu/drm/sysfb/built-in.a
CC drivers/gpu/drm/i915/intel_device_info.o
CC net/ipv6/icmp.o
CC crypto/ghash-generic.o
CC drivers/base/platform.o
CC sound/hda/intel-dsp-config.o
CC sound/hda/intel-nhlt.o
CC drivers/acpi/acpica/nsconvert.o
CC fs/lockd/host.o
CC fs/nls/nls_utf8.o
CC net/sunrpc/rpcb_clnt.o
CC crypto/hash_info.o
CC fs/nfs/pagelist.o
CC arch/x86/kernel/jump_label.o
CC kernel/time/tick-broadcast-hrtimer.o
CC drivers/acpi/scan.o
CC drivers/gpu/drm/i915/intel_memory_region.o
CC fs/nfs/read.o
CC net/wireless/ibss.o
CC drivers/acpi/mipi-disco-img.o
CC kernel/capability.o
CC drivers/dma-buf/dma-fence.o
CC net/sunrpc/timer.o
CC kernel/time/tick-oneshot.o
CC drivers/gpu/drm/virtio/virtgpu_display.o
AR drivers/macintosh/built-in.a
CC fs/autofs/init.o
CC fs/9p/vfs_super.o
CC crypto/rsapubkey.asn1.o
CC crypto/rsaprivkey.asn1.o
AR crypto/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_vq.o
CC kernel/trace/trace_export.o
CC drivers/acpi/acpica/nsdump.o
AR fs/nls/built-in.a
CC kernel/trace/trace_event_perf.o
CC net/ipv6/mcast.o
CC lib/rbtree.o
CC arch/x86/kernel/irq_work.o
AR drivers/gpu/drm/tiny/built-in.a
CC net/ipv4/tcp_timer.o
CC drivers/acpi/acpica/nseval.o
CC net/core/sock_diag.o
CC net/netfilter/nf_nat_proto.o
CC kernel/time/tick-sched.o
CC sound/hda/intel-sdw-acpi.o
CC fs/9p/vfs_inode.o
CC drivers/gpu/drm/virtio/virtgpu_fence.o
AR net/ethtool/built-in.a
CC drivers/acpi/resource.o
CC drivers/dma-buf/dma-fence-array.o
CC fs/lockd/svc.o
CC fs/ext4/mballoc.o
AR drivers/gpu/drm/xlnx/built-in.a
CC net/sunrpc/xdr.o
CC fs/nfs/symlink.o
CC net/core/dev_ioctl.o
CC drivers/base/cpu.o
CC net/mac80211/agg-tx.o
CC fs/autofs/inode.o
CC kernel/time/timer_migration.o
CC net/ipv4/tcp_ipv4.o
CC drivers/acpi/acpica/nsinit.o
CC fs/9p/vfs_inode_dotl.o
CC mm/mmap_lock.o
CC fs/nfs/unlink.o
CC net/ipv6/reassembly.o
CC arch/x86/kernel/probe_roms.o
CC fs/nfs/write.o
CC lib/seq_buf.o
CC drivers/gpu/drm/i915/intel_pcode.o
AR fs/hostfs/built-in.a
CC drivers/dma-buf/dma-fence-chain.o
AR sound/hda/built-in.a
AR sound/built-in.a
CC drivers/acpi/acpi_processor.o
AR drivers/gpu/drm/gud/built-in.a
CC kernel/trace/trace_events_filter.o
CC net/mac80211/agg-rx.o
AR drivers/scsi/pcmcia/built-in.a
CC drivers/scsi/scsi.o
CC net/core/tso.o
CC drivers/acpi/acpica/nsload.o
CC drivers/base/firmware.o
CC fs/autofs/root.o
CC kernel/time/vsyscall.o
CC net/ipv4/tcp_minisocks.o
CC fs/lockd/svclock.o
CC kernel/trace/trace_events_trigger.o
CC drivers/gpu/drm/virtio/virtgpu_object.o
CC fs/9p/vfs_addr.o
CC kernel/ptrace.o
AR drivers/gpu/drm/sitronix/built-in.a
CC drivers/dma-buf/dma-fence-unwrap.o
CC drivers/dma-buf/dma-resv.o
CC lib/siphash.o
CC net/netfilter/nf_nat_helper.o
CC drivers/acpi/acpica/nsnames.o
CC mm/highmem.o
CC drivers/base/init.o
CC fs/debugfs/inode.o
CC arch/x86/kernel/sys_ia32.o
CC net/netfilter/nf_nat_masquerade.o
CC drivers/gpu/drm/virtio/virtgpu_debugfs.o
CC drivers/acpi/processor_core.o
CC drivers/dma-buf/sync_file.o
AR drivers/gpu/drm/solomon/built-in.a
CC drivers/acpi/acpica/nsobject.o
CC net/ipv4/tcp_cong.o
CC [M] drivers/gpu/drm/scheduler/sched_main.o
CC drivers/gpu/drm/i915/intel_region_ttm.o
CC net/sunrpc/sunrpc_syms.o
CC kernel/trace/trace_eprobe.o
CC drivers/gpu/drm/virtio/virtgpu_plane.o
CC fs/autofs/symlink.o
AR drivers/nvme/common/built-in.a
AR drivers/nvme/host/built-in.a
CC drivers/scsi/hosts.o
CC lib/string.o
AR drivers/nvme/target/built-in.a
CC kernel/user.o
AR drivers/nvme/built-in.a
CC drivers/base/map.o
HOSTCC drivers/gpu/drm/xe/xe_gen_wa_oob
CC net/sunrpc/cache.o
CC drivers/acpi/acpica/nsparse.o
CC fs/9p/vfs_file.o
CC fs/ext4/migrate.o
CC net/wireless/sme.o
CC drivers/base/devres.o
GEN xe_wa_oob.c xe_wa_oob.h
CC [M] drivers/gpu/drm/xe/xe_bb.o
CC drivers/gpu/drm/drm_atomic.o
CC drivers/gpu/drm/drm_atomic_uapi.o
CC lib/timerqueue.o
CC net/netfilter/nf_nat_ftp.o
CC drivers/ata/libata-core.o
CC mm/memory.o
CC net/mac80211/vht.o
CC kernel/time/timekeeping_debug.o
CC drivers/acpi/acpica/nspredef.o
AR drivers/dma-buf/built-in.a
CC fs/debugfs/file.o
CC drivers/base/attribute_container.o
CC arch/x86/kernel/ksysfs.o
CC lib/union_find.o
CC kernel/trace/trace_kprobe.o
CC lib/vsprintf.o
CC drivers/base/transport_class.o
CC fs/nfs/namespace.o
CC fs/lockd/svcshare.o
CC mm/mincore.o
CC net/core/sock_reuseport.o
CC drivers/acpi/processor_pdc.o
CC kernel/time/namespace.o
CC drivers/gpu/drm/drm_auth.o
CC fs/autofs/waitq.o
CC net/ipv6/tcp_ipv6.o
CC drivers/gpu/drm/virtio/virtgpu_ioctl.o
CC drivers/gpu/drm/i915/intel_runtime_pm.o
CC drivers/acpi/acpica/nsprepkg.o
CC fs/tracefs/inode.o
CC drivers/scsi/scsi_ioctl.o
CC lib/win_minmax.o
CC net/core/fib_notifier.o
CC mm/mlock.o
CC fs/9p/vfs_dir.o
CC fs/9p/vfs_dentry.o
AR drivers/net/phy/mediatek/built-in.a
AR drivers/net/phy/qcom/built-in.a
AR drivers/net/pse-pd/built-in.a
CC drivers/net/phy/realtek/realtek_main.o
CC fs/nfs/mount_clnt.o
CC drivers/base/topology.o
CC drivers/acpi/acpica/nsrepair.o
CC fs/nfs/nfstrace.o
CC [M] drivers/gpu/drm/xe/xe_bo.o
CC arch/x86/kernel/bootflag.o
CC net/core/xdp.o
CC drivers/scsi/scsicam.o
CC [M] drivers/gpu/drm/scheduler/sched_fence.o
CC mm/mmap.o
CC kernel/signal.o
CC fs/autofs/expire.o
CC drivers/gpu/drm/virtio/virtgpu_prime.o
CC drivers/base/container.o
CC drivers/gpu/drm/i915/intel_step.o
CC [M] fs/efivarfs/inode.o
CC net/netfilter/nf_nat_irc.o
AR kernel/time/built-in.a
CC mm/mmu_gather.o
CC drivers/acpi/acpica/nsrepair2.o
CC drivers/net/phy/mdio-boardinfo.o
CC fs/tracefs/event_inode.o
CC drivers/base/property.o
CC net/wireless/chan.o
CC drivers/acpi/ec.o
CC fs/lockd/svcproc.o
AR fs/debugfs/built-in.a
CC kernel/sys.o
CC net/ipv4/tcp_metrics.o
CC drivers/firewire/init_ohci1394_dma.o
CC [M] drivers/gpu/drm/scheduler/sched_entity.o
CC fs/9p/v9fs.o
CC kernel/umh.o
CC net/core/flow_offload.o
CC arch/x86/kernel/e820.o
CC drivers/ata/libata-scsi.o
CC drivers/net/phy/stubs.o
CC net/core/gro.o
CC net/ipv4/tcp_fastopen.o
CC drivers/scsi/scsi_error.o
CC net/mac80211/he.o
CC drivers/acpi/acpica/nssearch.o
CC net/ipv4/tcp_rate.o
CC [M] fs/efivarfs/file.o
CC net/ipv4/tcp_recovery.o
CC drivers/gpu/drm/virtio/virtgpu_trace_points.o
CC fs/autofs/dev-ioctl.o
CC net/mac80211/s1g.o
CC fs/ext4/mmp.o
CC drivers/scsi/scsi_lib.o
AR drivers/net/phy/realtek/built-in.a
CC net/sunrpc/rpc_pipe.o
CC drivers/gpu/drm/i915/intel_uncore.o
CC drivers/cdrom/cdrom.o
AR drivers/firewire/built-in.a
CC drivers/acpi/acpica/nsutils.o
CC net/ipv6/ping.o
LD [M] drivers/gpu/drm/scheduler/gpu-sched.o
CC drivers/ata/libata-eh.o
CC kernel/trace/error_report-traces.o
CC drivers/ata/libata-transport.o
CC fs/9p/fid.o
AR fs/tracefs/built-in.a
CC fs/9p/xattr.o
CC net/netfilter/nf_nat_sip.o
CC drivers/acpi/acpica/nswalk.o
CC drivers/net/phy/mdio_devres.o
CC [M] fs/efivarfs/super.o
CC drivers/base/cacheinfo.o
CC [M] drivers/gpu/drm/xe/xe_bo_evict.o
CC drivers/acpi/dock.o
CC mm/mprotect.o
CC net/ipv4/tcp_ulp.o
CC fs/lockd/svcsubs.o
CC fs/lockd/mon.o
CC arch/x86/kernel/pci-dma.o
CC fs/open.o
CC drivers/gpu/drm/virtio/virtgpu_submit.o
CC drivers/gpu/drm/drm_blend.o
CC fs/nfs/export.o
CC drivers/acpi/acpica/nsxfeval.o
AR fs/autofs/built-in.a
CC drivers/net/phy/phy.o
CC fs/ext4/move_extent.o
CC kernel/trace/power-traces.o
CC net/mac80211/ibss.o
AR fs/9p/built-in.a
CC net/ipv4/tcp_offload.o
CC net/wireless/ethtool.o
CC drivers/acpi/acpica/nsxfname.o
CC drivers/acpi/pci_root.o
CC lib/xarray.o
CC drivers/net/mdio/acpi_mdio.o
CC drivers/acpi/acpica/nsxfobj.o
CC net/sunrpc/sysfs.o
CC fs/nfs/sysfs.o
CC drivers/gpu/drm/drm_bridge.o
CC net/ipv6/exthdrs.o
CC drivers/scsi/constants.o
CC drivers/base/swnode.o
AR drivers/net/pcs/built-in.a
CC fs/lockd/trace.o
CC fs/lockd/xdr.o
CC net/mac80211/iface.o
CC net/wireless/mesh.o
CC [M] fs/efivarfs/vars.o
CC arch/x86/kernel/quirks.o
CC [M] drivers/gpu/drm/xe/xe_devcoredump.o
CC fs/lockd/netlink.o
CC net/netfilter/x_tables.o
CC drivers/acpi/acpica/psargs.o
AR drivers/gpu/drm/virtio/built-in.a
AR drivers/net/ethernet/3com/built-in.a
CC drivers/acpi/acpica/psloop.o
CC drivers/net/ethernet/8390/ne2k-pci.o
CC drivers/acpi/acpica/psobject.o
CC fs/nfs/fs_context.o
CC fs/nfs/nfsroot.o
CC drivers/net/ethernet/8390/8390.o
CC fs/lockd/clnt4xdr.o
CC mm/mremap.o
CC drivers/net/mdio/fwnode_mdio.o
CC net/core/netdev-genl.o
CC lib/lockref.o
CC drivers/net/phy/phy-c45.o
AR drivers/cdrom/built-in.a
CC fs/ext4/namei.o
CC drivers/gpu/drm/i915/intel_uncore_trace.o
CC drivers/scsi/scsi_lib_dma.o
CC kernel/workqueue.o
CC fs/nfs/sysctl.o
AR drivers/net/wireless/admtek/built-in.a
AR drivers/net/wireless/ath/built-in.a
CC drivers/acpi/pci_link.o
AR drivers/net/wireless/atmel/built-in.a
AR drivers/net/wireless/broadcom/built-in.a
CC [M] drivers/gpu/drm/xe/xe_device.o
AR drivers/net/wireless/intel/built-in.a
CC net/netfilter/xt_tcpudp.o
AR drivers/net/wireless/intersil/built-in.a
AR drivers/net/wireless/marvell/built-in.a
CC drivers/acpi/acpica/psopcode.o
AR drivers/net/wireless/mediatek/built-in.a
AR drivers/net/wireless/microchip/built-in.a
CC net/wireless/ap.o
AR drivers/net/wireless/purelifi/built-in.a
LD [M] fs/efivarfs/efivarfs.o
CC net/ipv4/tcp_plb.o
AR drivers/net/wireless/quantenna/built-in.a
AR drivers/net/wireless/ralink/built-in.a
CC drivers/base/faux.o
AR drivers/net/wireless/realtek/built-in.a
AR drivers/net/wireless/rsi/built-in.a
CC lib/bcd.o
CC arch/x86/kernel/kdebugfs.o
AR drivers/net/wireless/silabs/built-in.a
AR drivers/net/ethernet/adaptec/built-in.a
AR drivers/net/ethernet/agere/built-in.a
AR drivers/net/wireless/st/built-in.a
CC lib/sort.o
CC lib/parser.o
AR drivers/net/wireless/ti/built-in.a
CC lib/debug_locks.o
CC fs/ext4/page-io.o
AR drivers/net/wireless/zydas/built-in.a
AR drivers/net/wireless/virtual/built-in.a
AR drivers/net/wireless/built-in.a
CC drivers/acpi/acpica/psopinfo.o
CC fs/read_write.o
CC net/mac80211/link.o
CC drivers/scsi/scsi_scan.o
CC net/wireless/trace.o
CC arch/x86/kernel/alternative.o
CC net/core/netdev-genl-gen.o
CC net/core/gso.o
CC net/sunrpc/svc_xprt.o
CC net/ipv4/datagram.o
CC net/ipv6/datagram.o
AR drivers/auxdisplay/built-in.a
CC drivers/gpu/drm/i915/intel_wakeref.o
CC drivers/pcmcia/cs.o
CC mm/msync.o
AR drivers/net/ethernet/alacritech/built-in.a
CC kernel/pid.o
CC drivers/acpi/acpica/psparse.o
CC drivers/base/auxiliary.o
CC fs/lockd/xdr4.o
CC net/mac80211/rate.o
CC lib/random32.o
AR drivers/net/mdio/built-in.a
CC fs/file_table.o
CC kernel/trace/rpm-traces.o
CC drivers/gpu/drm/i915/vlv_iosf_sb.o
CC net/wireless/ocb.o
CC drivers/gpu/drm/i915/vlv_suspend.o
CC drivers/ata/libata-trace.o
CC lib/bust_spinlocks.o
CC mm/page_vma_mapped.o
CC net/netfilter/xt_CONNSECMARK.o
CC net/sunrpc/xprtmultipath.o
AR drivers/net/ethernet/8390/built-in.a
AR drivers/net/ethernet/alteon/built-in.a
AR drivers/net/ethernet/amazon/built-in.a
CC drivers/gpu/drm/i915/soc/intel_dram.o
AR drivers/net/ethernet/amd/built-in.a
CC net/ipv4/raw.o
AR drivers/net/ethernet/aquantia/built-in.a
CC fs/lockd/svc4proc.o
AR drivers/net/ethernet/arc/built-in.a
AR drivers/net/ethernet/asix/built-in.a
CC net/ipv6/ip6_flowlabel.o
AR drivers/net/ethernet/atheros/built-in.a
CC drivers/acpi/acpica/psscope.o
AR drivers/net/ethernet/cadence/built-in.a
CC drivers/net/ethernet/broadcom/bnx2.o
CC drivers/base/devtmpfs.o
CC drivers/net/phy/phy-core.o
CC drivers/ata/libata-sata.o
AR drivers/net/usb/built-in.a
CC net/netfilter/xt_NFLOG.o
CC lib/kasprintf.o
CC drivers/acpi/pci_irq.o
CC [M] drivers/gpu/drm/xe/xe_device_sysfs.o
CC drivers/gpu/drm/i915/soc/intel_gmch.o
CC fs/lockd/procfs.o
CC kernel/trace/trace_dynevent.o
CC drivers/base/module.o
CC mm/pagewalk.o
CC drivers/pcmcia/socket_sysfs.o
CC drivers/acpi/acpica/pstree.o
GEN drivers/scsi/scsi_devinfo_tbl.c
CC kernel/task_work.o
CC drivers/scsi/scsi_devinfo.o
CC net/core/net-sysfs.o
CC net/sunrpc/stats.o
CC net/ipv6/inet6_connection_sock.o
CC kernel/extable.o
CC fs/nfs/nfs3super.o
CC [M] drivers/gpu/drm/xe/xe_dma_buf.o
CC lib/bitmap.o
CC lib/scatterlist.o
CC arch/x86/kernel/i8253.o
CC drivers/ata/libata-sff.o
CC net/core/hotdata.o
CC drivers/base/auxiliary_sysfs.o
CC drivers/gpu/drm/drm_cache.o
CC drivers/acpi/acpica/psutils.o
AR drivers/net/ethernet/brocade/built-in.a
CC drivers/acpi/acpi_apd.o
CC drivers/net/mii.o
CC fs/ext4/readpage.o
CC net/ipv6/udp_offload.o
CC net/sunrpc/sysctl.o
CC drivers/scsi/scsi_sysctl.o
CC drivers/net/ethernet/broadcom/tg3.o
CC drivers/usb/common/common.o
CC drivers/usb/core/usb.o
CC drivers/usb/common/debug.o
CC net/netfilter/xt_SECMARK.o
AR drivers/usb/phy/built-in.a
CC drivers/pcmcia/cardbus.o
CC mm/pgtable-generic.o
CC fs/super.o
AR fs/lockd/built-in.a
CC arch/x86/kernel/hw_breakpoint.o
CC drivers/gpu/drm/drm_color_mgmt.o
CC lib/list_sort.o
AR drivers/net/ethernet/cavium/common/built-in.a
AR drivers/net/ethernet/cavium/thunder/built-in.a
AR drivers/net/ethernet/cavium/liquidio/built-in.a
AR drivers/net/ethernet/cavium/octeon/built-in.a
CC drivers/net/phy/phy_device.o
CC lib/uuid.o
AR drivers/net/ethernet/cavium/built-in.a
CC drivers/base/devcoredump.o
CC lib/iov_iter.o
CC kernel/trace/trace_probe.o
CC drivers/acpi/acpica/pswalk.o
CC net/netfilter/xt_TCPMSS.o
CC net/core/netdev_rx_queue.o
CC net/netfilter/xt_conntrack.o
CC drivers/gpu/drm/i915/soc/intel_rom.o
CC drivers/base/platform-msi.o
CC drivers/usb/mon/mon_main.o
CC drivers/base/physical_location.o
CC kernel/params.o
AR drivers/net/ethernet/chelsio/built-in.a
CC net/netfilter/xt_policy.o
CC kernel/trace/trace_uprobe.o
CC drivers/acpi/acpi_platform.o
CC [M] drivers/gpu/drm/xe/xe_drm_client.o
CC net/ipv4/udp.o
CC fs/nfs/nfs3client.o
CC drivers/acpi/acpica/psxface.o
CC net/core/net-procfs.o
CC drivers/scsi/scsi_proc.o
CC drivers/net/phy/linkmode.o
CC drivers/pcmcia/ds.o
CC drivers/gpu/drm/i915/i915_memcpy.o
AR drivers/usb/common/built-in.a
CC drivers/input/serio/serio.o
CC drivers/usb/mon/mon_stat.o
CC drivers/input/serio/i8042.o
CC net/mac80211/michael.o
CC net/ipv4/udplite.o
CC drivers/net/phy/phy_link_topology.o
CC arch/x86/kernel/tsc.o
CC mm/rmap.o
CC net/ipv6/seg6.o
CC drivers/base/trace.o
CC fs/ext4/resize.o
CC mm/vmalloc.o
CC kernel/kthread.o
CC drivers/usb/mon/mon_text.o
CC drivers/acpi/acpica/rsaddr.o
CC drivers/acpi/acpica/rscalc.o
CC drivers/acpi/acpica/rscreate.o
CC lib/clz_ctz.o
CC drivers/usb/core/hub.o
CC drivers/pcmcia/pcmcia_resource.o
CC drivers/ata/libata-pmp.o
CC net/mac80211/tkip.o
AR drivers/net/ethernet/cisco/built-in.a
CC drivers/input/keyboard/atkbd.o
CC fs/char_dev.o
AR net/sunrpc/built-in.a
CC kernel/trace/rethook.o
CC drivers/gpu/drm/i915/i915_mm.o
CC net/ipv4/udp_offload.o
CC fs/ext4/super.o
CC net/wireless/pmsr.o
CC drivers/usb/core/hcd.o
CC [M] drivers/gpu/drm/xe/xe_eu_stall.o
CC drivers/net/phy/phy_package.o
CC drivers/scsi/scsi_debugfs.o
CC drivers/acpi/acpica/rsdumpinfo.o
CC arch/x86/kernel/tsc_msr.o
CC drivers/scsi/scsi_trace.o
CC drivers/scsi/scsi_logging.o
CC kernel/sys_ni.o
CC [M] drivers/gpu/drm/xe/xe_exec.o
CC fs/nfs/nfs3proc.o
CC net/netfilter/xt_state.o
AR drivers/net/ethernet/cortina/built-in.a
AR drivers/base/built-in.a
CC drivers/net/loopback.o
CC drivers/usb/mon/mon_bin.o
CC drivers/acpi/acpica/rsinfo.o
CC net/core/netpoll.o
CC net/core/fib_rules.o
CC drivers/gpu/drm/drm_connector.o
CC drivers/gpu/drm/i915/i915_sw_fence.o
CC drivers/input/serio/serport.o
CC drivers/input/serio/libps2.o
CC drivers/gpu/drm/drm_crtc.o
CC fs/stat.o
CC fs/nfs/nfs3xdr.o
CC [M] drivers/gpu/drm/xe/xe_exec_queue.o
CC arch/x86/kernel/io_delay.o
CC net/ipv6/fib6_notifier.o
CC drivers/input/mouse/psmouse-base.o
CC drivers/scsi/scsi_pm.o
CC [M] drivers/gpu/drm/xe/xe_execlist.o
CC drivers/acpi/acpica/rsio.o
CC drivers/input/mouse/synaptics.o
CC drivers/ata/libata-acpi.o
CC drivers/acpi/acpi_pnp.o
AR kernel/trace/built-in.a
CC drivers/pcmcia/cistpl.o
CC fs/nfs/nfs3acl.o
AR drivers/input/keyboard/built-in.a
AR drivers/net/ethernet/dec/tulip/built-in.a
AR drivers/net/ethernet/dec/built-in.a
CC drivers/input/mouse/focaltech.o
CC drivers/usb/host/pci-quirks.o
CC drivers/ata/libata-pata-timings.o
CC mm/vma.o
CC arch/x86/kernel/rtc.o
CC lib/bsearch.o
CC drivers/net/phy/phy_caps.o
CC drivers/gpu/drm/i915/i915_sw_fence_work.o
CC kernel/nsproxy.o
CC drivers/acpi/acpica/rsirq.o
CC fs/ext4/symlink.o
CC net/core/net-traces.o
AR drivers/input/serio/built-in.a
AR drivers/input/joystick/built-in.a
AR drivers/input/tablet/built-in.a
CC fs/ext4/sysfs.o
AR drivers/input/touchscreen/built-in.a
CC drivers/input/mouse/alps.o
CC [M] net/netfilter/nf_log_syslog.o
CC drivers/usb/host/ehci-hcd.o
AR drivers/usb/mon/built-in.a
CC drivers/acpi/acpica/rslist.o
CC drivers/rtc/lib.o
CC drivers/gpu/drm/i915/i915_syncmap.o
CC drivers/scsi/scsi_bsg.o
CC drivers/i2c/algos/i2c-algo-bit.o
AR drivers/i3c/built-in.a
CC net/mac80211/aes_cmac.o
CC drivers/acpi/power.o
GEN net/wireless/shipped-certs.c
CC mm/process_vm_access.o
CC drivers/input/mouse/byd.o
CC arch/x86/kernel/resource.o
CC net/ipv6/rpl.o
CC drivers/usb/host/ehci-pci.o
CC lib/find_bit.o
AR drivers/media/i2c/built-in.a
AR drivers/media/tuners/built-in.a
AR drivers/media/rc/keymaps/built-in.a
AR drivers/media/rc/built-in.a
AR drivers/media/common/b2c2/built-in.a
AR drivers/media/common/saa7146/built-in.a
CC drivers/i2c/busses/i2c-i801.o
AR drivers/i2c/muxes/built-in.a
AR drivers/media/common/siano/built-in.a
CC drivers/pcmcia/pcmcia_cis.o
CC net/ipv6/ioam6.o
AR drivers/media/common/v4l2-tpg/built-in.a
CC net/ipv6/sysctl_net_ipv6.o
AR drivers/media/common/videobuf2/built-in.a
CC drivers/usb/host/ohci-hcd.o
AR drivers/media/common/built-in.a
CC drivers/net/phy/mdio_bus.o
CC drivers/ata/ahci.o
CC drivers/acpi/acpica/rsmemory.o
AR drivers/media/platform/allegro-dvt/built-in.a
AR drivers/input/misc/built-in.a
AR drivers/media/platform/amlogic/meson-ge2d/built-in.a
AR drivers/media/platform/amlogic/built-in.a
AS arch/x86/kernel/irqflags.o
AR drivers/media/pci/ttpci/built-in.a
AR drivers/media/usb/b2c2/built-in.a
AR drivers/media/platform/amphion/built-in.a
AR drivers/media/pci/b2c2/built-in.a
AR drivers/media/usb/dvb-usb/built-in.a
AR drivers/media/platform/aspeed/built-in.a
CC arch/x86/kernel/static_call.o
AR drivers/media/mmc/siano/built-in.a
AR drivers/media/pci/pluto2/built-in.a
AR drivers/media/usb/dvb-usb-v2/built-in.a
AR drivers/media/mmc/built-in.a
CC drivers/gpu/drm/i915/i915_user_extensions.o
AR drivers/media/platform/atmel/built-in.a
AR drivers/media/pci/dm1105/built-in.a
AR drivers/media/usb/s2255/built-in.a
AR drivers/media/platform/broadcom/built-in.a
AR drivers/media/usb/siano/built-in.a
AR drivers/media/pci/pt1/built-in.a
AR drivers/media/usb/ttusb-budget/built-in.a
AR drivers/media/pci/pt3/built-in.a
CC net/mac80211/aes_gmac.o
AR drivers/media/platform/cadence/built-in.a
CC drivers/net/netconsole.o
AR drivers/media/usb/ttusb-dec/built-in.a
AR drivers/media/pci/mantis/built-in.a
AR drivers/media/platform/chips-media/coda/built-in.a
AR drivers/media/usb/built-in.a
AR drivers/media/pci/ngene/built-in.a
CC lib/llist.o
AR drivers/media/platform/chips-media/wave5/built-in.a
AR drivers/media/pci/ddbridge/built-in.a
AR drivers/media/platform/chips-media/built-in.a
AR drivers/media/platform/imagination/built-in.a
CC mm/page_alloc.o
AR drivers/media/pci/saa7146/built-in.a
CC kernel/notifier.o
AR drivers/media/platform/intel/built-in.a
AR drivers/media/pci/smipcie/built-in.a
AR drivers/media/platform/marvell/built-in.a
AR drivers/media/pci/netup_unidvb/built-in.a
CC drivers/gpu/drm/i915/i915_debugfs.o
CC drivers/rtc/class.o
AR drivers/media/platform/mediatek/jpeg/built-in.a
AR drivers/media/pci/intel/ipu3/built-in.a
AR drivers/media/platform/microchip/built-in.a
AR drivers/media/platform/mediatek/mdp/built-in.a
CC net/mac80211/fils_aead.o
AR drivers/media/pci/intel/ivsc/built-in.a
AR drivers/media/pci/intel/built-in.a
CC [M] drivers/gpu/drm/xe/xe_force_wake.o
CC drivers/pcmcia/rsrc_mgr.o
AR drivers/media/platform/mediatek/vcodec/common/built-in.a
AR drivers/media/pci/built-in.a
CC lib/lwq.o
AR drivers/media/platform/mediatek/vcodec/encoder/built-in.a
CC drivers/net/virtio_net.o
AR drivers/media/platform/mediatek/vcodec/decoder/built-in.a
CC drivers/ata/libahci.o
AR drivers/media/platform/mediatek/vpu/built-in.a
AR drivers/media/platform/mediatek/vcodec/built-in.a
CC drivers/usb/core/urb.o
CC drivers/acpi/event.o
CC drivers/scsi/scsi_common.o
AR drivers/media/platform/mediatek/mdp3/built-in.a
AR drivers/media/platform/mediatek/built-in.a
AR drivers/media/platform/nuvoton/built-in.a
CC drivers/acpi/acpica/rsmisc.o
CC drivers/acpi/acpica/rsserial.o
AR drivers/media/platform/nvidia/tegra-vde/built-in.a
CC [M] net/netfilter/xt_mark.o
AR drivers/media/platform/nvidia/built-in.a
AR drivers/media/platform/nxp/dw100/built-in.a
AR drivers/media/platform/nxp/imx-jpeg/built-in.a
AR drivers/media/platform/nxp/imx8-isi/built-in.a
AR drivers/media/platform/nxp/built-in.a
AR drivers/media/platform/qcom/camss/built-in.a
CC lib/memweight.o
AR drivers/media/platform/qcom/iris/built-in.a
CC lib/kfifo.o
AR drivers/media/platform/qcom/venus/built-in.a
AR drivers/media/platform/qcom/built-in.a
CC lib/percpu-refcount.o
CC drivers/input/mouse/logips2pp.o
AR drivers/media/platform/raspberrypi/pisp_be/built-in.a
CC arch/x86/kernel/process.o
AR drivers/media/platform/raspberrypi/rp1-cfe/built-in.a
CC net/ipv4/arp.o
AR drivers/media/platform/raspberrypi/built-in.a
CC fs/ext4/xattr.o
AR drivers/media/platform/renesas/rcar-vin/built-in.a
CC drivers/net/phy/mdio_device.o
AR drivers/i2c/algos/built-in.a
CC drivers/rtc/interface.o
AR drivers/media/platform/renesas/rzg2l-cru/built-in.a
AR drivers/media/firewire/built-in.a
AR drivers/media/platform/renesas/vsp1/built-in.a
CC drivers/rtc/nvmem.o
AR drivers/media/platform/renesas/built-in.a
AR drivers/media/platform/rockchip/rga/built-in.a
AR drivers/media/platform/rockchip/rkisp1/built-in.a
AR drivers/media/platform/rockchip/built-in.a
CC [M] drivers/gpu/drm/xe/xe_ggtt.o
AR drivers/media/platform/samsung/exynos-gsc/built-in.a
AR drivers/media/platform/samsung/exynos4-is/built-in.a
AR drivers/media/platform/samsung/s3c-camif/built-in.a
AR drivers/media/platform/samsung/s5p-g2d/built-in.a
CC lib/rhashtable.o
CC lib/base64.o
CC fs/nfs/nfs4proc.o
AR drivers/media/platform/samsung/s5p-jpeg/built-in.a
AR drivers/media/platform/samsung/s5p-mfc/built-in.a
AR drivers/media/platform/samsung/built-in.a
CC drivers/scsi/scsi_transport_spi.o
AR drivers/pps/clients/built-in.a
CC drivers/pps/pps.o
AR drivers/media/platform/st/sti/bdisp/built-in.a
CC drivers/ptp/ptp_clock.o
AR drivers/media/platform/st/sti/c8sectpfe/built-in.a
AR drivers/media/platform/st/sti/delta/built-in.a
AR drivers/media/platform/st/sti/hva/built-in.a
CC fs/exec.o
AR drivers/media/platform/st/stm32/built-in.a
AR drivers/media/platform/st/built-in.a
CC drivers/hwmon/hwmon.o
CC drivers/power/supply/power_supply_core.o
AR drivers/media/platform/sunxi/sun4i-csi/built-in.a
CC drivers/acpi/acpica/rsutils.o
AR drivers/media/platform/sunxi/sun6i-csi/built-in.a
AR drivers/media/platform/sunxi/sun6i-mipi-csi2/built-in.a
AR drivers/media/spi/built-in.a
CC drivers/usb/host/ohci-pci.o
AR drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/built-in.a
CC drivers/pcmcia/rsrc_nonstatic.o
AR drivers/media/platform/sunxi/sun8i-di/built-in.a
AR drivers/media/platform/sunxi/sun8i-rotate/built-in.a
AR drivers/media/platform/sunxi/built-in.a
CC drivers/acpi/evged.o
AR drivers/media/platform/synopsys/hdmirx/built-in.a
AR drivers/media/platform/synopsys/built-in.a
CC drivers/pps/kapi.o
AR drivers/media/platform/ti/am437x/built-in.a
AR drivers/media/platform/ti/cal/built-in.a
AR drivers/media/platform/ti/vpe/built-in.a
AR drivers/media/platform/ti/davinci/built-in.a
AR drivers/media/platform/ti/j721e-csi2rx/built-in.a
AR drivers/media/platform/ti/omap/built-in.a
AR drivers/i2c/busses/built-in.a
CC drivers/i2c/i2c-boardinfo.o
AR drivers/media/platform/ti/omap3isp/built-in.a
AR drivers/media/platform/ti/built-in.a
CC kernel/ksysfs.o
AR drivers/media/test-drivers/built-in.a
AR drivers/media/platform/verisilicon/built-in.a
CC drivers/gpu/drm/i915/i915_debugfs_params.o
CC drivers/input/mouse/lifebook.o
AR drivers/media/platform/via/built-in.a
CC net/core/selftests.o
AR drivers/media/platform/xilinx/built-in.a
AR drivers/media/platform/built-in.a
AR drivers/net/ethernet/dlink/built-in.a
CC fs/ext4/xattr_hurd.o
CC fs/ext4/xattr_trusted.o
CC drivers/acpi/sysfs.o
AR drivers/thermal/broadcom/built-in.a
CC drivers/ata/ata_piix.o
AR drivers/thermal/renesas/built-in.a
AR drivers/media/built-in.a
CC net/ipv4/icmp.o
AR drivers/thermal/samsung/built-in.a
CC drivers/usb/core/message.o
CC drivers/usb/core/driver.o
CC drivers/thermal/intel/intel_tcc.o
CC [M] net/netfilter/xt_nat.o
AR drivers/thermal/st/built-in.a
CC drivers/gpu/drm/i915/i915_pmu.o
CC net/core/ptp_classifier.o
CC net/core/netprio_cgroup.o
CC drivers/acpi/acpica/rsxface.o
CC net/mac80211/cfg.o
CC drivers/input/input.o
CC drivers/thermal/intel/therm_throt.o
CC drivers/net/phy/swphy.o
CC net/core/netclassid_cgroup.o
CC net/core/dst_cache.o
CC drivers/pps/sysfs.o
CC net/core/gro_cells.o
CC net/ipv6/xfrm6_policy.o
CC kernel/cred.o
CC [M] drivers/gpu/drm/xe/xe_gpu_scheduler.o
CC drivers/power/supply/power_supply_sysfs.o
CC drivers/input/mouse/trackpoint.o
CC drivers/i2c/i2c-core-base.o
CC drivers/acpi/acpica/tbdata.o
CC drivers/ptp/ptp_chardev.o
CC lib/once.o
CC lib/refcount.o
CC drivers/power/supply/power_supply_leds.o
CC drivers/pcmcia/yenta_socket.o
AR drivers/watchdog/built-in.a
CC drivers/net/net_failover.o
CC arch/x86/kernel/ptrace.o
CC drivers/ptp/ptp_sysfs.o
AR drivers/pps/built-in.a
CC fs/pipe.o
CC drivers/rtc/dev.o
CC drivers/rtc/proc.o
CC [M] drivers/gpu/drm/xe/xe_gsc.o
CC drivers/usb/core/config.o
CC drivers/i2c/i2c-core-smbus.o
CC drivers/scsi/virtio_scsi.o
AR drivers/hwmon/built-in.a
CC drivers/acpi/property.o
CC lib/rcuref.o
CC net/core/failover.o
CC drivers/input/input-compat.o
CC drivers/power/supply/power_supply_hwmon.o
CC drivers/acpi/acpica/tbfadt.o
CC drivers/net/phy/fixed_phy.o
CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.o
CC [M] net/netfilter/xt_LOG.o
CC drivers/ata/pata_amd.o
CC drivers/md/md.o
CC lib/usercopy.o
CC net/ipv4/devinet.o
AR drivers/thermal/qcom/built-in.a
AR drivers/net/ethernet/emulex/built-in.a
CC drivers/usb/host/uhci-hcd.o
CC drivers/usb/core/file.o
CC drivers/input/mouse/cypress_ps2.o
CC lib/errseq.o
CC drivers/ptp/ptp_vclock.o
CC drivers/input/input-mt.o
CC drivers/gpu/drm/i915/gt/gen2_engine_cs.o
CC drivers/md/md-bitmap.o
CC net/mac80211/ethtool.o
CC drivers/usb/class/usblp.o
CC drivers/i2c/i2c-core-acpi.o
CC net/wireless/shipped-certs.o
CC [M] net/netfilter/xt_MASQUERADE.o
CC kernel/reboot.o
CC drivers/rtc/sysfs.o
CC lib/bucket_locks.o
AR drivers/net/ethernet/engleder/built-in.a
CC drivers/acpi/acpica/tbfind.o
CC net/ipv6/xfrm6_state.o
CC arch/x86/kernel/tls.o
CC drivers/usb/host/xhci.o
AR drivers/power/supply/built-in.a
AR drivers/power/built-in.a
CC fs/nfs/nfs4xdr.o
CC drivers/i2c/i2c-smbus.o
CC kernel/async.o
AR drivers/thermal/intel/built-in.a
AR drivers/thermal/tegra/built-in.a
AR drivers/thermal/mediatek/built-in.a
CC fs/ext4/xattr_user.o
CC drivers/thermal/thermal_core.o
CC drivers/usb/storage/scsiglue.o
CC [M] net/netfilter/xt_addrtype.o
CC mm/page_frag_cache.o
CC [M] drivers/gpu/drm/xe/xe_gsc_debugfs.o
AR drivers/pcmcia/built-in.a
CC drivers/ata/pata_oldpiix.o
CC drivers/acpi/acpica/tbinstal.o
CC drivers/scsi/sd.o
CC drivers/usb/core/buffer.o
CC drivers/input/mouse/psmouse-smbus.o
CC drivers/gpu/drm/i915/gt/gen6_engine_cs.o
CC mm/init-mm.o
CC drivers/input/input-poller.o
CC drivers/md/md-autodetect.o
CC net/mac80211/rx.o
CC lib/generic-radix-tree.o
CC drivers/ptp/ptp_kvm_x86.o
AR drivers/net/phy/built-in.a
CC drivers/ptp/ptp_kvm_common.o
CC drivers/acpi/debugfs.o
CC drivers/rtc/rtc-mc146818-lib.o
CC drivers/usb/host/xhci-mem.o
AR drivers/usb/class/built-in.a
CC arch/x86/kernel/step.o
CC net/ipv6/xfrm6_input.o
CC drivers/acpi/acpica/tbprint.o
CC drivers/acpi/acpica/tbutils.o
CC drivers/acpi/acpi_lpat.o
CC drivers/scsi/sr.o
AR drivers/net/ethernet/ezchip/built-in.a
CC drivers/ata/pata_sch.o
CC drivers/md/dm.o
AR drivers/i2c/built-in.a
CC mm/memblock.o
CC drivers/gpu/drm/i915/gt/gen6_ppgtt.o
AR net/core/built-in.a
CC fs/nfs/nfs4state.o
CC net/mac80211/spectmgmt.o
CC drivers/usb/host/xhci-ext-caps.o
CC kernel/range.o
CC lib/bitmap-str.o
CC fs/namei.o
AR drivers/net/ethernet/fujitsu/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gsc_proxy.o
CC drivers/rtc/rtc-cmos.o
CC drivers/usb/core/sysfs.o
AR drivers/usb/misc/built-in.a
CC drivers/usb/storage/protocol.o
CC kernel/smpboot.o
CC drivers/gpu/drm/i915/gt/gen7_renderclear.o
CC arch/x86/kernel/i8237.o
CC net/ipv4/af_inet.o
CC arch/x86/kernel/stacktrace.o
CC drivers/md/dm-table.o
CC drivers/acpi/acpica/tbxface.o
AR drivers/input/mouse/built-in.a
CC drivers/input/ff-core.o
CC net/mac80211/tx.o
AR drivers/ptp/built-in.a
CC drivers/md/dm-target.o
CC drivers/ata/pata_mpiix.o
CC kernel/ucount.o
CC fs/fcntl.o
AR drivers/net/ethernet/fungible/built-in.a
CC drivers/usb/core/endpoint.o
CC net/ipv4/igmp.o
CC mm/slub.o
CC drivers/scsi/sr_ioctl.o
CC drivers/thermal/thermal_sysfs.o
AR net/netfilter/built-in.a
CC fs/nfs/nfs4renewd.o
CC drivers/acpi/acpica/tbxfload.o
CC drivers/usb/storage/transport.o
CC lib/string_helpers.o
CC lib/hexdump.o
CC net/ipv6/xfrm6_output.o
CC drivers/input/touchscreen.o
CC drivers/usb/core/devio.o
CC fs/ext4/fast_commit.o
CC kernel/regset.o
CC arch/x86/kernel/reboot.o
CC drivers/usb/early/ehci-dbgp.o
AR drivers/net/ethernet/google/built-in.a
CC mm/madvise.o
CC mm/page_io.o
CC fs/nfs/nfs4super.o
CC drivers/ata/ata_generic.o
CC drivers/cpufreq/cpufreq.o
CC drivers/gpu/drm/drm_displayid.o
CC drivers/cpuidle/governors/menu.o
CC drivers/acpi/acpica/tbxfroot.o
AR drivers/rtc/built-in.a
CC drivers/cpuidle/governors/haltpoll.o
CC mm/swap_state.o
CC [M] drivers/gpu/drm/xe/xe_gsc_submit.o
CC drivers/acpi/acpica/utaddress.o
CC net/mac80211/key.o
CC drivers/gpu/drm/i915/gt/gen8_engine_cs.o
CC fs/nfs/nfs4file.o
CC drivers/thermal/thermal_trip.o
CC kernel/ksyms_common.o
CC lib/kstrtox.o
CC mm/swapfile.o
CC drivers/input/ff-memless.o
CC drivers/gpu/drm/drm_drv.o
CC drivers/scsi/sr_vendor.o
CC [M] drivers/gpu/drm/xe/xe_gt.o
AR drivers/net/ethernet/hisilicon/built-in.a
CC drivers/cpufreq/freq_table.o
CC drivers/acpi/acpica/utalloc.o
CC fs/ext4/orphan.o
AR drivers/mmc/built-in.a
CC net/ipv4/fib_frontend.o
CC drivers/thermal/thermal_helpers.o
CC kernel/groups.o
CC drivers/usb/storage/usb.o
CC fs/ext4/acl.o
CC drivers/gpu/drm/drm_dumb_buffers.o
AR drivers/ata/built-in.a
CC fs/nfs/delegation.o
CC arch/x86/kernel/msr.o
AR net/wireless/built-in.a
CC drivers/acpi/acpica/utascii.o
CC net/mac80211/util.o
CC drivers/cpuidle/cpuidle.o
CC kernel/kcmp.o
AR drivers/usb/early/built-in.a
CC drivers/md/dm-linear.o
CC lib/iomap.o
CC drivers/usb/host/xhci-ring.o
CC drivers/md/dm-stripe.o
CC kernel/freezer.o
CC kernel/profile.o
AR drivers/net/ethernet/broadcom/built-in.a
AR drivers/ufs/built-in.a
AR drivers/net/ethernet/huawei/built-in.a
CC drivers/usb/storage/initializers.o
CC drivers/acpi/acpica/utbuffer.o
CC net/ipv6/xfrm6_protocol.o
CC drivers/net/ethernet/intel/e1000/e1000_main.o
AR drivers/cpuidle/governors/built-in.a
CC drivers/net/ethernet/intel/e1000/e1000_hw.o
CC drivers/thermal/thermal_thresholds.o
CC drivers/input/sparse-keymap.o
CC drivers/cpufreq/cpufreq_performance.o
CC drivers/md/dm-ioctl.o
CC drivers/scsi/sg.o
CC net/ipv4/fib_semantics.o
AR drivers/firmware/arm_ffa/built-in.a
AR drivers/firmware/arm_scmi/built-in.a
AR drivers/crypto/stm32/built-in.a
AR drivers/firmware/broadcom/built-in.a
AR drivers/crypto/inside-secure/eip93/built-in.a
AR drivers/crypto/inside-secure/built-in.a
AR drivers/firmware/cirrus/test/built-in.a
AR drivers/firmware/cirrus/built-in.a
AR drivers/crypto/xilinx/built-in.a
AR drivers/firmware/meson/built-in.a
AR drivers/crypto/hisilicon/built-in.a
CC drivers/acpi/acpi_pcc.o
AR drivers/firmware/microchip/built-in.a
AR drivers/crypto/intel/keembay/built-in.a
AR drivers/crypto/intel/ixp4xx/built-in.a
AR drivers/crypto/intel/built-in.a
AR drivers/crypto/starfive/built-in.a
AR drivers/crypto/built-in.a
CC drivers/acpi/acpica/utcksum.o
CC net/ipv4/fib_trie.o
CC [M] drivers/gpu/drm/xe/xe_gt_ccs_mode.o
AR drivers/net/ethernet/i825xx/built-in.a
CC drivers/firmware/efi/libstub/efi-stub-helper.o
CC drivers/gpu/drm/i915/gt/gen8_ppgtt.o
CC drivers/net/ethernet/intel/e1000/e1000_ethtool.o
CC drivers/firmware/efi/libstub/gop.o
CC drivers/usb/core/notify.o
CC fs/ioctl.o
CC arch/x86/kernel/cpuid.o
CC net/ipv4/fib_notifier.o
CC lib/iomap_copy.o
CC net/ipv4/inet_fragment.o
CC net/ipv4/ping.o
CC drivers/gpu/drm/i915/gt/intel_breadcrumbs.o
CC drivers/thermal/thermal_netlink.o
CC drivers/gpu/drm/i915/gt/intel_context.o
CC drivers/acpi/ac.o
CC drivers/scsi/scsi_sysfs.o
CC drivers/net/ethernet/intel/e1000e/82571.o
CC lib/devres.o
CC drivers/usb/storage/sierra_ms.o
CC drivers/firmware/efi/efi-bgrt.o
CC drivers/input/vivaldi-fmap.o
CC kernel/stacktrace.o
CC drivers/net/ethernet/intel/e1000/e1000_param.o
CC drivers/acpi/acpica/utcopy.o
CC drivers/gpu/drm/drm_edid.o
CC net/mac80211/parse.o
CC drivers/clocksource/acpi_pm.o
CC drivers/cpuidle/driver.o
CC drivers/cpufreq/cpufreq_userspace.o
CC fs/ext4/xattr_security.o
CC arch/x86/kernel/early-quirks.o
CC drivers/usb/core/generic.o
CC drivers/input/input-leds.o
CC arch/x86/kernel/smp.o
CC lib/check_signature.o
CC drivers/hid/usbhid/hid-core.o
CC net/ipv6/netfilter.o
AR drivers/platform/x86/amd/built-in.a
CC drivers/firmware/efi/libstub/secureboot.o
AR drivers/platform/x86/intel/built-in.a
CC drivers/platform/x86/wmi.o
CC drivers/acpi/acpica/utexcep.o
CC lib/interval_tree.o
CC [M] drivers/gpu/drm/xe/xe_gt_clock.o
AR drivers/platform/surface/built-in.a
CC arch/x86/kernel/smpboot.o
CC drivers/cpufreq/cpufreq_ondemand.o
CC drivers/usb/storage/option_ms.o
CC kernel/dma.o
CC drivers/cpuidle/governor.o
CC net/ipv4/ip_tunnel_core.o
CC drivers/acpi/button.o
CC drivers/usb/host/xhci-hub.o
CC drivers/net/ethernet/intel/e100.o
CC drivers/net/ethernet/intel/e1000e/ich8lan.o
CC lib/assoc_array.o
CC drivers/clocksource/i8253.o
CC fs/nfs/nfs4idmap.o
CC drivers/acpi/acpica/utdebug.o
CC drivers/usb/core/quirks.o
CC drivers/input/evdev.o
CC drivers/usb/host/xhci-dbg.o
CC kernel/smp.o
AR fs/ext4/built-in.a
CC net/ipv6/proc.o
CC drivers/gpu/drm/drm_eld.o
AR drivers/scsi/built-in.a
AR drivers/net/ethernet/microsoft/built-in.a
CC drivers/cpuidle/sysfs.o
CC drivers/hid/hid-core.o
AR drivers/firmware/imx/built-in.a
CC drivers/firmware/efi/libstub/tpm.o
CC [M] drivers/gpu/drm/xe/xe_gt_freq.o
CC net/ipv4/gre_offload.o
CC drivers/thermal/thermal_hwmon.o
CC lib/bitrev.o
CC mm/dmapool.o
CC drivers/usb/host/xhci-trace.o
CC drivers/usb/host/xhci-debugfs.o
CC fs/readdir.o
CC drivers/gpu/drm/i915/gt/intel_context_sseu.o
AR drivers/clocksource/built-in.a
CC drivers/acpi/acpica/utdecode.o
CC drivers/acpi/acpica/utdelete.o
CC arch/x86/kernel/tsc_sync.o
CC drivers/cpufreq/cpufreq_governor.o
CC drivers/md/dm-io.o
CC drivers/usb/storage/usual-tables.o
CC drivers/usb/host/xhci-pci.o
CC net/mac80211/wme.o
CC drivers/platform/x86/wmi-bmof.o
CC net/ipv6/syncookies.o
AR drivers/firmware/psci/built-in.a
CC drivers/usb/core/devices.o
CC drivers/hid/usbhid/hiddev.o
AR drivers/net/ethernet/litex/built-in.a
CC drivers/mailbox/mailbox.o
CC drivers/usb/core/phy.o
AR drivers/perf/built-in.a
CC drivers/hid/usbhid/hid-pidff.o
CC drivers/mailbox/pcc.o
CC lib/crc-ccitt.o
CC drivers/acpi/acpica/uterror.o
CC drivers/thermal/gov_step_wise.o
CC mm/hugetlb.o
CC drivers/gpu/drm/i915/gt/intel_engine_cs.o
CC drivers/cpuidle/poll_state.o
CC kernel/uid16.o
CC net/mac80211/chan.o
AR drivers/firmware/qcom/built-in.a
CC drivers/firmware/efi/libstub/file.o
CC drivers/hid/hid-input.o
CC arch/x86/kernel/setup_percpu.o
CC mm/mmu_notifier.o
CC drivers/cpufreq/cpufreq_governor_attr_set.o
AR drivers/firmware/samsung/built-in.a
CC kernel/kallsyms.o
AR drivers/usb/storage/built-in.a
CC drivers/firmware/efi/efi.o
CC drivers/net/ethernet/intel/e1000e/80003es2lan.o
CC drivers/cpuidle/cpuidle-haltpoll.o
AR drivers/input/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gt_idle.o
CC lib/crc16.o
CC drivers/platform/x86/eeepc-laptop.o
CC drivers/net/ethernet/intel/e1000e/mac.o
CC [M] drivers/gpu/drm/xe/xe_gt_mcr.o
CC drivers/acpi/acpica/uteval.o
CC drivers/gpu/drm/i915/gt/intel_engine_heartbeat.o
CC drivers/cpufreq/acpi-cpufreq.o
AR drivers/thermal/built-in.a
CC drivers/hid/hid-quirks.o
CC drivers/net/ethernet/intel/e1000e/manage.o
AR drivers/mailbox/built-in.a
CC drivers/usb/core/port.o
HOSTCC lib/gen_crc32table
CC drivers/md/dm-kcopyd.o
CC drivers/cpufreq/amd-pstate.o
CC fs/nfs/callback.o
CC drivers/acpi/fan_core.o
CC [M] drivers/gpu/drm/xe/xe_gt_pagefault.o
CC drivers/firmware/efi/libstub/mem.o
CC net/mac80211/trace.o
CC drivers/md/dm-sysfs.o
AR drivers/net/ethernet/intel/e1000/built-in.a
CC drivers/gpu/drm/drm_encoder.o
CC lib/xxhash.o
CC mm/migrate.o
CC net/ipv4/metrics.o
CC drivers/firmware/efi/libstub/random.o
AR drivers/cpuidle/built-in.a
AR drivers/firmware/smccc/built-in.a
CC drivers/gpu/drm/i915/gt/intel_engine_pm.o
CC drivers/acpi/acpica/utglobal.o
AR drivers/net/ethernet/marvell/octeon_ep/built-in.a
AR drivers/net/ethernet/marvell/octeon_ep_vf/built-in.a
CC lib/genalloc.o
AR drivers/net/ethernet/marvell/octeontx2/built-in.a
AR drivers/net/ethernet/marvell/prestera/built-in.a
CC arch/x86/kernel/mpparse.o
CC drivers/net/ethernet/marvell/sky2.o
AR drivers/net/ethernet/mellanox/built-in.a
CC fs/select.o
CC mm/page_counter.o
CC mm/hugetlb_cgroup.o
CC drivers/net/ethernet/intel/e1000e/nvm.o
CC drivers/firmware/efi/vars.o
AR drivers/hid/usbhid/built-in.a
AR drivers/firmware/tegra/built-in.a
CC drivers/net/ethernet/intel/e1000e/phy.o
AR drivers/hwtracing/intel_th/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gt_sysfs.o
CC net/ipv6/calipso.o
CC drivers/platform/x86/p2sb.o
CC drivers/acpi/acpica/uthex.o
CC drivers/usb/core/hcd-pci.o
CC drivers/acpi/fan_attr.o
CC net/mac80211/mlme.o
CC drivers/gpu/drm/drm_file.o
CC net/ipv6/ah6.o
CC drivers/net/ethernet/intel/e1000e/param.o
CC drivers/acpi/acpica/utids.o
CC drivers/acpi/fan_hwmon.o
CC drivers/usb/core/usb-acpi.o
AR drivers/net/ethernet/meta/built-in.a
CC arch/x86/kernel/trace_clock.o
CC drivers/firmware/efi/libstub/randomalloc.o
CC fs/nfs/callback_xdr.o
CC kernel/acct.o
CC drivers/md/dm-stats.o
CC drivers/acpi/acpi_video.o
CC lib/percpu_counter.o
CC drivers/firmware/efi/reboot.o
AR drivers/firmware/xilinx/built-in.a
CC lib/audit.o
CC drivers/gpu/drm/i915/gt/intel_engine_user.o
CC fs/nfs/callback_proc.o
CC net/mac80211/tdls.o
CC kernel/vmcore_info.o
CC net/ipv4/netlink.o
AR drivers/net/ethernet/micrel/built-in.a
CC drivers/md/dm-rq.o
CC drivers/acpi/video_detect.o
CC drivers/acpi/acpica/utinit.o
CC mm/early_ioremap.o
CC drivers/firmware/efi/memattr.o
CC drivers/gpu/drm/i915/gt/intel_execlists_submission.o
CC drivers/cpufreq/amd-pstate-trace.o
CC [M] drivers/gpu/drm/xe/xe_gt_throttle.o
AR drivers/platform/x86/built-in.a
AR drivers/platform/built-in.a
CC fs/nfs/nfs4namespace.o
CC arch/x86/kernel/trace.o
CC lib/syscall.o
AR drivers/usb/host/built-in.a
CC drivers/gpu/drm/drm_fourcc.o
CC net/ipv6/esp6.o
CC drivers/firmware/efi/libstub/pci.o
CC net/ipv4/nexthop.o
CC drivers/hid/hid-debug.o
CC fs/nfs/nfs4getroot.o
AR drivers/android/built-in.a
CC drivers/net/ethernet/intel/e1000e/ethtool.o
CC fs/dcache.o
CC drivers/acpi/acpica/utlock.o
CC drivers/md/dm-io-rewind.o
AR drivers/net/ethernet/microchip/built-in.a
CC kernel/elfcorehdr.o
CC drivers/md/dm-builtin.o
CC arch/x86/kernel/rethook.o
AR drivers/usb/core/built-in.a
AR drivers/usb/built-in.a
CC drivers/cpufreq/intel_pstate.o
CC drivers/acpi/processor_driver.o
CC drivers/net/ethernet/intel/e1000e/netdev.o
CC net/ipv4/udp_tunnel_stub.o
AR drivers/net/ethernet/mscc/built-in.a
CC drivers/hid/hidraw.o
CC [M] drivers/gpu/drm/xe/xe_gt_tlb_invalidation.o
CC drivers/firmware/dmi_scan.o
CC lib/errname.o
CC drivers/gpu/drm/drm_framebuffer.o
CC drivers/md/dm-raid1.o
CC drivers/acpi/acpica/utmath.o
CC net/ipv4/ip_tunnel.o
CC kernel/kexec_core.o
CC [M] drivers/gpu/drm/xe/xe_gt_topology.o
CC net/ipv6/sit.o
CC kernel/kexec.o
CC lib/nlattr.o
AR drivers/net/ethernet/myricom/built-in.a
CC kernel/utsname.o
CC kernel/pid_namespace.o
CC [M] drivers/gpu/drm/xe/xe_guc.o
CC drivers/firmware/efi/libstub/skip_spaces.o
CC drivers/acpi/acpica/utmisc.o
CC drivers/net/ethernet/intel/e1000e/ptp.o
CC drivers/gpu/drm/drm_gem.o
CC drivers/firmware/efi/libstub/lib-cmdline.o
AR drivers/net/ethernet/natsemi/built-in.a
CC drivers/firmware/efi/libstub/lib-ctype.o
CC drivers/hid/hid-generic.o
CC arch/x86/kernel/vmcore_info_32.o
CC fs/inode.o
CC drivers/gpu/drm/i915/gt/intel_ggtt.o
CC drivers/firmware/efi/libstub/alignedmem.o
CC drivers/md/dm-log.o
CC net/ipv4/sysctl_net_ipv4.o
CC net/mac80211/ocb.o
CC [M] drivers/gpu/drm/xe/xe_guc_ads.o
CC drivers/gpu/drm/drm_ioctl.o
CC fs/nfs/nfs4client.o
CC drivers/firmware/dmi-id.o
CC drivers/gpu/drm/i915/gt/intel_ggtt_fencing.o
CC lib/cpu_rmap.o
AR drivers/nvmem/layouts/built-in.a
CC drivers/nvmem/core.o
CC drivers/acpi/acpica/utmutex.o
CC mm/secretmem.o
CC fs/nfs/nfs4session.o
CC drivers/hid/hid-a4tech.o
CC [M] drivers/gpu/drm/xe/xe_guc_buf.o
CC arch/x86/kernel/machine_kexec_32.o
CC drivers/firmware/efi/tpm.o
CC fs/attr.o
CC net/mac80211/airtime.o
CC drivers/firmware/efi/libstub/relocate.o
CC kernel/stop_machine.o
CC drivers/acpi/processor_thermal.o
CC drivers/acpi/acpica/utnonansi.o
CC drivers/firmware/memmap.o
CC drivers/gpu/drm/drm_lease.o
CC net/ipv4/proc.o
AR drivers/net/ethernet/neterion/built-in.a
CC fs/nfs/dns_resolve.o
CC fs/bad_inode.o
CC net/mac80211/eht.o
CC kernel/audit.o
CC net/ipv6/addrconf_core.o
CC drivers/firmware/efi/memmap.o
AR drivers/net/ethernet/netronome/built-in.a
CC mm/hmm.o
CC drivers/md/dm-region-hash.o
CC lib/dynamic_queue_limits.o
CC fs/nfs/nfs4trace.o
CC drivers/hid/hid-apple.o
CC mm/memfd.o
CC drivers/acpi/acpica/utobject.o
AR drivers/net/ethernet/marvell/built-in.a
CC net/mac80211/led.o
CC drivers/firmware/efi/capsule.o
CC drivers/gpu/drm/i915/gt/intel_gt.o
CC drivers/acpi/processor_idle.o
CC drivers/gpu/drm/drm_managed.o
CC drivers/firmware/efi/libstub/printk.o
AS arch/x86/kernel/relocate_kernel_32.o
CC net/ipv4/fib_rules.o
CC net/ipv6/exthdrs_core.o
CC drivers/acpi/processor_throttling.o
CC drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.o
CC arch/x86/kernel/module.o
CC drivers/firmware/efi/libstub/vsprintf.o
CC net/mac80211/pm.o
CC net/mac80211/rc80211_minstrel_ht.o
CC fs/nfs/nfs4sysctl.o
AR drivers/nvmem/built-in.a
CC drivers/acpi/processor_perflib.o
AR drivers/cpufreq/built-in.a
CC drivers/firmware/efi/esrt.o
CC net/ipv6/ip6_checksum.o
CC mm/execmem.o
CC drivers/gpu/drm/drm_mm.o
CC lib/glob.o
CC net/mac80211/wbrf.o
CC drivers/acpi/acpica/utosi.o
CC drivers/hid/hid-belkin.o
CC drivers/hid/hid-cherry.o
CC drivers/firmware/efi/runtime-wrappers.o
CC [M] drivers/gpu/drm/xe/xe_guc_capture.o
CC kernel/auditfilter.o
CC fs/file.o
CC kernel/auditsc.o
CC drivers/acpi/acpica/utownerid.o
CC [M] drivers/gpu/drm/xe/xe_guc_ct.o
AR drivers/net/ethernet/ni/built-in.a
CC drivers/md/dm-zero.o
CC arch/x86/kernel/doublefault_32.o
CC drivers/firmware/efi/capsule-loader.o
CC drivers/acpi/container.o
CC drivers/firmware/efi/libstub/x86-stub.o
CC drivers/gpu/drm/drm_mode_config.o
CC kernel/audit_watch.o
CC lib/strncpy_from_user.o
CC [M] drivers/gpu/drm/xe/xe_guc_db_mgr.o
CC drivers/firmware/efi/libstub/smbios.o
CC drivers/acpi/thermal_lib.o
CC [M] drivers/gpu/drm/xe/xe_guc_engine_activity.o
CC drivers/hid/hid-chicony.o
CC lib/strnlen_user.o
CC drivers/firmware/efi/earlycon.o
CC drivers/acpi/acpica/utpredef.o
CC drivers/acpi/acpica/utresdecode.o
CC drivers/net/ethernet/nvidia/forcedeth.o
CC arch/x86/kernel/early_printk.o
STUBCPY drivers/firmware/efi/libstub/alignedmem.stub.o
CC drivers/gpu/drm/drm_mode_object.o
CC kernel/audit_fsnotify.o
AR mm/built-in.a
CC net/ipv4/ipmr.o
CC drivers/hid/hid-cypress.o
CC drivers/acpi/acpica/utresrc.o
CC net/ipv6/ip6_icmp.o
CC fs/filesystems.o
CC drivers/acpi/thermal.o
CC arch/x86/kernel/hpet.o
CC lib/net_utils.o
STUBCPY drivers/firmware/efi/libstub/efi-stub-helper.stub.o
CC fs/namespace.o
CC drivers/acpi/nhlt.o
CC drivers/hid/hid-ezkey.o
CC drivers/acpi/acpica/utstate.o
AR drivers/md/built-in.a
CC [M] drivers/gpu/drm/xe/xe_guc_hwconfig.o
CC [M] drivers/gpu/drm/xe/xe_guc_id_mgr.o
CC net/ipv4/ipmr_base.o
CC arch/x86/kernel/amd_nb.o
CC fs/seq_file.o
CC net/ipv4/syncookies.o
STUBCPY drivers/firmware/efi/libstub/file.stub.o
CC drivers/acpi/acpi_memhotplug.o
CC drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.o
AR drivers/net/ethernet/oki-semi/built-in.a
CC [M] drivers/gpu/drm/xe/xe_guc_klv_helpers.o
CC drivers/hid/hid-gyration.o
CC drivers/acpi/ioapic.o
CC lib/sg_pool.o
CC drivers/hid/hid-ite.o
STUBCPY drivers/firmware/efi/libstub/gop.stub.o
STUBCPY drivers/firmware/efi/libstub/lib-cmdline.stub.o
STUBCPY drivers/firmware/efi/libstub/lib-ctype.stub.o
CC kernel/audit_tree.o
CC kernel/kprobes.o
STUBCPY drivers/firmware/efi/libstub/mem.stub.o
CC kernel/seccomp.o
STUBCPY drivers/firmware/efi/libstub/pci.stub.o
CC drivers/hid/hid-kensington.o
STUBCPY drivers/firmware/efi/libstub/printk.stub.o
CC net/ipv4/tunnel4.o
STUBCPY drivers/firmware/efi/libstub/random.stub.o
STUBCPY drivers/firmware/efi/libstub/randomalloc.stub.o
STUBCPY drivers/firmware/efi/libstub/relocate.stub.o
CC drivers/acpi/acpica/utstring.o
CC kernel/relay.o
STUBCPY drivers/firmware/efi/libstub/secureboot.stub.o
STUBCPY drivers/firmware/efi/libstub/skip_spaces.stub.o
STUBCPY drivers/firmware/efi/libstub/smbios.stub.o
STUBCPY drivers/firmware/efi/libstub/tpm.stub.o
STUBCPY drivers/firmware/efi/libstub/vsprintf.stub.o
CC arch/x86/kernel/amd_node.o
STUBCPY drivers/firmware/efi/libstub/x86-stub.stub.o
AR drivers/firmware/efi/libstub/lib.a
CC net/ipv6/output_core.o
AR drivers/firmware/efi/built-in.a
CC net/ipv4/ipconfig.o
AR drivers/firmware/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_clock_utils.o
CC [M] drivers/gpu/drm/xe/xe_guc_log.o
CC lib/stackdepot.o
CC drivers/hid/hid-microsoft.o
AR drivers/net/ethernet/packetengines/built-in.a
CC fs/xattr.o
CC lib/asn1_decoder.o
CC fs/libfs.o
CC fs/fs-writeback.o
CC drivers/gpu/drm/drm_modes.o
CC [M] drivers/gpu/drm/xe/xe_guc_pc.o
CC drivers/hid/hid-monterey.o
CC kernel/utsname_sysctl.o
CC drivers/hid/hid-ntrig.o
CC [M] drivers/gpu/drm/xe/xe_guc_submit.o
CC drivers/acpi/acpica/utstrsuppt.o
CC drivers/acpi/battery.o
CC drivers/gpu/drm/i915/gt/intel_gt_debugfs.o
CC net/ipv4/netfilter.o
CC drivers/gpu/drm/drm_modeset_lock.o
CC [M] drivers/gpu/drm/xe/xe_heci_gsc.o
CC drivers/acpi/bgrt.o
CC kernel/delayacct.o
CC fs/pnode.o
CC [M] drivers/gpu/drm/xe/xe_huc.o
AR drivers/net/ethernet/qlogic/built-in.a
CC net/ipv6/protocol.o
CC net/ipv4/tcp_cubic.o
CC net/ipv4/tcp_sigpool.o
CC drivers/gpu/drm/drm_plane.o
GEN lib/oid_registry_data.c
CC arch/x86/kernel/kvm.o
CC drivers/hid/hid-pl.o
AR drivers/net/ethernet/qualcomm/emac/built-in.a
CC drivers/acpi/acpica/utstrtoul64.o
AR drivers/net/ethernet/qualcomm/built-in.a
CC drivers/gpu/drm/drm_prime.o
CC drivers/net/ethernet/realtek/8139too.o
CC kernel/taskstats.o
CC drivers/acpi/acpica/utxface.o
CC drivers/acpi/spcr.o
CC drivers/hid/hid-petalynx.o
CC lib/ucs2_string.o
CC net/ipv6/ip6_offload.o
CC net/ipv6/tcpv6_offload.o
CC drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.o
CC drivers/net/ethernet/realtek/r8169_main.o
CC fs/splice.o
CC drivers/gpu/drm/drm_print.o
CC net/ipv4/cipso_ipv4.o
CC drivers/acpi/acpica/utxfinit.o
CC net/ipv6/exthdrs_offload.o
CC arch/x86/kernel/kvmclock.o
AR drivers/net/ethernet/intel/e1000e/built-in.a
CC arch/x86/kernel/paravirt.o
AR drivers/net/ethernet/intel/built-in.a
AR drivers/net/ethernet/renesas/built-in.a
CC lib/sbitmap.o
CC drivers/net/ethernet/realtek/r8169_firmware.o
AR fs/nfs/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_irq.o
CC drivers/gpu/drm/drm_property.o
CC drivers/hid/hid-redragon.o
CC drivers/gpu/drm/i915/gt/intel_gt_mcr.o
CC net/ipv4/xfrm4_policy.o
CC kernel/tsacct.o
CC net/ipv6/inet6_hashtables.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm.o
CC fs/sync.o
CC drivers/gpu/drm/drm_rect.o
CC fs/utimes.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.o
CC drivers/acpi/acpica/utxferror.o
CC kernel/tracepoint.o
CC lib/group_cpus.o
CC drivers/acpi/acpica/utxfmutex.o
CC drivers/hid/hid-samsung.o
CC kernel/irq_work.o
AR drivers/net/ethernet/rdc/built-in.a
AR drivers/net/ethernet/rocker/built-in.a
AR drivers/net/ethernet/samsung/built-in.a
AR drivers/net/ethernet/seeq/built-in.a
CC drivers/net/ethernet/realtek/r8169_phy_config.o
AR drivers/net/ethernet/silan/built-in.a
CC net/ipv6/mcast_snoop.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm_irq.o
CC lib/fw_table.o
AR drivers/net/ethernet/sis/built-in.a
CC net/ipv4/xfrm4_state.o
CC arch/x86/kernel/pvclock.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine.o
CC fs/d_path.o
CC drivers/hid/hid-sony.o
CC drivers/gpu/drm/i915/gt/intel_gt_requests.o
CC arch/x86/kernel/pcspeaker.o
AR drivers/net/ethernet/sfc/built-in.a
CC net/ipv4/xfrm4_input.o
CC arch/x86/kernel/check.o
CC kernel/static_call.o
AR drivers/acpi/acpica/built-in.a
CC drivers/hid/hid-sunplus.o
CC fs/stack.o
AR drivers/acpi/built-in.a
CC net/ipv4/xfrm4_output.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine_group.o
AR drivers/net/ethernet/smsc/built-in.a
CC drivers/gpu/drm/drm_syncobj.o
CC drivers/gpu/drm/i915/gt/intel_gt_sysfs.o
CC [M] drivers/gpu/drm/xe/xe_hw_fence.o
CC net/ipv4/xfrm4_protocol.o
CC arch/x86/kernel/uprobes.o
CC fs/fs_struct.o
AR lib/lib.a
CC kernel/padata.o
AR drivers/net/ethernet/socionext/built-in.a
CC drivers/gpu/drm/drm_sysfs.o
GEN lib/crc32table.h
CC drivers/hid/hid-topseed.o
CC lib/oid_registry.o
CC arch/x86/kernel/perf_regs.o
CC drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.o
AR drivers/net/ethernet/nvidia/built-in.a
CC fs/statfs.o
CC drivers/gpu/drm/drm_trace_points.o
CC [M] drivers/gpu/drm/xe/xe_irq.o
CC [M] drivers/gpu/drm/xe/xe_lrc.o
CC drivers/gpu/drm/i915/gt/intel_gtt.o
CC fs/fs_pin.o
AR drivers/net/ethernet/stmicro/built-in.a
CC arch/x86/kernel/tracepoint.o
CC drivers/gpu/drm/drm_vblank.o
CC drivers/gpu/drm/i915/gt/intel_llc.o
CC kernel/jump_label.o
CC arch/x86/kernel/itmt.o
AR drivers/net/ethernet/sun/built-in.a
CC drivers/gpu/drm/drm_vblank_work.o
CC drivers/gpu/drm/i915/gt/intel_lrc.o
CC drivers/gpu/drm/i915/gt/intel_migrate.o
CC lib/crc32.o
CC fs/nsfs.o
CC kernel/context_tracking.o
CC [M] drivers/gpu/drm/xe/xe_migrate.o
AR drivers/net/ethernet/tehuti/built-in.a
CC fs/fs_types.o
CC arch/x86/kernel/umip.o
CC [M] drivers/gpu/drm/xe/xe_mmio.o
CC drivers/gpu/drm/i915/gt/intel_mocs.o
CC drivers/gpu/drm/drm_vma_manager.o
CC kernel/iomem.o
CC arch/x86/kernel/unwind_frame.o
AR drivers/net/ethernet/ti/built-in.a
CC drivers/gpu/drm/drm_writeback.o
AR net/ipv6/built-in.a
CC fs/fs_context.o
CC drivers/gpu/drm/i915/gt/intel_ppgtt.o
CC kernel/rseq.o
CC [M] drivers/gpu/drm/xe/xe_mocs.o
AR drivers/net/ethernet/vertexcom/built-in.a
CC drivers/gpu/drm/i915/gt/intel_rc6.o
CC drivers/gpu/drm/drm_panel.o
CC [M] drivers/gpu/drm/xe/xe_module.o
CC drivers/gpu/drm/i915/gt/intel_region_lmem.o
CC fs/fs_parser.o
CC fs/fsopen.o
AR net/mac80211/built-in.a
AR drivers/net/ethernet/via/built-in.a
CC fs/init.o
CC drivers/gpu/drm/drm_pci.o
CC [M] drivers/gpu/drm/xe/xe_oa.o
CC drivers/gpu/drm/i915/gt/intel_renderstate.o
AR drivers/net/ethernet/wangxun/built-in.a
CC [M] drivers/gpu/drm/xe/xe_observation.o
AR drivers/hid/built-in.a
AR lib/built-in.a
CC drivers/gpu/drm/drm_debugfs.o
CC fs/kernel_read_file.o
CC drivers/gpu/drm/i915/gt/intel_reset.o
CC drivers/gpu/drm/drm_debugfs_crc.o
CC fs/mnt_idmapping.o
AR drivers/net/ethernet/wiznet/built-in.a
AR drivers/net/ethernet/xilinx/built-in.a
CC [M] drivers/gpu/drm/xe/xe_pat.o
CC drivers/gpu/drm/i915/gt/intel_ring.o
CC [M] drivers/gpu/drm/xe/xe_pci.o
AR net/ipv4/built-in.a
AR drivers/net/ethernet/xircom/built-in.a
CC drivers/gpu/drm/i915/gt/intel_ring_submission.o
AR net/built-in.a
AR drivers/net/ethernet/synopsys/built-in.a
CC fs/remap_range.o
CC drivers/gpu/drm/drm_panel_orientation_quirks.o
CC [M] drivers/gpu/drm/xe/xe_pcode.o
CC drivers/gpu/drm/i915/gt/intel_rps.o
CC drivers/gpu/drm/drm_buddy.o
AR drivers/net/ethernet/pensando/built-in.a
CC drivers/gpu/drm/i915/gt/intel_sa_media.o
CC fs/pidfs.o
CC [M] drivers/gpu/drm/xe/xe_pm.o
CC drivers/gpu/drm/i915/gt/intel_sseu.o
CC fs/buffer.o
CC drivers/gpu/drm/drm_gem_shmem_helper.o
AR arch/x86/kernel/built-in.a
AR arch/x86/built-in.a
CC drivers/gpu/drm/drm_atomic_helper.o
CC drivers/gpu/drm/i915/gt/intel_sseu_debugfs.o
CC drivers/gpu/drm/drm_atomic_state_helper.o
CC [M] drivers/gpu/drm/xe/xe_preempt_fence.o
CC drivers/gpu/drm/i915/gt/intel_timeline.o
CC fs/mpage.o
CC drivers/gpu/drm/drm_bridge_helper.o
CC drivers/gpu/drm/i915/gt/intel_tlb.o
CC fs/proc_namespace.o
CC [M] drivers/gpu/drm/xe/xe_pt.o
CC fs/direct-io.o
CC drivers/gpu/drm/drm_crtc_helper.o
CC drivers/gpu/drm/i915/gt/intel_wopcm.o
CC [M] drivers/gpu/drm/xe/xe_pt_walk.o
CC fs/eventpoll.o
CC drivers/gpu/drm/i915/gt/intel_workarounds.o
AR kernel/built-in.a
CC drivers/gpu/drm/drm_damage_helper.o
CC fs/anon_inodes.o
CC [M] drivers/gpu/drm/xe/xe_pxp.o
CC drivers/gpu/drm/i915/gt/shmem_utils.o
CC drivers/gpu/drm/i915/gt/sysfs_engines.o
CC [M] drivers/gpu/drm/xe/xe_pxp_debugfs.o
CC drivers/gpu/drm/drm_flip_work.o
CC drivers/gpu/drm/i915/gt/intel_ggtt_gmch.o
CC fs/signalfd.o
CC drivers/gpu/drm/i915/gt/gen6_renderstate.o
CC drivers/gpu/drm/drm_format_helper.o
CC [M] drivers/gpu/drm/xe/xe_pxp_submit.o
AR drivers/net/ethernet/realtek/built-in.a
CC drivers/gpu/drm/i915/gt/gen7_renderstate.o
AR drivers/net/ethernet/built-in.a
CC fs/timerfd.o
AR drivers/net/built-in.a
CC drivers/gpu/drm/drm_gem_atomic_helper.o
CC drivers/gpu/drm/i915/gt/gen8_renderstate.o
CC [M] drivers/gpu/drm/xe/xe_query.o
CC [M] drivers/gpu/drm/xe/xe_range_fence.o
CC [M] drivers/gpu/drm/xe/xe_reg_sr.o
CC drivers/gpu/drm/drm_gem_framebuffer_helper.o
CC [M] drivers/gpu/drm/xe/xe_reg_whitelist.o
CC drivers/gpu/drm/drm_kms_helper_common.o
CC drivers/gpu/drm/i915/gt/gen9_renderstate.o
CC fs/eventfd.o
CC fs/aio.o
CC drivers/gpu/drm/drm_modeset_helper.o
CC [M] drivers/gpu/drm/xe/xe_ring_ops.o
CC [M] drivers/gpu/drm/xe/xe_rtp.o
CC drivers/gpu/drm/i915/gem/i915_gem_busy.o
CC drivers/gpu/drm/drm_plane_helper.o
CC fs/locks.o
CC drivers/gpu/drm/i915/gem/i915_gem_clflush.o
CC drivers/gpu/drm/i915/gem/i915_gem_context.o
CC drivers/gpu/drm/i915/gem/i915_gem_create.o
CC [M] drivers/gpu/drm/xe/xe_sa.o
CC drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o
CC fs/binfmt_misc.o
CC drivers/gpu/drm/drm_probe_helper.o
CC [M] drivers/gpu/drm/xe/xe_sched_job.o
CC drivers/gpu/drm/drm_self_refresh_helper.o
CC drivers/gpu/drm/i915/gem/i915_gem_domain.o
CC fs/binfmt_script.o
CC [M] drivers/gpu/drm/xe/xe_shrinker.o
CC drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o
CC drivers/gpu/drm/drm_simple_kms_helper.o
CC [M] drivers/gpu/drm/xe/xe_step.o
CC drivers/gpu/drm/bridge/panel.o
CC fs/binfmt_elf.o
CC drivers/gpu/drm/i915/gem/i915_gem_internal.o
CC [M] drivers/gpu/drm/xe/xe_survivability_mode.o
CC [M] drivers/gpu/drm/xe/xe_sync.o
CC drivers/gpu/drm/i915/gem/i915_gem_lmem.o
CC drivers/gpu/drm/i915/gem/i915_gem_mman.o
CC drivers/gpu/drm/drm_mipi_dsi.o
CC drivers/gpu/drm/i915/gem/i915_gem_object.o
CC fs/mbcache.o
CC fs/posix_acl.o
CC drivers/gpu/drm/i915/gem/i915_gem_pages.o
CC [M] drivers/gpu/drm/xe/xe_tile.o
CC [M] drivers/gpu/drm/xe/xe_tile_sysfs.o
CC fs/coredump.o
CC [M] drivers/gpu/drm/xe/xe_trace.o
CC [M] drivers/gpu/drm/xe/xe_trace_bo.o
CC drivers/gpu/drm/i915/gem/i915_gem_phys.o
CC [M] drivers/gpu/drm/drm_exec.o
CC [M] drivers/gpu/drm/xe/xe_trace_guc.o
CC fs/drop_caches.o
CC drivers/gpu/drm/i915/gem/i915_gem_pm.o
CC [M] drivers/gpu/drm/xe/xe_trace_lrc.o
CC [M] drivers/gpu/drm/drm_gpuvm.o
CC fs/sysctls.o
CC [M] drivers/gpu/drm/xe/xe_ttm_stolen_mgr.o
CC fs/fhandle.o
CC drivers/gpu/drm/i915/gem/i915_gem_region.o
CC [M] drivers/gpu/drm/xe/xe_ttm_sys_mgr.o
CC [M] drivers/gpu/drm/drm_suballoc.o
CC drivers/gpu/drm/i915/gem/i915_gem_shmem.o
CC drivers/gpu/drm/i915/gem/i915_gem_shrinker.o
CC [M] drivers/gpu/drm/xe/xe_ttm_vram_mgr.o
CC drivers/gpu/drm/i915/gem/i915_gem_stolen.o
CC [M] drivers/gpu/drm/xe/xe_tuning.o
CC [M] drivers/gpu/drm/drm_gem_ttm_helper.o
CC [M] drivers/gpu/drm/xe/xe_uc.o
CC [M] drivers/gpu/drm/xe/xe_uc_fw.o
CC [M] drivers/gpu/drm/xe/xe_vm.o
CC drivers/gpu/drm/i915/gem/i915_gem_throttle.o
CC [M] drivers/gpu/drm/xe/xe_vram.o
CC drivers/gpu/drm/i915/gem/i915_gem_tiling.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm.o
CC [M] drivers/gpu/drm/xe/xe_vram_freq.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm_move.o
CC [M] drivers/gpu/drm/xe/xe_vsec.o
CC [M] drivers/gpu/drm/xe/xe_wa.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm_pm.o
CC drivers/gpu/drm/i915/gem/i915_gem_userptr.o
CC [M] drivers/gpu/drm/xe/xe_wait_user_fence.o
CC [M] drivers/gpu/drm/xe/xe_wopcm.o
CC drivers/gpu/drm/i915/gem/i915_gem_wait.o
CC drivers/gpu/drm/i915/gem/i915_gemfs.o
CC [M] drivers/gpu/drm/xe/xe_hmm.o
CC drivers/gpu/drm/i915/i915_active.o
CC [M] drivers/gpu/drm/xe/xe_hwmon.o
CC drivers/gpu/drm/i915/i915_cmd_parser.o
LD [M] drivers/gpu/drm/drm_suballoc_helper.o
CC [M] drivers/gpu/drm/xe/xe_pmu.o
CC drivers/gpu/drm/i915/i915_deps.o
CC drivers/gpu/drm/i915/i915_gem.o
CC [M] drivers/gpu/drm/xe/xe_gt_sriov_vf.o
CC drivers/gpu/drm/i915/i915_gem_evict.o
LD [M] drivers/gpu/drm/drm_ttm_helper.o
CC [M] drivers/gpu/drm/xe/xe_guc_relay.o
CC drivers/gpu/drm/i915/i915_gem_gtt.o
CC [M] drivers/gpu/drm/xe/xe_memirq.o
CC drivers/gpu/drm/i915/i915_gem_ww.o
CC drivers/gpu/drm/i915/i915_query.o
CC [M] drivers/gpu/drm/xe/xe_sriov.o
CC [M] drivers/gpu/drm/xe/xe_sriov_vf.o
CC drivers/gpu/drm/i915/i915_request.o
CC [M] drivers/gpu/drm/xe/xe_tile_sriov_vf.o
CC drivers/gpu/drm/i915/i915_scheduler.o
CC [M] drivers/gpu/drm/xe/display/ext/i915_irq.o
CC [M] drivers/gpu/drm/xe/display/ext/i915_utils.o
CC [M] drivers/gpu/drm/xe/display/intel_bo.o
CC drivers/gpu/drm/i915/i915_trace_points.o
CC [M] drivers/gpu/drm/xe/display/intel_fb_bo.o
CC drivers/gpu/drm/i915/i915_ttm_buddy_manager.o
CC [M] drivers/gpu/drm/xe/display/intel_fbdev_fb.o
CC drivers/gpu/drm/i915/i915_vma.o
CC drivers/gpu/drm/i915/i915_vma_resource.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.o
AR fs/built-in.a
CC [M] drivers/gpu/drm/xe/display/xe_display.o
CC [M] drivers/gpu/drm/xe/display/xe_display_misc.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc_debugfs.o
CC [M] drivers/gpu/drm/xe/display/xe_display_rpm.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc_heci_cmd_submit.o
CC [M] drivers/gpu/drm/xe/display/xe_display_wa.o
CC [M] drivers/gpu/drm/xe/display/xe_dsb_buffer.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc.o
CC [M] drivers/gpu/drm/xe/display/xe_fb_pin.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_ads.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_capture.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_ct.o
CC [M] drivers/gpu/drm/xe/display/xe_hdcp_gsc.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.o
CC [M] drivers/gpu/drm/xe/display/xe_plane_initial.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.o
CC [M] drivers/gpu/drm/xe/display/xe_tdf.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_dram.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_log.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_rom.o
CC [M] drivers/gpu/drm/xe/i915-display/icl_dsi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_alpm.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_atomic.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_rc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_atomic_plane.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_audio.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_backlight.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_bios.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_submission.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cdclk.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc_fw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cmtg.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_color.o
CC drivers/gpu/drm/i915/gt/intel_gsc.o
CC drivers/gpu/drm/i915/i915_hwmon.o
CC drivers/gpu/drm/i915/display/hsw_ips.o
CC drivers/gpu/drm/i915/display/i9xx_plane.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_combo_phy.o
CC drivers/gpu/drm/i915/display/i9xx_display_sr.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_connector.o
CC drivers/gpu/drm/i915/display/i9xx_wm.o
CC drivers/gpu/drm/i915/display/intel_alpm.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_crtc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_crtc_state_dump.o
CC drivers/gpu/drm/i915/display/intel_atomic.o
CC drivers/gpu/drm/i915/display/intel_atomic_plane.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cursor.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cx0_phy.o
CC drivers/gpu/drm/i915/display/intel_audio.o
CC drivers/gpu/drm/i915/display/intel_bios.o
CC drivers/gpu/drm/i915/display/intel_bo.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_ddi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_ddi_buf_trans.o
CC drivers/gpu/drm/i915/display/intel_bw.o
CC drivers/gpu/drm/i915/display/intel_cdclk.o
CC drivers/gpu/drm/i915/display/intel_cmtg.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_conversion.o
CC drivers/gpu/drm/i915/display/intel_color.o
CC drivers/gpu/drm/i915/display/intel_combo_phy.o
CC drivers/gpu/drm/i915/display/intel_connector.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_device.o
CC drivers/gpu/drm/i915/display/intel_crtc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_driver.o
CC drivers/gpu/drm/i915/display/intel_crtc_state_dump.o
CC drivers/gpu/drm/i915/display/intel_cursor.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_irq.o
CC drivers/gpu/drm/i915/display/intel_display.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_params.o
CC drivers/gpu/drm/i915/display/intel_display_conversion.o
CC drivers/gpu/drm/i915/display/intel_display_driver.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power.o
CC drivers/gpu/drm/i915/display/intel_display_irq.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power_map.o
CC drivers/gpu/drm/i915/display/intel_display_params.o
CC drivers/gpu/drm/i915/display/intel_display_power.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power_well.o
CC drivers/gpu/drm/i915/display/intel_display_power_map.o
CC drivers/gpu/drm/i915/display/intel_display_power_well.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_trace.o
CC drivers/gpu/drm/i915/display/intel_display_reset.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_wa.o
CC drivers/gpu/drm/i915/display/intel_display_rpm.o
CC drivers/gpu/drm/i915/display/intel_display_rps.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dkl_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dmc.o
CC drivers/gpu/drm/i915/display/intel_display_snapshot.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dmc_wl.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_aux.o
CC drivers/gpu/drm/i915/display/intel_display_wa.o
CC drivers/gpu/drm/i915/display/intel_dmc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_aux_backlight.o
CC drivers/gpu/drm/i915/display/intel_dmc_wl.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_hdcp.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_link_training.o
CC drivers/gpu/drm/i915/display/intel_dpio_phy.o
CC drivers/gpu/drm/i915/display/intel_dpll.o
CC drivers/gpu/drm/i915/display/intel_dpll_mgr.o
CC drivers/gpu/drm/i915/display/intel_dpt.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_mst.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_test.o
CC drivers/gpu/drm/i915/display/intel_dpt_common.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpll.o
CC drivers/gpu/drm/i915/display/intel_drrs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpll_mgr.o
CC drivers/gpu/drm/i915/display/intel_dsb.o
CC drivers/gpu/drm/i915/display/intel_dsb_buffer.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpt_common.o
CC drivers/gpu/drm/i915/display/intel_fb.o
CC drivers/gpu/drm/i915/display/intel_fb_bo.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_drrs.o
CC drivers/gpu/drm/i915/display/intel_fb_pin.o
CC drivers/gpu/drm/i915/display/intel_fbc.o
CC drivers/gpu/drm/i915/display/intel_fdi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsb.o
CC drivers/gpu/drm/i915/display/intel_fifo_underrun.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi_dcs_backlight.o
CC drivers/gpu/drm/i915/display/intel_frontbuffer.o
CC drivers/gpu/drm/i915/display/intel_global_state.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi_vbt.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_encoder.o
CC drivers/gpu/drm/i915/display/intel_hdcp.o
CC drivers/gpu/drm/i915/display/intel_hdcp_gsc.o
CC drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.o
CC drivers/gpu/drm/i915/display/intel_hotplug.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fb.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fbc.o
CC drivers/gpu/drm/i915/display/intel_hotplug_irq.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fdi.o
CC drivers/gpu/drm/i915/display/intel_hti.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fifo_underrun.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_frontbuffer.o
CC drivers/gpu/drm/i915/display/intel_link_bw.o
CC drivers/gpu/drm/i915/display/intel_load_detect.o
CC drivers/gpu/drm/i915/display/intel_lpe_audio.o
CC drivers/gpu/drm/i915/display/intel_modeset_lock.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_global_state.o
CC drivers/gpu/drm/i915/display/intel_modeset_setup.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_gmbus.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdcp.o
CC drivers/gpu/drm/i915/display/intel_modeset_verify.o
CC drivers/gpu/drm/i915/display/intel_overlay.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdcp_gsc_message.o
CC drivers/gpu/drm/i915/display/intel_pch.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdmi.o
CC drivers/gpu/drm/i915/display/intel_pch_display.o
CC drivers/gpu/drm/i915/display/intel_pch_refclk.o
CC drivers/gpu/drm/i915/display/intel_plane_initial.o
CC drivers/gpu/drm/i915/display/intel_pmdemand.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hotplug.o
CC drivers/gpu/drm/i915/display/intel_psr.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hotplug_irq.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hti.o
CC drivers/gpu/drm/i915/display/intel_quirks.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_link_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_lspcon.o
CC drivers/gpu/drm/i915/display/intel_sbi.o
CC drivers/gpu/drm/i915/display/intel_sprite.o
CC drivers/gpu/drm/i915/display/intel_sprite_uapi.o
CC drivers/gpu/drm/i915/display/intel_tc.o
CC drivers/gpu/drm/i915/display/intel_vblank.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_lock.o
CC drivers/gpu/drm/i915/display/intel_vga.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_setup.o
CC drivers/gpu/drm/i915/display/intel_wm.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_verify.o
CC drivers/gpu/drm/i915/display/skl_scaler.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_panel.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pfit.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pmdemand.o
CC drivers/gpu/drm/i915/display/skl_universal_plane.o
CC drivers/gpu/drm/i915/display/skl_watermark.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pch.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pps.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_psr.o
CC drivers/gpu/drm/i915/display/vlv_sideband.o
CC drivers/gpu/drm/i915/display/intel_acpi.o
CC drivers/gpu/drm/i915/display/intel_opregion.o
CC drivers/gpu/drm/i915/display/intel_display_debugfs.o
CC drivers/gpu/drm/i915/display/intel_display_debugfs_params.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_qp_tables.o
CC drivers/gpu/drm/i915/display/intel_pipe_crc.o
CC drivers/gpu/drm/i915/display/dvo_ch7017.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_quirks.o
CC drivers/gpu/drm/i915/display/dvo_ch7xxx.o
CC drivers/gpu/drm/i915/display/dvo_ivch.o
CC drivers/gpu/drm/i915/display/dvo_ns2501.o
CC drivers/gpu/drm/i915/display/dvo_sil164.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_snps_hdmi_pll.o
CC drivers/gpu/drm/i915/display/dvo_tfp410.o
CC drivers/gpu/drm/i915/display/g4x_dp.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_snps_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_tc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vblank.o
CC drivers/gpu/drm/i915/display/g4x_hdmi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vdsc.o
CC drivers/gpu/drm/i915/display/icl_dsi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vga.o
CC drivers/gpu/drm/i915/display/intel_backlight.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vrr.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_wm.o
CC drivers/gpu/drm/i915/display/intel_crt.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_scaler.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_universal_plane.o
CC drivers/gpu/drm/i915/display/intel_cx0_phy.o
CC drivers/gpu/drm/i915/display/intel_ddi.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_watermark.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_acpi.o
CC drivers/gpu/drm/i915/display/intel_ddi_buf_trans.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_opregion.o
CC drivers/gpu/drm/i915/display/intel_display_device.o
CC drivers/gpu/drm/i915/display/intel_display_trace.o
CC drivers/gpu/drm/i915/display/intel_dkl_phy.o
CC [M] drivers/gpu/drm/xe/xe_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dp.o
CC [M] drivers/gpu/drm/xe/xe_gt_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dp_aux.o
CC [M] drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dp_aux_backlight.o
CC drivers/gpu/drm/i915/display/intel_dp_hdcp.o
CC [M] drivers/gpu/drm/xe/xe_gt_stats.o
CC [M] drivers/gpu/drm/xe/xe_guc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dp_link_training.o
CC [M] drivers/gpu/drm/xe/xe_huc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dp_mst.o
CC [M] drivers/gpu/drm/xe/xe_uc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dp_test.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_debugfs.o
CC drivers/gpu/drm/i915/display/intel_dsi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_debugfs_params.o
CC drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.o
CC drivers/gpu/drm/i915/display/intel_dsi_vbt.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pipe_crc.o
CC drivers/gpu/drm/i915/display/intel_dvo.o
CC drivers/gpu/drm/i915/display/intel_encoder.o
CC drivers/gpu/drm/i915/display/intel_gmbus.o
CC drivers/gpu/drm/i915/display/intel_hdmi.o
CC drivers/gpu/drm/i915/display/intel_lspcon.o
CC drivers/gpu/drm/i915/display/intel_lvds.o
CC drivers/gpu/drm/i915/display/intel_panel.o
CC drivers/gpu/drm/i915/display/intel_pfit.o
CC drivers/gpu/drm/i915/display/intel_pps.o
CC drivers/gpu/drm/i915/display/intel_qp_tables.o
CC drivers/gpu/drm/i915/display/intel_sdvo.o
CC drivers/gpu/drm/i915/display/intel_snps_hdmi_pll.o
CC drivers/gpu/drm/i915/display/intel_snps_phy.o
CC drivers/gpu/drm/i915/display/intel_tv.o
CC drivers/gpu/drm/i915/display/intel_vdsc.o
CC drivers/gpu/drm/i915/display/intel_vrr.o
CC drivers/gpu/drm/i915/display/vlv_dsi.o
CC drivers/gpu/drm/i915/display/vlv_dsi_pll.o
CC drivers/gpu/drm/i915/i915_perf.o
CC drivers/gpu/drm/i915/pxp/intel_pxp.o
CC drivers/gpu/drm/i915/pxp/intel_pxp_huc.o
CC drivers/gpu/drm/i915/pxp/intel_pxp_tee.o
CC drivers/gpu/drm/i915/i915_gpu_error.o
CC drivers/gpu/drm/i915/i915_vgpu.o
LD [M] drivers/gpu/drm/xe/xe.o
AR drivers/gpu/drm/i915/built-in.a
AR drivers/gpu/drm/built-in.a
AR drivers/gpu/built-in.a
AR drivers/built-in.a
AR built-in.a
AR vmlinux.a
LD vmlinux.o
OBJCOPY modules.builtin.modinfo
GEN modules.builtin
MODPOST Module.symvers
CC .vmlinux.export.o
CC [M] fs/efivarfs/efivarfs.mod.o
CC [M] .module-common.o
CC [M] drivers/gpu/drm/drm_exec.mod.o
CC [M] drivers/gpu/drm/drm_gpuvm.mod.o
CC [M] drivers/gpu/drm/drm_suballoc_helper.mod.o
CC [M] drivers/gpu/drm/drm_ttm_helper.mod.o
CC [M] drivers/gpu/drm/scheduler/gpu-sched.mod.o
CC [M] drivers/gpu/drm/xe/xe.mod.o
CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.mod.o
CC [M] net/netfilter/nf_log_syslog.mod.o
CC [M] net/netfilter/xt_mark.mod.o
CC [M] net/netfilter/xt_nat.mod.o
CC [M] net/netfilter/xt_LOG.mod.o
CC [M] net/netfilter/xt_MASQUERADE.mod.o
CC [M] net/netfilter/xt_addrtype.mod.o
CC [M] net/ipv4/netfilter/iptable_nat.mod.o
LD [M] drivers/gpu/drm/drm_exec.ko
LD [M] drivers/gpu/drm/drm_ttm_helper.ko
LD [M] net/netfilter/xt_mark.ko
LD [M] net/netfilter/xt_MASQUERADE.ko
LD [M] drivers/gpu/drm/drm_gpuvm.ko
LD [M] net/netfilter/xt_nat.ko
LD [M] net/netfilter/xt_addrtype.ko
LD [M] net/netfilter/xt_LOG.ko
LD [M] drivers/gpu/drm/drm_suballoc_helper.ko
LD [M] drivers/thermal/intel/x86_pkg_temp_thermal.ko
LD [M] fs/efivarfs/efivarfs.ko
LD [M] drivers/gpu/drm/xe/xe.ko
LD [M] drivers/gpu/drm/scheduler/gpu-sched.ko
LD [M] net/ipv4/netfilter/iptable_nat.ko
LD [M] net/netfilter/nf_log_syslog.ko
UPD include/generated/utsversion.h
CC init/version-timestamp.o
KSYMS .tmp_vmlinux0.kallsyms.S
AS .tmp_vmlinux0.kallsyms.o
LD .tmp_vmlinux1
NM .tmp_vmlinux1.syms
KSYMS .tmp_vmlinux1.kallsyms.S
AS .tmp_vmlinux1.kallsyms.o
LD .tmp_vmlinux2
NM .tmp_vmlinux2.syms
KSYMS .tmp_vmlinux2.kallsyms.S
AS .tmp_vmlinux2.kallsyms.o
LD vmlinux.unstripped
NM System.map
SORTTAB vmlinux.unstripped
RSTRIP vmlinux
CC arch/x86/boot/a20.o
AS arch/x86/boot/bioscall.o
CC arch/x86/boot/cmdline.o
AS arch/x86/boot/copy.o
HOSTCC arch/x86/boot/mkcpustr
CC arch/x86/boot/cpuflags.o
CC arch/x86/boot/cpucheck.o
CC arch/x86/boot/early_serial_console.o
CC arch/x86/boot/edd.o
CC arch/x86/boot/main.o
CC arch/x86/boot/memory.o
CC arch/x86/boot/pm.o
AS arch/x86/boot/pmjump.o
CC arch/x86/boot/printf.o
CC arch/x86/boot/regs.o
CC arch/x86/boot/string.o
CC arch/x86/boot/tty.o
CC arch/x86/boot/video.o
CC arch/x86/boot/video-mode.o
CC arch/x86/boot/version.o
CC arch/x86/boot/video-vga.o
CC arch/x86/boot/video-vesa.o
CC arch/x86/boot/video-bios.o
LDS arch/x86/boot/compressed/vmlinux.lds
AS arch/x86/boot/compressed/kernel_info.o
AS arch/x86/boot/compressed/head_32.o
VOFFSET arch/x86/boot/compressed/../voffset.h
CC arch/x86/boot/compressed/string.o
CC arch/x86/boot/compressed/cmdline.o
CC arch/x86/boot/compressed/error.o
OBJCOPY arch/x86/boot/compressed/vmlinux.bin
RELOCS arch/x86/boot/compressed/vmlinux.relocs
HOSTCC arch/x86/boot/compressed/mkpiggy
CC arch/x86/boot/compressed/cpuflags.o
CC arch/x86/boot/compressed/early_serial_console.o
CC arch/x86/boot/compressed/kaslr.o
CC arch/x86/boot/compressed/acpi.o
CC arch/x86/boot/compressed/efi.o
CPUSTR arch/x86/boot/cpustr.h
CC arch/x86/boot/cpu.o
GZIP arch/x86/boot/compressed/vmlinux.bin.gz
CC arch/x86/boot/compressed/misc.o
MKPIGGY arch/x86/boot/compressed/piggy.S
AS arch/x86/boot/compressed/piggy.o
LD arch/x86/boot/compressed/vmlinux
ZOFFSET arch/x86/boot/zoffset.h
OBJCOPY arch/x86/boot/vmlinux.bin
AS arch/x86/boot/header.o
LD arch/x86/boot/setup.elf
OBJCOPY arch/x86/boot/setup.bin
BUILD arch/x86/boot/bzImage
Kernel: arch/x86/boot/bzImage is ready (#1)
run-parts: executing /workspace/ci/hooks/20-kernel-doc
+ SRC_DIR=/workspace/kernel
+ cd /workspace/kernel
+ find drivers/gpu/drm/xe/ -name '*.[ch]' -not -path 'drivers/gpu/drm/xe/display/*'
+ xargs ./scripts/kernel-doc -Werror -none include/uapi/drm/xe_drm.h
All hooks done
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ CI.checksparse: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (15 preceding siblings ...)
2025-06-05 22:50 ` ✓ CI.Hooks: " Patchwork
@ 2025-06-05 22:52 ` Patchwork
2025-06-05 23:52 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 22:52 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 832a676ed68901ea8c404d8602381cd8ca413e88
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
Okay!
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ Xe.CI.BAT: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (16 preceding siblings ...)
2025-06-05 22:52 ` ✓ CI.checksparse: " Patchwork
@ 2025-06-05 23:52 ` Patchwork
2025-06-07 19:17 ` ✓ Xe.CI.Full: " Patchwork
2025-06-08 4:22 ` ✗ Xe.CI.Full: failure " Patchwork
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-05 23:52 UTC (permalink / raw)
To: Michael J. Ruhl; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1083 bytes --]
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
CI Bug Log - changes from xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88_BAT -> xe-pw-149120v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-adlp-vm
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8397 -> IGT_8398
* Linux: xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88 -> xe-pw-149120v3
IGT_8397: 181d409e619a5eff49ede13f058343dbe8acb417 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8398: 82be96b2ac16dd680618f1fd3d3ed073b88da3ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88: 832a676ed68901ea8c404d8602381cd8ca413e88
xe-pw-149120v3: 149120v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/index.html
[-- Attachment #2: Type: text/html, Size: 1645 bytes --]
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage
2025-06-05 18:44 ` [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage Michael J. Ruhl
@ 2025-06-06 17:54 ` David E. Box
2025-06-06 19:20 ` Ruhl, Michael J
0 siblings, 1 reply; 36+ messages in thread
From: David E. Box @ 2025-06-06 17:54 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
Cc: stable
Hi Mike,
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> The use of an endpoint has introduced a dependency in all class/pmt
> drivers to have an endpoint allocated.
>
> The telemetry driver has this allocation, the crashlog does not.
>
> The current usage is very telemetry focused, but should be common code.
The endpoint exists specifically to support the exported APIs in the telemetry
driver. It's reference-counted via kref to ensure safe cleanup once all API
consumers are done. Unless the kernel needs to invoke a crashlog API through
this mechanism, I’m not sure this change is necessary. I’ll go through the rest
of the patches to understand how the endpoint is being used, but my initial
reaction is that is not be needed.
>
> With this in mind:
> rename the struct telemetry_endpoint to struct class_endpoint,
> refactor the common endpoint code to be in the class.c module
>
> Fixes: 416eeb2e1fc7 ("platform/x86/intel/pmt: telemetry: Export API to read
> telemetry")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmc/core.c | 3 +-
> drivers/platform/x86/intel/pmc/core.h | 4 +-
> drivers/platform/x86/intel/pmc/core_ssram.c | 2 +-
> drivers/platform/x86/intel/pmt/class.c | 45 ++++++++++++++++++
> drivers/platform/x86/intel/pmt/class.h | 21 +++++++--
> drivers/platform/x86/intel/pmt/telemetry.c | 51 ++++-----------------
> drivers/platform/x86/intel/pmt/telemetry.h | 23 ++++------
> 7 files changed, 84 insertions(+), 65 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmc/core.c
> b/drivers/platform/x86/intel/pmc/core.c
> index 7a1d11f2914f..805f56665d1d 100644
> --- a/drivers/platform/x86/intel/pmc/core.c
> +++ b/drivers/platform/x86/intel/pmc/core.c
> @@ -29,6 +29,7 @@
> #include <asm/tsc.h>
>
> #include "core.h"
> +#include "../pmt/class.h"
> #include "../pmt/telemetry.h"
>
> /* Maximum number of modes supported by platfoms that has low power mode
> capability */
> @@ -1198,7 +1199,7 @@ int get_primary_reg_base(struct pmc *pmc)
>
> void pmc_core_punit_pmt_init(struct pmc_dev *pmcdev, u32 guid)
> {
> - struct telem_endpoint *ep;
> + struct class_endpoint *ep;
I'd name it pmt_endpoint instead of class_endpoint.
> struct pci_dev *pcidev;
>
> pcidev = pci_get_domain_bus_and_slot(0, 0, PCI_DEVFN(10, 0));
> diff --git a/drivers/platform/x86/intel/pmc/core.h
> b/drivers/platform/x86/intel/pmc/core.h
> index 945a1c440cca..1c12ea7c3ce3 100644
> --- a/drivers/platform/x86/intel/pmc/core.h
> +++ b/drivers/platform/x86/intel/pmc/core.h
> @@ -16,7 +16,7 @@
> #include <linux/bits.h>
> #include <linux/platform_device.h>
>
> -struct telem_endpoint;
> +struct class_endpoint;
>
> #define SLP_S0_RES_COUNTER_MASK GENMASK(31, 0)
>
> @@ -432,7 +432,7 @@ struct pmc_dev {
>
> bool has_die_c6;
> u32 die_c6_offset;
> - struct telem_endpoint *punit_ep;
> + struct class_endpoint *punit_ep;
> struct pmc_info *regmap_list;
> };
>
> diff --git a/drivers/platform/x86/intel/pmc/core_ssram.c
> b/drivers/platform/x86/intel/pmc/core_ssram.c
> index 739569803017..3e670fc380a5 100644
> --- a/drivers/platform/x86/intel/pmc/core_ssram.c
> +++ b/drivers/platform/x86/intel/pmc/core_ssram.c
> @@ -42,7 +42,7 @@ static u32 pmc_core_find_guid(struct pmc_info *list, const
> struct pmc_reg_map *m
>
> static int pmc_core_get_lpm_req(struct pmc_dev *pmcdev, struct pmc *pmc)
> {
> - struct telem_endpoint *ep;
> + struct class_endpoint *ep;
> const u8 *lpm_indices;
> int num_maps, mode_offset = 0;
> int ret, mode;
> diff --git a/drivers/platform/x86/intel/pmt/class.c
> b/drivers/platform/x86/intel/pmt/class.c
> index 7233b654bbad..bba552131bc2 100644
> --- a/drivers/platform/x86/intel/pmt/class.c
> +++ b/drivers/platform/x86/intel/pmt/class.c
> @@ -76,6 +76,47 @@ int pmt_telem_read_mmio(struct pci_dev *pdev, struct
> pmt_callbacks *cb, u32 guid
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_read_mmio, "INTEL_PMT");
>
> +/* Called when all users unregister and the device is removed */
> +static void pmt_class_ep_release(struct kref *kref)
> +{
> + struct class_endpoint *ep;
> +
> + ep = container_of(kref, struct class_endpoint, kref);
> + kfree(ep);
> +}
> +
> +void intel_pmt_release_endpoint(struct class_endpoint *ep)
> +{
> + kref_put(&ep->kref, pmt_class_ep_release);
> +}
> +EXPORT_SYMBOL_NS_GPL(intel_pmt_release_endpoint, "INTEL_PMT");
> +
> +int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
> + struct intel_pmt_entry *entry)
> +{
> + struct class_endpoint *ep;
> +
> + ep = kzalloc(sizeof(*ep), GFP_KERNEL);
> + if (!ep)
> + return -ENOMEM;
> +
> + ep->pcidev = ivdev->pcidev;
> + ep->header.access_type = entry->header.access_type;
> + ep->header.guid = entry->header.guid;
> + ep->header.base_offset = entry->header.base_offset;
> + ep->header.size = entry->header.size;
> + ep->base = entry->base;
> + ep->present = true;
> + ep->cb = ivdev->priv_data;
> +
> + /* Endpoint lifetimes are managed by kref, not devres */
> + kref_init(&ep->kref);
> +
> + entry->ep = ep;
> +
> + return 0;
> +}
> +EXPORT_SYMBOL_NS_GPL(intel_pmt_add_endpoint, "INTEL_PMT");
> /*
> * sysfs
> */
> @@ -97,6 +138,10 @@ intel_pmt_read(struct file *filp, struct kobject *kobj,
> if (count > entry->size - off)
> count = entry->size - off;
>
> + /* verify endpoint is available */
> + if (!entry->ep)
> + return -ENODEV;
> +
Hmm ...
> count = pmt_telem_read_mmio(entry->ep->pcidev, entry->cb, entry-
> >header.guid, buf,
> entry->base, off, count);
... intel_pmt_read() is only intended to handle sysfs reads, not to access
driver endpoints. But entry->ep is a handle registered by a driver via
pmt_telem_find_and_register_endpoint() which won’t be called unless another
driver explicitly does so. If no driver registers the endpoint, entry->ep will
be NULL, and this read path will dereference it, leading to a NULL pointer bug.
This call to entry->ep->pcidev shouldn't be here. It mistakenly mixes the sysfs
path with the driver API path. Actual use of entry->ep belongs only in the
exported read calls in telemetry.c.
David
>
> diff --git a/drivers/platform/x86/intel/pmt/class.h
> b/drivers/platform/x86/intel/pmt/class.h
> index b2006d57779d..d2d8f9e31c9d 100644
> --- a/drivers/platform/x86/intel/pmt/class.h
> +++ b/drivers/platform/x86/intel/pmt/class.h
> @@ -9,8 +9,6 @@
> #include <linux/err.h>
> #include <linux/io.h>
>
> -#include "telemetry.h"
> -
> /* PMT access types */
> #define ACCESS_BARID 2
> #define ACCESS_LOCAL 3
> @@ -19,11 +17,19 @@
> #define GET_BIR(v) ((v) & GENMASK(2, 0))
> #define GET_ADDRESS(v) ((v) & GENMASK(31, 3))
>
> +struct kref;
> struct pci_dev;
>
> -struct telem_endpoint {
> +struct class_header {
> + u8 access_type;
> + u16 size;
> + u32 guid;
> + u32 base_offset;
> +};
> +
> +struct class_endpoint {
> struct pci_dev *pcidev;
> - struct telem_header header;
> + struct class_header header;
> struct pmt_callbacks *cb;
> void __iomem *base;
> bool present;
> @@ -38,7 +44,7 @@ struct intel_pmt_header {
> };
>
> struct intel_pmt_entry {
> - struct telem_endpoint *ep;
> + struct class_endpoint *ep;
> struct intel_pmt_header header;
> struct bin_attribute pmt_bin_attr;
> struct kobject *kobj;
> @@ -69,4 +75,9 @@ int intel_pmt_dev_create(struct intel_pmt_entry *entry,
> struct intel_vsec_device *dev, int idx);
> void intel_pmt_dev_destroy(struct intel_pmt_entry *entry,
> struct intel_pmt_namespace *ns);
> +
> +int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
> + struct intel_pmt_entry *entry);
> +void intel_pmt_release_endpoint(struct class_endpoint *ep);
> +
> #endif
> diff --git a/drivers/platform/x86/intel/pmt/telemetry.c
> b/drivers/platform/x86/intel/pmt/telemetry.c
> index ac3a9bdf5601..27d09867e6a3 100644
> --- a/drivers/platform/x86/intel/pmt/telemetry.c
> +++ b/drivers/platform/x86/intel/pmt/telemetry.c
> @@ -18,6 +18,7 @@
> #include <linux/overflow.h>
>
> #include "class.h"
> +#include "telemetry.h"
>
> #define TELEM_SIZE_OFFSET 0x0
> #define TELEM_GUID_OFFSET 0x4
> @@ -93,48 +94,14 @@ static int pmt_telem_header_decode(struct intel_pmt_entry
> *entry,
> return 0;
> }
>
> -static int pmt_telem_add_endpoint(struct intel_vsec_device *ivdev,
> - struct intel_pmt_entry *entry)
> -{
> - struct telem_endpoint *ep;
> -
> - /* Endpoint lifetimes are managed by kref, not devres */
> - entry->ep = kzalloc(sizeof(*(entry->ep)), GFP_KERNEL);
> - if (!entry->ep)
> - return -ENOMEM;
> -
> - ep = entry->ep;
> - ep->pcidev = ivdev->pcidev;
> - ep->header.access_type = entry->header.access_type;
> - ep->header.guid = entry->header.guid;
> - ep->header.base_offset = entry->header.base_offset;
> - ep->header.size = entry->header.size;
> - ep->base = entry->base;
> - ep->present = true;
> - ep->cb = ivdev->priv_data;
> -
> - kref_init(&ep->kref);
> -
> - return 0;
> -}
> -
> static DEFINE_XARRAY_ALLOC(telem_array);
> static struct intel_pmt_namespace pmt_telem_ns = {
> .name = "telem",
> .xa = &telem_array,
> .pmt_header_decode = pmt_telem_header_decode,
> - .pmt_add_endpoint = pmt_telem_add_endpoint,
> + .pmt_add_endpoint = intel_pmt_add_endpoint,
> };
>
> -/* Called when all users unregister and the device is removed */
> -static void pmt_telem_ep_release(struct kref *kref)
> -{
> - struct telem_endpoint *ep;
> -
> - ep = container_of(kref, struct telem_endpoint, kref);
> - kfree(ep);
> -}
> -
> unsigned long pmt_telem_get_next_endpoint(unsigned long start)
> {
> struct intel_pmt_entry *entry;
> @@ -155,7 +122,7 @@ unsigned long pmt_telem_get_next_endpoint(unsigned long
> start)
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_get_next_endpoint, "INTEL_PMT_TELEMETRY");
>
> -struct telem_endpoint *pmt_telem_register_endpoint(int devid)
> +struct class_endpoint *pmt_telem_register_endpoint(int devid)
> {
> struct intel_pmt_entry *entry;
> unsigned long index = devid;
> @@ -174,9 +141,9 @@ struct telem_endpoint *pmt_telem_register_endpoint(int
> devid)
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_register_endpoint, "INTEL_PMT_TELEMETRY");
>
> -void pmt_telem_unregister_endpoint(struct telem_endpoint *ep)
> +void pmt_telem_unregister_endpoint(struct class_endpoint *ep)
> {
> - kref_put(&ep->kref, pmt_telem_ep_release);
> + intel_pmt_release_endpoint(ep);
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_unregister_endpoint, "INTEL_PMT_TELEMETRY");
>
> @@ -206,7 +173,7 @@ int pmt_telem_get_endpoint_info(int devid, struct
> telem_endpoint_info *info)
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_get_endpoint_info, "INTEL_PMT_TELEMETRY");
>
> -int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count)
> +int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32 count)
> {
> u32 offset, size;
>
> @@ -226,7 +193,7 @@ int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64
> *data, u32 count)
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_read, "INTEL_PMT_TELEMETRY");
>
> -int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32 count)
> +int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32 count)
> {
> u32 offset, size;
>
> @@ -245,7 +212,7 @@ int pmt_telem_read32(struct telem_endpoint *ep, u32 id,
> u32 *data, u32 count)
> }
> EXPORT_SYMBOL_NS_GPL(pmt_telem_read32, "INTEL_PMT_TELEMETRY");
>
> -struct telem_endpoint *
> +struct class_endpoint *
> pmt_telem_find_and_register_endpoint(struct pci_dev *pcidev, u32 guid, u16
> pos)
> {
> int devid = 0;
> @@ -279,7 +246,7 @@ static void pmt_telem_remove(struct auxiliary_device
> *auxdev)
> for (i = 0; i < priv->num_entries; i++) {
> struct intel_pmt_entry *entry = &priv->entry[i];
>
> - kref_put(&entry->ep->kref, pmt_telem_ep_release);
> + pmt_telem_unregister_endpoint(entry->ep);
> intel_pmt_dev_destroy(entry, &pmt_telem_ns);
> }
> mutex_unlock(&ep_lock);
> diff --git a/drivers/platform/x86/intel/pmt/telemetry.h
> b/drivers/platform/x86/intel/pmt/telemetry.h
> index d45af5512b4e..e987dd32a58a 100644
> --- a/drivers/platform/x86/intel/pmt/telemetry.h
> +++ b/drivers/platform/x86/intel/pmt/telemetry.h
> @@ -2,6 +2,8 @@
> #ifndef _TELEMETRY_H
> #define _TELEMETRY_H
>
> +#include "class.h"
> +
> /* Telemetry types */
> #define PMT_TELEM_TELEMETRY 0
> #define PMT_TELEM_CRASHLOG 1
> @@ -9,16 +11,9 @@
> struct telem_endpoint;
> struct pci_dev;
>
> -struct telem_header {
> - u8 access_type;
> - u16 size;
> - u32 guid;
> - u32 base_offset;
> -};
> -
> struct telem_endpoint_info {
> struct pci_dev *pdev;
> - struct telem_header header;
> + struct class_header header;
> };
>
> /**
> @@ -47,7 +42,7 @@ unsigned long pmt_telem_get_next_endpoint(unsigned long
> start);
> * * endpoint - On success returns pointer to the telemetry endpoint
> * * -ENXIO - telemetry endpoint not found
> */
> -struct telem_endpoint *pmt_telem_register_endpoint(int devid);
> +struct class_endpoint *pmt_telem_register_endpoint(int devid);
>
> /**
> * pmt_telem_unregister_endpoint() - Unregister a telemetry endpoint
> @@ -55,7 +50,7 @@ struct telem_endpoint *pmt_telem_register_endpoint(int
> devid);
> *
> * Decrements the kref usage counter for the endpoint.
> */
> -void pmt_telem_unregister_endpoint(struct telem_endpoint *ep);
> +void pmt_telem_unregister_endpoint(struct class_endpoint *ep);
>
> /**
> * pmt_telem_get_endpoint_info() - Get info for an endpoint from its devid
> @@ -80,8 +75,8 @@ int pmt_telem_get_endpoint_info(int devid, struct
> telem_endpoint_info *info);
> * * endpoint - On success returns pointer to the telemetry endpoint
> * * -ENXIO - telemetry endpoint not found
> */
> -struct telem_endpoint *pmt_telem_find_and_register_endpoint(struct pci_dev
> *pcidev,
> - u32 guid, u16 pos);
> +struct class_endpoint *pmt_telem_find_and_register_endpoint(struct pci_dev
> *pcidev,
> + u32 guid, u16
> pos);
>
> /**
> * pmt_telem_read() - Read qwords from counter sram using sample id
> @@ -101,7 +96,7 @@ struct telem_endpoint
> *pmt_telem_find_and_register_endpoint(struct pci_dev *pcid
> * * -EPIPE - The device was removed during the read. Data written
> * but should be considered invalid.
> */
> -int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count);
> +int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32 count);
>
> /**
> * pmt_telem_read32() - Read qwords from counter sram using sample id
> @@ -121,6 +116,6 @@ int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64
> *data, u32 count);
> * * -EPIPE - The device was removed during the read. Data written
> * but should be considered invalid.
> */
> -int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32
> count);
> +int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32
> count);
>
> #endif
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage
2025-06-06 17:54 ` David E. Box
@ 2025-06-06 19:20 ` Ruhl, Michael J
2025-06-09 17:04 ` David E. Box
0 siblings, 1 reply; 36+ messages in thread
From: Ruhl, Michael J @ 2025-06-06 19:20 UTC (permalink / raw)
To: david.e.box@linux.intel.com, platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, De Marchi, Lucas, Vivi, Rodrigo,
thomas.hellstrom@linux.intel.com, airlied@gmail.com,
simona@ffwll.ch
Cc: stable@vger.kernel.org
>-----Original Message-----
>From: David E. Box <david.e.box@linux.intel.com>
>Sent: Friday, June 6, 2025 1:55 PM
>To: Ruhl, Michael J <michael.j.ruhl@intel.com>; platform-driver-
>x86@vger.kernel.org; intel-xe@lists.freedesktop.org; hdegoede@redhat.com;
>ilpo.jarvinen@linux.intel.com; De Marchi, Lucas <lucas.demarchi@intel.com>;
>Vivi, Rodrigo <rodrigo.vivi@intel.com>; thomas.hellstrom@linux.intel.com;
>airlied@gmail.com; simona@ffwll.ch
>Cc: stable@vger.kernel.org
>Subject: Re: [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage
>
>Hi Mike,
>
>On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
>> The use of an endpoint has introduced a dependency in all class/pmt
>> drivers to have an endpoint allocated.
>>
>> The telemetry driver has this allocation, the crashlog does not.
>>
>> The current usage is very telemetry focused, but should be common code.
>
>The endpoint exists specifically to support the exported APIs in the telemetry
>driver. It's reference-counted via kref to ensure safe cleanup once all API
>consumers are done. Unless the kernel needs to invoke a crashlog API through
>this mechanism, I’m not sure this change is necessary. I’ll go through the rest
>of the patches to understand how the endpoint is being used, but my initial
>reaction is that is not be needed.
>
>
>>
>> With this in mind:
>> rename the struct telemetry_endpoint to struct class_endpoint,
>> refactor the common endpoint code to be in the class.c module
>>
>> Fixes: 416eeb2e1fc7 ("platform/x86/intel/pmt: telemetry: Export API to read
>> telemetry")
>> Cc: <stable@vger.kernel.org>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>> ---
>> drivers/platform/x86/intel/pmc/core.c | 3 +-
>> drivers/platform/x86/intel/pmc/core.h | 4 +-
>> drivers/platform/x86/intel/pmc/core_ssram.c | 2 +-
>> drivers/platform/x86/intel/pmt/class.c | 45 ++++++++++++++++++
>> drivers/platform/x86/intel/pmt/class.h | 21 +++++++--
>> drivers/platform/x86/intel/pmt/telemetry.c | 51 ++++-----------------
>> drivers/platform/x86/intel/pmt/telemetry.h | 23 ++++------
>> 7 files changed, 84 insertions(+), 65 deletions(-)
>>
>> diff --git a/drivers/platform/x86/intel/pmc/core.c
>> b/drivers/platform/x86/intel/pmc/core.c
>> index 7a1d11f2914f..805f56665d1d 100644
>> --- a/drivers/platform/x86/intel/pmc/core.c
>> +++ b/drivers/platform/x86/intel/pmc/core.c
>> @@ -29,6 +29,7 @@
>> #include <asm/tsc.h>
>>
>> #include "core.h"
>> +#include "../pmt/class.h"
>> #include "../pmt/telemetry.h"
>>
>> /* Maximum number of modes supported by platfoms that has low power
>mode
>> capability */
>> @@ -1198,7 +1199,7 @@ int get_primary_reg_base(struct pmc *pmc)
>>
>> void pmc_core_punit_pmt_init(struct pmc_dev *pmcdev, u32 guid)
>> {
>> - struct telem_endpoint *ep;
>> + struct class_endpoint *ep;
>
>I'd name it pmt_endpoint instead of class_endpoint.
Wil do.
>> struct pci_dev *pcidev;
>>
>> pcidev = pci_get_domain_bus_and_slot(0, 0, PCI_DEVFN(10, 0));
>> diff --git a/drivers/platform/x86/intel/pmc/core.h
>> b/drivers/platform/x86/intel/pmc/core.h
>> index 945a1c440cca..1c12ea7c3ce3 100644
>> --- a/drivers/platform/x86/intel/pmc/core.h
>> +++ b/drivers/platform/x86/intel/pmc/core.h
>> @@ -16,7 +16,7 @@
>> #include <linux/bits.h>
>> #include <linux/platform_device.h>
>>
>> -struct telem_endpoint;
>> +struct class_endpoint;
>>
>> #define SLP_S0_RES_COUNTER_MASK GENMASK(31,
>0)
>>
>> @@ -432,7 +432,7 @@ struct pmc_dev {
>>
>> bool has_die_c6;
>> u32 die_c6_offset;
>> - struct telem_endpoint *punit_ep;
>> + struct class_endpoint *punit_ep;
>> struct pmc_info *regmap_list;
>> };
>>
>> diff --git a/drivers/platform/x86/intel/pmc/core_ssram.c
>> b/drivers/platform/x86/intel/pmc/core_ssram.c
>> index 739569803017..3e670fc380a5 100644
>> --- a/drivers/platform/x86/intel/pmc/core_ssram.c
>> +++ b/drivers/platform/x86/intel/pmc/core_ssram.c
>> @@ -42,7 +42,7 @@ static u32 pmc_core_find_guid(struct pmc_info *list,
>const
>> struct pmc_reg_map *m
>>
>> static int pmc_core_get_lpm_req(struct pmc_dev *pmcdev, struct pmc *pmc)
>> {
>> - struct telem_endpoint *ep;
>> + struct class_endpoint *ep;
>> const u8 *lpm_indices;
>> int num_maps, mode_offset = 0;
>> int ret, mode;
>> diff --git a/drivers/platform/x86/intel/pmt/class.c
>> b/drivers/platform/x86/intel/pmt/class.c
>> index 7233b654bbad..bba552131bc2 100644
>> --- a/drivers/platform/x86/intel/pmt/class.c
>> +++ b/drivers/platform/x86/intel/pmt/class.c
>> @@ -76,6 +76,47 @@ int pmt_telem_read_mmio(struct pci_dev *pdev,
>struct
>> pmt_callbacks *cb, u32 guid
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_read_mmio, "INTEL_PMT");
>>
>> +/* Called when all users unregister and the device is removed */
>> +static void pmt_class_ep_release(struct kref *kref)
>> +{
>> + struct class_endpoint *ep;
>> +
>> + ep = container_of(kref, struct class_endpoint, kref);
>> + kfree(ep);
>> +}
>> +
>> +void intel_pmt_release_endpoint(struct class_endpoint *ep)
>> +{
>> + kref_put(&ep->kref, pmt_class_ep_release);
>> +}
>> +EXPORT_SYMBOL_NS_GPL(intel_pmt_release_endpoint, "INTEL_PMT");
>> +
>> +int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
>> + struct intel_pmt_entry *entry)
>> +{
>> + struct class_endpoint *ep;
>> +
>> + ep = kzalloc(sizeof(*ep), GFP_KERNEL);
>> + if (!ep)
>> + return -ENOMEM;
>> +
>> + ep->pcidev = ivdev->pcidev;
>> + ep->header.access_type = entry->header.access_type;
>> + ep->header.guid = entry->header.guid;
>> + ep->header.base_offset = entry->header.base_offset;
>> + ep->header.size = entry->header.size;
>> + ep->base = entry->base;
>> + ep->present = true;
>> + ep->cb = ivdev->priv_data;
>> +
>> + /* Endpoint lifetimes are managed by kref, not devres */
>> + kref_init(&ep->kref);
>> +
>> + entry->ep = ep;
>> +
>> + return 0;
>> +}
>> +EXPORT_SYMBOL_NS_GPL(intel_pmt_add_endpoint, "INTEL_PMT");
>> /*
>> * sysfs
>> */
>> @@ -97,6 +138,10 @@ intel_pmt_read(struct file *filp, struct kobject *kobj,
>> if (count > entry->size - off)
>> count = entry->size - off;
>>
>> + /* verify endpoint is available */
>> + if (!entry->ep)
>> + return -ENODEV;
>> +
>
>Hmm ...
>
>> count = pmt_telem_read_mmio(entry->ep->pcidev, entry->cb, entry-
>> >header.guid, buf,
>> entry->base, off, count);
>
>... intel_pmt_read() is only intended to handle sysfs reads, not to access
>driver endpoints. But entry->ep is a handle registered by a driver via
>pmt_telem_find_and_register_endpoint() which won’t be called unless another
>driver explicitly does so. If no driver registers the endpoint, entry->ep will
>be NULL, and this read path will dereference it, leading to a NULL pointer bug.
>
>This call to entry->ep->pcidev shouldn't be here. It mistakenly mixes the sysfs
>path with the driver API path. Actual use of entry->ep belongs only in the
>exported read calls in telemetry.c.
An additional issue here is that the callback interface requires the pcidev.
Is the pcidev available form a different location? (I am not seeing it...)
Maybe the pcidev * should be moved to the intel_pmt_entry struct?
Thanks,
Mike
>David
>
>>
>> diff --git a/drivers/platform/x86/intel/pmt/class.h
>> b/drivers/platform/x86/intel/pmt/class.h
>> index b2006d57779d..d2d8f9e31c9d 100644
>> --- a/drivers/platform/x86/intel/pmt/class.h
>> +++ b/drivers/platform/x86/intel/pmt/class.h
>> @@ -9,8 +9,6 @@
>> #include <linux/err.h>
>> #include <linux/io.h>
>>
>> -#include "telemetry.h"
>> -
>> /* PMT access types */
>> #define ACCESS_BARID 2
>> #define ACCESS_LOCAL 3
>> @@ -19,11 +17,19 @@
>> #define GET_BIR(v) ((v) & GENMASK(2, 0))
>> #define GET_ADDRESS(v) ((v) & GENMASK(31, 3))
>>
>> +struct kref;
>> struct pci_dev;
>>
>> -struct telem_endpoint {
>> +struct class_header {
>> + u8 access_type;
>> + u16 size;
>> + u32 guid;
>> + u32 base_offset;
>> +};
>> +
>> +struct class_endpoint {
>> struct pci_dev *pcidev;
>> - struct telem_header header;
>> + struct class_header header;
>> struct pmt_callbacks *cb;
>> void __iomem *base;
>> bool present;
>> @@ -38,7 +44,7 @@ struct intel_pmt_header {
>> };
>>
>> struct intel_pmt_entry {
>> - struct telem_endpoint *ep;
>> + struct class_endpoint *ep;
>> struct intel_pmt_header header;
>> struct bin_attribute pmt_bin_attr;
>> struct kobject *kobj;
>> @@ -69,4 +75,9 @@ int intel_pmt_dev_create(struct intel_pmt_entry
>*entry,
>> struct intel_vsec_device *dev, int idx);
>> void intel_pmt_dev_destroy(struct intel_pmt_entry *entry,
>> struct intel_pmt_namespace *ns);
>> +
>> +int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
>> + struct intel_pmt_entry *entry);
>> +void intel_pmt_release_endpoint(struct class_endpoint *ep);
>> +
>> #endif
>> diff --git a/drivers/platform/x86/intel/pmt/telemetry.c
>> b/drivers/platform/x86/intel/pmt/telemetry.c
>> index ac3a9bdf5601..27d09867e6a3 100644
>> --- a/drivers/platform/x86/intel/pmt/telemetry.c
>> +++ b/drivers/platform/x86/intel/pmt/telemetry.c
>> @@ -18,6 +18,7 @@
>> #include <linux/overflow.h>
>>
>> #include "class.h"
>> +#include "telemetry.h"
>>
>> #define TELEM_SIZE_OFFSET 0x0
>> #define TELEM_GUID_OFFSET 0x4
>> @@ -93,48 +94,14 @@ static int pmt_telem_header_decode(struct
>intel_pmt_entry
>> *entry,
>> return 0;
>> }
>>
>> -static int pmt_telem_add_endpoint(struct intel_vsec_device *ivdev,
>> - struct intel_pmt_entry *entry)
>> -{
>> - struct telem_endpoint *ep;
>> -
>> - /* Endpoint lifetimes are managed by kref, not devres */
>> - entry->ep = kzalloc(sizeof(*(entry->ep)), GFP_KERNEL);
>> - if (!entry->ep)
>> - return -ENOMEM;
>> -
>> - ep = entry->ep;
>> - ep->pcidev = ivdev->pcidev;
>> - ep->header.access_type = entry->header.access_type;
>> - ep->header.guid = entry->header.guid;
>> - ep->header.base_offset = entry->header.base_offset;
>> - ep->header.size = entry->header.size;
>> - ep->base = entry->base;
>> - ep->present = true;
>> - ep->cb = ivdev->priv_data;
>> -
>> - kref_init(&ep->kref);
>> -
>> - return 0;
>> -}
>> -
>> static DEFINE_XARRAY_ALLOC(telem_array);
>> static struct intel_pmt_namespace pmt_telem_ns = {
>> .name = "telem",
>> .xa = &telem_array,
>> .pmt_header_decode = pmt_telem_header_decode,
>> - .pmt_add_endpoint = pmt_telem_add_endpoint,
>> + .pmt_add_endpoint = intel_pmt_add_endpoint,
>> };
>>
>> -/* Called when all users unregister and the device is removed */
>> -static void pmt_telem_ep_release(struct kref *kref)
>> -{
>> - struct telem_endpoint *ep;
>> -
>> - ep = container_of(kref, struct telem_endpoint, kref);
>> - kfree(ep);
>> -}
>> -
>> unsigned long pmt_telem_get_next_endpoint(unsigned long start)
>> {
>> struct intel_pmt_entry *entry;
>> @@ -155,7 +122,7 @@ unsigned long
>pmt_telem_get_next_endpoint(unsigned long
>> start)
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_get_next_endpoint,
>"INTEL_PMT_TELEMETRY");
>>
>> -struct telem_endpoint *pmt_telem_register_endpoint(int devid)
>> +struct class_endpoint *pmt_telem_register_endpoint(int devid)
>> {
>> struct intel_pmt_entry *entry;
>> unsigned long index = devid;
>> @@ -174,9 +141,9 @@ struct telem_endpoint
>*pmt_telem_register_endpoint(int
>> devid)
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_register_endpoint,
>"INTEL_PMT_TELEMETRY");
>>
>> -void pmt_telem_unregister_endpoint(struct telem_endpoint *ep)
>> +void pmt_telem_unregister_endpoint(struct class_endpoint *ep)
>> {
>> - kref_put(&ep->kref, pmt_telem_ep_release);
>> + intel_pmt_release_endpoint(ep);
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_unregister_endpoint,
>"INTEL_PMT_TELEMETRY");
>>
>> @@ -206,7 +173,7 @@ int pmt_telem_get_endpoint_info(int devid, struct
>> telem_endpoint_info *info)
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_get_endpoint_info,
>"INTEL_PMT_TELEMETRY");
>>
>> -int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32
>count)
>> +int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32
>count)
>> {
>> u32 offset, size;
>>
>> @@ -226,7 +193,7 @@ int pmt_telem_read(struct telem_endpoint *ep, u32
>id, u64
>> *data, u32 count)
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_read, "INTEL_PMT_TELEMETRY");
>>
>> -int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32
>count)
>> +int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32
>count)
>> {
>> u32 offset, size;
>>
>> @@ -245,7 +212,7 @@ int pmt_telem_read32(struct telem_endpoint *ep,
>u32 id,
>> u32 *data, u32 count)
>> }
>> EXPORT_SYMBOL_NS_GPL(pmt_telem_read32, "INTEL_PMT_TELEMETRY");
>>
>> -struct telem_endpoint *
>> +struct class_endpoint *
>> pmt_telem_find_and_register_endpoint(struct pci_dev *pcidev, u32 guid,
>u16
>> pos)
>> {
>> int devid = 0;
>> @@ -279,7 +246,7 @@ static void pmt_telem_remove(struct
>auxiliary_device
>> *auxdev)
>> for (i = 0; i < priv->num_entries; i++) {
>> struct intel_pmt_entry *entry = &priv->entry[i];
>>
>> - kref_put(&entry->ep->kref, pmt_telem_ep_release);
>> + pmt_telem_unregister_endpoint(entry->ep);
>> intel_pmt_dev_destroy(entry, &pmt_telem_ns);
>> }
>> mutex_unlock(&ep_lock);
>> diff --git a/drivers/platform/x86/intel/pmt/telemetry.h
>> b/drivers/platform/x86/intel/pmt/telemetry.h
>> index d45af5512b4e..e987dd32a58a 100644
>> --- a/drivers/platform/x86/intel/pmt/telemetry.h
>> +++ b/drivers/platform/x86/intel/pmt/telemetry.h
>> @@ -2,6 +2,8 @@
>> #ifndef _TELEMETRY_H
>> #define _TELEMETRY_H
>>
>> +#include "class.h"
>> +
>> /* Telemetry types */
>> #define PMT_TELEM_TELEMETRY 0
>> #define PMT_TELEM_CRASHLOG 1
>> @@ -9,16 +11,9 @@
>> struct telem_endpoint;
>> struct pci_dev;
>>
>> -struct telem_header {
>> - u8 access_type;
>> - u16 size;
>> - u32 guid;
>> - u32 base_offset;
>> -};
>> -
>> struct telem_endpoint_info {
>> struct pci_dev *pdev;
>> - struct telem_header header;
>> + struct class_header header;
>> };
>>
>> /**
>> @@ -47,7 +42,7 @@ unsigned long
>pmt_telem_get_next_endpoint(unsigned long
>> start);
>> * * endpoint - On success returns pointer to the telemetry endpoint
>> * * -ENXIO - telemetry endpoint not found
>> */
>> -struct telem_endpoint *pmt_telem_register_endpoint(int devid);
>> +struct class_endpoint *pmt_telem_register_endpoint(int devid);
>>
>> /**
>> * pmt_telem_unregister_endpoint() - Unregister a telemetry endpoint
>> @@ -55,7 +50,7 @@ struct telem_endpoint
>*pmt_telem_register_endpoint(int
>> devid);
>> *
>> * Decrements the kref usage counter for the endpoint.
>> */
>> -void pmt_telem_unregister_endpoint(struct telem_endpoint *ep);
>> +void pmt_telem_unregister_endpoint(struct class_endpoint *ep);
>>
>> /**
>> * pmt_telem_get_endpoint_info() - Get info for an endpoint from its devid
>> @@ -80,8 +75,8 @@ int pmt_telem_get_endpoint_info(int devid, struct
>> telem_endpoint_info *info);
>> * * endpoint - On success returns pointer to the telemetry endpoint
>> * * -ENXIO - telemetry endpoint not found
>> */
>> -struct telem_endpoint *pmt_telem_find_and_register_endpoint(struct
>pci_dev
>> *pcidev,
>> - u32 guid, u16 pos);
>> +struct class_endpoint *pmt_telem_find_and_register_endpoint(struct
>pci_dev
>> *pcidev,
>> + u32 guid, u16
>> pos);
>>
>> /**
>> * pmt_telem_read() - Read qwords from counter sram using sample id
>> @@ -101,7 +96,7 @@ struct telem_endpoint
>> *pmt_telem_find_and_register_endpoint(struct pci_dev *pcid
>> * * -EPIPE - The device was removed during the read. Data written
>> * but should be considered invalid.
>> */
>> -int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32
>count);
>> +int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32
>count);
>>
>> /**
>> * pmt_telem_read32() - Read qwords from counter sram using sample id
>> @@ -121,6 +116,6 @@ int pmt_telem_read(struct telem_endpoint *ep, u32
>id, u64
>> *data, u32 count);
>> * * -EPIPE - The device was removed during the read. Data written
>> * but should be considered invalid.
>> */
>> -int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32
>> count);
>> +int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32
>> count);
>>
>> #endif
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 02/11] platform/x86/intel/pmt: crashlog binary file endpoint
2025-06-05 18:44 ` [PATCH v3 02/11] platform/x86/intel/pmt: crashlog binary file endpoint Michael J. Ruhl
@ 2025-06-06 19:54 ` David E. Box
0 siblings, 0 replies; 36+ messages in thread
From: David E. Box @ 2025-06-06 19:54 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
Cc: stable
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> Usage of the intel_pmt_read() for binary sysfs, requires an allocated
> endpoint struct. The crashlog driver does not allocate the endpoint.
>
> Without the ep, the crashlog usage causes the following NULL pointer
> exception:
>
> BUG: kernel NULL pointer dereference, address: 0000000000000000
Okay, there it is. I'll still review the rest to see if the endpoint is even
needed, but if not then you could drop this patch too.
David
> Oops: Oops: 0000 [#1] SMP NOPTI
> RIP: 0010:intel_pmt_read+0x3b/0x70 [pmt_class]
> Code:
> Call Trace:
> <TASK>
> ? sysfs_kf_bin_read+0xc0/0xe0
> kernfs_fop_read_iter+0xac/0x1a0
> vfs_read+0x26d/0x350
> ksys_read+0x6b/0xe0
> __x64_sys_read+0x1d/0x30
> x64_sys_call+0x1bc8/0x1d70
> do_syscall_64+0x6d/0x110
>
> Add the endpoint information to the crashlog driver to avoid the NULL
> pointer exception.
>
> Fixes: 416eeb2e1fc7 ("platform/x86/intel/pmt: telemetry: Export API to read
> telemetry")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index 6a9eb3c4b313..74ce199e59f0 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -252,6 +252,7 @@ static struct intel_pmt_namespace pmt_crashlog_ns = {
> .xa = &crashlog_array,
> .attr_grp = &pmt_crashlog_group,
> .pmt_header_decode = pmt_crashlog_header_decode,
> + .pmt_add_endpoint = intel_pmt_add_endpoint,
> };
>
> /*
> @@ -262,8 +263,12 @@ static void pmt_crashlog_remove(struct auxiliary_device
> *auxdev)
> struct pmt_crashlog_priv *priv = auxiliary_get_drvdata(auxdev);
> int i;
>
> - for (i = 0; i < priv->num_entries; i++)
> - intel_pmt_dev_destroy(&priv->entry[i].entry,
> &pmt_crashlog_ns);
> + for (i = 0; i < priv->num_entries; i++) {
> + struct intel_pmt_entry *entry = &priv->entry[i].entry;
> +
> + intel_pmt_release_endpoint(entry->ep);
> + intel_pmt_dev_destroy(entry, &pmt_crashlog_ns);
> + }
> }
>
> static int pmt_crashlog_probe(struct auxiliary_device *auxdev,
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing
2025-06-05 18:44 ` [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing Michael J. Ruhl
@ 2025-06-06 21:12 ` David E. Box
2025-06-09 14:41 ` Ruhl, Michael J
0 siblings, 1 reply; 36+ messages in thread
From: David E. Box @ 2025-06-06 21:12 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> The intel_vsec_header information for the crashlog feature is
> incorrect.
>
> Update the VSEC header with correct sizing and count.
>
> Since the crashlog entries are "merged" (num_entries = 2), the
> separate capabilities entries must be merged as well.
>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Fixes tag?
David
> ---
> drivers/gpu/drm/xe/xe_vsec.c | 20 +++++---------------
> 1 file changed, 5 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vsec.c b/drivers/gpu/drm/xe/xe_vsec.c
> index 3e573b0b7ebd..67238fc57a4d 100644
> --- a/drivers/gpu/drm/xe/xe_vsec.c
> +++ b/drivers/gpu/drm/xe/xe_vsec.c
> @@ -32,28 +32,18 @@ static struct intel_vsec_header bmg_telemetry = {
> .offset = BMG_DISCOVERY_OFFSET,
> };
>
> -static struct intel_vsec_header bmg_punit_crashlog = {
> - .length = 0x10,
> +static struct intel_vsec_header bmg_crashlog = {
> + .length = 0x18,
> .id = VSEC_ID_CRASHLOG,
> - .num_entries = 1,
> - .entry_size = 4,
> + .num_entries = 2,
> + .entry_size = 6,
> .tbir = 0,
> .offset = BMG_DISCOVERY_OFFSET + 0x60,
> };
>
> -static struct intel_vsec_header bmg_oobmsm_crashlog = {
> - .length = 0x10,
> - .id = VSEC_ID_CRASHLOG,
> - .num_entries = 1,
> - .entry_size = 4,
> - .tbir = 0,
> - .offset = BMG_DISCOVERY_OFFSET + 0x78,
> -};
> -
> static struct intel_vsec_header *bmg_capabilities[] = {
> &bmg_telemetry,
> - &bmg_punit_crashlog,
> - &bmg_oobmsm_crashlog,
> + &bmg_crashlog,
> NULL
> };
>
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 04/11] platform/x86/intel/pmt: white space cleanup
2025-06-05 18:44 ` [PATCH v3 04/11] platform/x86/intel/pmt: white space cleanup Michael J. Ruhl
@ 2025-06-06 21:14 ` David E. Box
0 siblings, 0 replies; 36+ messages in thread
From: David E. Box @ 2025-06-06 21:14 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> Noticed two white space issues; cleaned them.
>
> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index 74ce199e59f0..e997fc48b9ce 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -143,7 +143,7 @@ enable_show(struct device *dev, struct device_attribute
> *attr, char *buf)
>
> static ssize_t
> enable_store(struct device *dev, struct device_attribute *attr,
> - const char *buf, size_t count)
> + const char *buf, size_t count)
> {
> struct crashlog_entry *entry;
> bool enabled;
> @@ -177,7 +177,7 @@ trigger_show(struct device *dev, struct device_attribute
> *attr, char *buf)
>
> static ssize_t
> trigger_store(struct device *dev, struct device_attribute *attr,
> - const char *buf, size_t count)
> + const char *buf, size_t count)
> {
> struct crashlog_entry *entry;
> bool trigger;
Reviewed-by: David E. Box <david.e.box@linux.intel.com>
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex)
2025-06-05 18:44 ` [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex) Michael J. Ruhl
@ 2025-06-06 21:20 ` David E. Box
2025-06-09 14:42 ` Ruhl, Michael J
0 siblings, 1 reply; 36+ messages in thread
From: David E. Box @ 2025-06-06 21:20 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> Update the mutex paths to use the new guard() mechanism.
>
> With the removal of goto, do some minor cleanup of the current logic
> path.
>
> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 32 +++++++++++------------
> 1 file changed, 15 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index e997fc48b9ce..94858bfb52f8 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -155,9 +155,9 @@ enable_store(struct device *dev, struct device_attribute
> *attr,
> if (result)
> return result;
>
> - mutex_lock(&entry->control_mutex);
> + guard(mutex)(&entry->control_mutex);
> +
> pmt_crashlog_set_disable(&entry->entry, !enabled);
> - mutex_unlock(&entry->control_mutex);
>
> return count;
> }
> @@ -189,26 +189,24 @@ trigger_store(struct device *dev, struct
> device_attribute *attr,
> if (result)
> return result;
>
> - mutex_lock(&entry->control_mutex);
> + guard(mutex)(&entry->control_mutex);
>
> if (!trigger) {
> pmt_crashlog_set_clear(&entry->entry);
> - } else if (pmt_crashlog_complete(&entry->entry)) {
> - /* we cannot trigger a new crash if one is still pending */
> - result = -EEXIST;
> - goto err;
> - } else if (pmt_crashlog_disabled(&entry->entry)) {
> - /* if device is currently disabled, return busy */
> - result = -EBUSY;
> - goto err;
> - } else {
> - pmt_crashlog_set_execute(&entry->entry);
> + return count;
> }
>
> - result = count;
> -err:
> - mutex_unlock(&entry->control_mutex);
> - return result;
> + /* we cannot trigger a new crash if one is still pending */
> + if (pmt_crashlog_complete(&entry->entry))
> + return -EEXIST;
> +
> + /* if device is currently disabled, return busy */
> + if (pmt_crashlog_disabled(&entry->entry))
> + return -EBUSY;
> +
> + pmt_crashlog_set_execute(&entry->entry);
> +
> + return count;
> }
> static DEVICE_ATTR_RW(trigger);
>
Don't see include for cleanup.h. If add then
Reviewed-by: David E. Box <david.e.box@linux.intel.com>
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 06/11] platform/x86/intel/pmt: re-order trigger logic
2025-06-05 18:44 ` [PATCH v3 06/11] platform/x86/intel/pmt: re-order trigger logic Michael J. Ruhl
@ 2025-06-06 21:49 ` David E. Box
0 siblings, 0 replies; 36+ messages in thread
From: David E. Box @ 2025-06-06 21:49 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> Setting the clear bit or checking the complete bit before checking to
> see if crashlog is disabled seems incorrect.
>
> Check disable before accessing any other bits.
>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index 94858bfb52f8..aa3f57fbe018 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -191,6 +191,10 @@ trigger_store(struct device *dev, struct device_attribute
> *attr,
>
> guard(mutex)(&entry->control_mutex);
>
> + /* if device is currently disabled, return busy */
> + if (pmt_crashlog_disabled(&entry->entry))
> + return -EBUSY;
> +
> if (!trigger) {
> pmt_crashlog_set_clear(&entry->entry);
> return count;
> @@ -200,10 +204,6 @@ trigger_store(struct device *dev, struct device_attribute
> *attr,
> if (pmt_crashlog_complete(&entry->entry))
> return -EEXIST;
>
> - /* if device is currently disabled, return busy */
> - if (pmt_crashlog_disabled(&entry->entry))
> - return -EBUSY;
> -
> pmt_crashlog_set_execute(&entry->entry);
>
> return count;
LGTM
Reviewed-by: David E. Box <david.e.box@linux.intel.com>
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 07/11] platform/x86/intel/pmt: correct types
2025-06-05 18:44 ` [PATCH v3 07/11] platform/x86/intel/pmt: correct types Michael J. Ruhl
@ 2025-06-06 21:57 ` David E. Box
0 siblings, 0 replies; 36+ messages in thread
From: David E. Box @ 2025-06-06 21:57 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> A couple of auto variables do not match the return types of some of
> the functions.
>
> Update the mismatched types to match.
>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index aa3f57fbe018..a51923d0be72 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -136,7 +136,7 @@ static ssize_t
> enable_show(struct device *dev, struct device_attribute *attr, char *buf)
> {
> struct intel_pmt_entry *entry = dev_get_drvdata(dev);
> - int enabled = !pmt_crashlog_disabled(entry);
> + bool enabled = !pmt_crashlog_disabled(entry);
>
> return sprintf(buf, "%d\n", enabled);
> }
> @@ -167,7 +167,7 @@ static ssize_t
> trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
> {
> struct intel_pmt_entry *entry;
> - int trigger;
> + bool trigger;
>
> entry = dev_get_drvdata(dev);
> trigger = pmt_crashlog_complete(entry);
Reviewed-by: David E. Box <david.e.box@linux.intel.com>
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct
2025-06-05 18:44 ` [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct Michael J. Ruhl
@ 2025-06-06 22:57 ` David E. Box
2025-06-09 14:43 ` Ruhl, Michael J
0 siblings, 1 reply; 36+ messages in thread
From: David E. Box @ 2025-06-06 22:57 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> In preparation for supporting multiple crashlog versions, use a struct
> to keep bit offset info for the status and control bits.
>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 176 ++++++++++++++--------
> 1 file changed, 112 insertions(+), 64 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index 318d7a21f00e..fe6563721886 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -22,21 +22,6 @@
> /* Crashlog discovery header types */
> #define CRASH_TYPE_OOBMSM 1
>
> -/* Control Flags */
> -#define CRASHLOG_FLAG_DISABLE BIT(28)
> -
> -/*
> - * Bits 29 and 30 control the state of bit 31.
> - *
> - * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured.
> - * Bit 30 will immediately trigger a crashlog to be generated, setting bit
> 31.
> - * Bit 31 is the read-only status with a 1 indicating log is complete.
> - */
> -#define CRASHLOG_FLAG_TRIGGER_CLEAR BIT(29)
> -#define CRASHLOG_FLAG_TRIGGER_EXECUTE BIT(30)
> -#define CRASHLOG_FLAG_TRIGGER_COMPLETE BIT(31)
> -#define CRASHLOG_FLAG_TRIGGER_MASK GENMASK(31, 28)
> -
> /* Crashlog Discovery Header */
> #define CONTROL_OFFSET 0x0
> #define GUID_OFFSET 0x4
> @@ -48,10 +33,63 @@
> /* size is in bytes */
> #define GET_SIZE(v) ((v) * sizeof(u32))
>
> +/*
> + * Type 1 Version 0
> + * status and control registers are combined.
> + *
> + * Bits 29 and 30 control the state of bit 31.
> + * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured.
> + * Bit 30 will immediately trigger a crashlog to be generated, setting bit
> 31.
> + * Bit 31 is the read-only status with a 1 indicating log is complete.
> + */
> +#define TYPE1_VER0_STATUS_OFFSET 0x00
> +#define TYPE1_VER0_CONTROL_OFFSET 0x00
> +
> +#define TYPE1_VER0_DISABLE BIT(28)
> +#define TYPE1_VER0_CLEAR BIT(29)
> +#define TYPE1_VER0_EXECUTE BIT(30)
> +#define TYPE1_VER0_COMPLETE BIT(31)
> +#define TYPE1_VER0_TRIGGER_MASK GENMASK(31, 28)
> +
> +/* After offset, order alphabetically, not bit ordered */
> +struct crashlog_status {
> + u32 offset;
> + u32 clear;
> + u32 complete;
> + u32 disable;
> +};
> +
> +struct crashlog_control {
> + u32 offset;
> + u32 trigger_mask;
> + u32 clear;
> + u32 disable;
> + u32 manual;
> +};
> +
> +struct crashlog_info {
> + struct crashlog_status status;
> + struct crashlog_control control;
> +};
> +
> +const struct crashlog_info crashlog_type1_ver0 = {
> + .status.offset = TYPE1_VER0_STATUS_OFFSET,
> + .status.clear = TYPE1_VER0_CLEAR,
> + .status.complete = TYPE1_VER0_COMPLETE,
> + .status.disable = TYPE1_VER0_DISABLE,
> +
> + .control.offset = TYPE1_VER0_CONTROL_OFFSET,
> + .control.trigger_mask = TYPE1_VER0_TRIGGER_MASK,
> + .control.clear = TYPE1_VER0_CLEAR,
> + .control.disable = TYPE1_VER0_DISABLE,
> + .control.manual = TYPE1_VER0_EXECUTE,
> +};
> +
static?
David
> struct crashlog_entry {
> /* entry must be first member of struct */
> struct intel_pmt_entry entry;
> struct mutex control_mutex;
> + const struct crashlog_info *info;
> };
>
> struct pmt_crashlog_priv {
> @@ -59,74 +97,82 @@ struct pmt_crashlog_priv {
> struct crashlog_entry entry[];
> };
>
> +/*
> + * This is the generic access to a PMT struct. So the use of
> + * struct crashlog_entry
> + * doesn't "make sense" here.
> + */
> +static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
> +{
> + u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
> + u32 crash_type, version;
> +
> + crash_type = GET_TYPE(discovery_header);
> + version = GET_VERSION(discovery_header);
> +
> + /*
> + * Currently we only recognize OOBMSM version 0 devices.
> + * We can ignore all other crashlog devices in the system.
> + */
> + return crash_type == CRASH_TYPE_OOBMSM && version == 0;
> +}
> +
> /*
> * I/O
> */
> +
> #define SET true
> #define CLEAR false
>
> -static void read_modify_write(struct intel_pmt_entry *entry, u32 bit, bool
> set)
> +static void read_modify_write(struct crashlog_entry *crashlog, u32 bit, bool
> set)
> {
> - u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
> + const struct crashlog_control *control = &crashlog->info->control;
> + struct intel_pmt_entry *entry = &crashlog->entry;
> + u32 reg = readl(entry->disc_table + control->offset);
>
> - reg &= ~CRASHLOG_FLAG_TRIGGER_MASK;
> + reg &= ~control->trigger_mask;
>
> if (set)
> reg |= bit;
> else
> reg &= bit;
>
> - writel(reg, entry->disc_table + CONTROL_OFFSET);
> + writel(reg, entry->disc_table + control->offset);
> }
>
> -static bool read_check(struct intel_pmt_entry *entry, u32 bit)
> +static bool read_check(struct crashlog_entry *crashlog, u32 bit)
> {
> - u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
> + const struct crashlog_status *status = &crashlog->info->status;
> + u32 reg = readl(crashlog->entry.disc_table + status->offset);
>
> return !!(reg & bit);
> }
>
> -static bool pmt_crashlog_complete(struct intel_pmt_entry *entry)
> +static bool pmt_crashlog_complete(struct crashlog_entry *crashlog)
> {
> /* return current value of the crashlog complete flag */
> - return read_check(entry, CRASHLOG_FLAG_TRIGGER_COMPLETE);
> + return read_check(crashlog, crashlog->info->status.complete);
> }
>
> -static bool pmt_crashlog_disabled(struct intel_pmt_entry *entry)
> +static bool pmt_crashlog_disabled(struct crashlog_entry *crashlog)
> {
> /* return current value of the crashlog disabled flag */
> - return read_check(entry, CRASHLOG_FLAG_DISABLE);
> -}
> -
> -static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
> -{
> - u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
> - u32 crash_type, version;
> -
> - crash_type = GET_TYPE(discovery_header);
> - version = GET_VERSION(discovery_header);
> -
> - /*
> - * Currently we only recognize OOBMSM version 0 devices.
> - * We can ignore all other crashlog devices in the system.
> - */
> - return crash_type == CRASH_TYPE_OOBMSM && version == 0;
> + return read_check(crashlog, crashlog->info->status.disable);
> }
>
> -static void pmt_crashlog_set_disable(struct intel_pmt_entry *entry,
> - bool disable)
> +static void pmt_crashlog_set_disable(struct crashlog_entry *crashlog, bool
> disable)
> {
> - read_modify_write(entry, CRASHLOG_FLAG_DISABLE, disable);
> + read_modify_write(crashlog, crashlog->info->control.disable,
> disable);
> }
>
> -static void pmt_crashlog_set_clear(struct intel_pmt_entry *entry)
> +static void pmt_crashlog_set_clear(struct crashlog_entry *crashlog)
> {
> - read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_CLEAR, SET);
> + read_modify_write(crashlog, crashlog->info->control.clear, SET);
> }
>
> -static void pmt_crashlog_set_execute(struct intel_pmt_entry *entry)
> +static void pmt_crashlog_set_execute(struct crashlog_entry *crashlog)
> {
> - read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_EXECUTE, SET);
> + read_modify_write(crashlog, crashlog->info->control.manual, SET);
> }
>
> /*
> @@ -135,8 +181,8 @@ static void pmt_crashlog_set_execute(struct
> intel_pmt_entry *entry)
> static ssize_t
> enable_show(struct device *dev, struct device_attribute *attr, char *buf)
> {
> - struct intel_pmt_entry *entry = dev_get_drvdata(dev);
> - bool enabled = !pmt_crashlog_disabled(entry);
> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
> + bool enabled = !pmt_crashlog_disabled(crashlog);
>
> return sprintf(buf, "%d\n", enabled);
> }
> @@ -145,19 +191,19 @@ static ssize_t
> enable_store(struct device *dev, struct device_attribute *attr,
> const char *buf, size_t count)
> {
> - struct crashlog_entry *entry;
> + struct crashlog_entry *crashlog;
> bool enabled;
> int result;
>
> - entry = dev_get_drvdata(dev);
> + crashlog = dev_get_drvdata(dev);
>
> result = kstrtobool(buf, &enabled);
> if (result)
> return result;
>
> - guard(mutex)(&entry->control_mutex);
> + guard(mutex)(&crashlog->control_mutex);
>
> - pmt_crashlog_set_disable(&entry->entry, !enabled);
> + pmt_crashlog_set_disable(crashlog, !enabled);
>
> return count;
> }
> @@ -166,11 +212,11 @@ static DEVICE_ATTR_RW(enable);
> static ssize_t
> trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
> {
> - struct intel_pmt_entry *entry;
> + struct crashlog_entry *crashlog;
> bool trigger;
>
> - entry = dev_get_drvdata(dev);
> - trigger = pmt_crashlog_complete(entry);
> + crashlog = dev_get_drvdata(dev);
> + trigger = pmt_crashlog_complete(crashlog);
>
> return sprintf(buf, "%d\n", trigger);
> }
> @@ -179,32 +225,33 @@ static ssize_t
> trigger_store(struct device *dev, struct device_attribute *attr,
> const char *buf, size_t count)
> {
> - struct crashlog_entry *entry;
> + struct crashlog_entry *crashlog;
> bool trigger;
> int result;
>
> - entry = dev_get_drvdata(dev);
> + crashlog = dev_get_drvdata(dev);
>
> result = kstrtobool(buf, &trigger);
> if (result)
> return result;
>
> - guard(mutex)(&entry->control_mutex);
> + guard(mutex)(&crashlog->control_mutex);
>
> /* if device is currently disabled, return busy */
> - if (pmt_crashlog_disabled(&entry->entry))
> + if (pmt_crashlog_disabled(crashlog))
> return -EBUSY;
>
> if (!trigger) {
> - pmt_crashlog_set_clear(&entry->entry);
> + pmt_crashlog_set_clear(crashlog);
> return count;
> }
>
> /* we cannot trigger a new crash if one is still pending */
> - if (pmt_crashlog_complete(&entry->entry))
> + if (pmt_crashlog_complete(crashlog))
> return -EEXIST;
>
> - pmt_crashlog_set_execute(&entry->entry);
> + pmt_crashlog_set_execute(crashlog);
> +
>
> return count;
> }
> @@ -230,9 +277,10 @@ static int pmt_crashlog_header_decode(struct
> intel_pmt_entry *entry,
> if (!pmt_crashlog_supported(entry))
> return 1;
>
> - /* initialize control mutex */
> + /* initialize the crashlog struct */
> crashlog = container_of(entry, struct crashlog_entry, entry);
> mutex_init(&crashlog->control_mutex);
> + crashlog->info = &crashlog_type1_ver0;
>
> header->access_type = GET_ACCESS(readl(disc_table));
> header->guid = readl(disc_table + GUID_OFFSET);
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog
2025-06-05 18:44 ` [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog Michael J. Ruhl
@ 2025-06-06 23:21 ` David E. Box
2025-06-09 14:45 ` Ruhl, Michael J
0 siblings, 1 reply; 36+ messages in thread
From: David E. Box @ 2025-06-06 23:21 UTC (permalink / raw)
To: Michael J. Ruhl, platform-driver-x86, intel-xe, hdegoede,
ilpo.jarvinen, lucas.demarchi, rodrigo.vivi, thomas.hellstrom,
airlied, simona
On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> The Battlemage GPU has the type 1 version 2 crashlog feature.
>
> Update the crashlog driver to support this crashlog version.
>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/platform/x86/intel/pmt/crashlog.c | 283 ++++++++++++++++++++--
> 1 file changed, 264 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
> b/drivers/platform/x86/intel/pmt/crashlog.c
> index fe6563721886..0fb60036a9bb 100644
> --- a/drivers/platform/x86/intel/pmt/crashlog.c
> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
> @@ -51,20 +51,53 @@
> #define TYPE1_VER0_COMPLETE BIT(31)
> #define TYPE1_VER0_TRIGGER_MASK GENMASK(31, 28)
>
> +/*
> + * Type 1 Version 2
> + * status and control are two different registers
> + */
> +#define TYPE1_VER2_STATUS_OFFSET 0x00
> +#define TYPE1_VER2_CONTROL_OFFSET 0x14
> +
> +/* status register */
> +#define TYPE1_VER2_CLEAR_SUPPORT BIT(20)
> +#define TYPE1_VER2_REARMED BIT(25)
> +#define TYPE1_VER2_ERROR BIT(26)
> +#define TYPE1_VER2_CONSUMED BIT(27)
> +#define TYPE1_VER2_DISABLED BIT(28)
> +#define TYPE1_VER2_CLEARED BIT(29)
> +#define TYPE1_VER2_IN_PROGRESS BIT(30)
> +#define TYPE1_VER2_COMPLETE BIT(31)
> +
> +/* control register */
> +#define TYPE1_VER2_CONSUME BIT(25)
> +#define TYPE1_VER2_REARM BIT(28)
> +#define TYPE1_VER2_EXECUTE BIT(29)
> +#define TYPE1_VER2_CLEAR BIT(30)
> +#define TYPE1_VER2_DISABLE BIT(31)
> +#define TYPE1_VER2_TRIGGER_MASK (TYPE1_VER2_CONSUME |
> TYPE1_VER2_EXECUTE | \
> + TYPE1_VER2_CLEAR |
> TYPE1_VER2_DISABLE)
> +
> /* After offset, order alphabetically, not bit ordered */
> struct crashlog_status {
> u32 offset;
> - u32 clear;
> + u32 clear_supported;
> + u32 cleared;
> u32 complete;
> - u32 disable;
> + u32 consumed;
> + u32 disabled;
> + u32 error;
> + u32 in_progress;
> + u32 rearmed;
> };
Since this struct was just introduced, better to use the intended names in the
original patch to avoid unnecessary churn.
>
> struct crashlog_control {
> u32 offset;
> u32 trigger_mask;
> u32 clear;
> + u32 consume;
> u32 disable;
> u32 manual;
> + u32 rearm;
> };
>
> struct crashlog_info {
> @@ -74,9 +107,9 @@ struct crashlog_info {
>
> const struct crashlog_info crashlog_type1_ver0 = {
> .status.offset = TYPE1_VER0_STATUS_OFFSET,
> - .status.clear = TYPE1_VER0_CLEAR,
> + .status.cleared = TYPE1_VER0_CLEAR,
> .status.complete = TYPE1_VER0_COMPLETE,
> - .status.disable = TYPE1_VER0_DISABLE,
> + .status.disabled = TYPE1_VER0_DISABLE,
>
> .control.offset = TYPE1_VER0_CONTROL_OFFSET,
> .control.trigger_mask = TYPE1_VER0_TRIGGER_MASK,
> @@ -85,6 +118,26 @@ const struct crashlog_info crashlog_type1_ver0 = {
> .control.manual = TYPE1_VER0_EXECUTE,
> };
>
> +const struct crashlog_info crashlog_type1_ver2 = {
> + .status.offset = TYPE1_VER2_STATUS_OFFSET,
> + .status.clear_supported = TYPE1_VER2_CLEAR_SUPPORT,
> + .status.cleared = TYPE1_VER2_CLEARED,
> + .status.complete = TYPE1_VER2_COMPLETE,
> + .status.consumed = TYPE1_VER2_CONSUMED,
> + .status.disabled = TYPE1_VER2_DISABLED,
> + .status.error = TYPE1_VER2_ERROR,
> + .status.in_progress = TYPE1_VER2_IN_PROGRESS,
> + .status.rearmed = TYPE1_VER2_REARMED,
> +
> + .control.offset = TYPE1_VER2_CONTROL_OFFSET,
> + .control.trigger_mask = TYPE1_VER2_TRIGGER_MASK,
> + .control.clear = TYPE1_VER2_CLEAR,
> + .control.consume = TYPE1_VER2_CONSUME,
> + .control.disable = TYPE1_VER2_DISABLE,
> + .control.manual = TYPE1_VER2_EXECUTE,
> + .control.rearm = TYPE1_VER2_REARM,
> +};
> +
> struct crashlog_entry {
> /* entry must be first member of struct */
> struct intel_pmt_entry entry;
> @@ -99,30 +152,35 @@ struct pmt_crashlog_priv {
>
> /*
> * This is the generic access to a PMT struct. So the use of
> - * struct crashlog_entry
> - * doesn't "make sense" here.
> + * struct crashlog_entry
> + * doesn't "make sense" here, i.e. use:
> + * struct intel_pmt_entry
> */
I don't think this comment is needed. Still, this could have been done in the
patch that added it.
> -static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
> +static bool pmt_crashlog_supported(struct intel_pmt_entry *entry, u32
> *crash_type, u32 *version)
> {
> u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
> - u32 crash_type, version;
>
> - crash_type = GET_TYPE(discovery_header);
> - version = GET_VERSION(discovery_header);
> + *crash_type = GET_TYPE(discovery_header);
> + *version = GET_VERSION(discovery_header);
>
> /*
> - * Currently we only recognize OOBMSM version 0 devices.
> - * We can ignore all other crashlog devices in the system.
> + * Currently we only recognize OOBMSM (type 1) and version 0 or 2
> + * devices.
> + *
> + * Ignore all other crashlog devices in the system.
> */
> - return crash_type == CRASH_TYPE_OOBMSM && version == 0;
> + if (*crash_type == CRASH_TYPE_OOBMSM && (*version == 0 || *version ==
> 2))
> + return true;
> +
> + return false;
> }
>
> /*
> * I/O
> */
>
> -#define SET true
> -#define CLEAR false
> +#define SET true
> +#define CLEAR false
Ditto
>
> static void read_modify_write(struct crashlog_entry *crashlog, u32 bit, bool
> set)
> {
> @@ -157,7 +215,7 @@ static bool pmt_crashlog_complete(struct crashlog_entry
> *crashlog)
> static bool pmt_crashlog_disabled(struct crashlog_entry *crashlog)
> {
> /* return current value of the crashlog disabled flag */
> - return read_check(crashlog, crashlog->info->status.disable);
> + return read_check(crashlog, crashlog->info->status.disabled);
> }
>
> static void pmt_crashlog_set_disable(struct crashlog_entry *crashlog, bool
> disable)
> @@ -175,9 +233,119 @@ static void pmt_crashlog_set_execute(struct
> crashlog_entry *crashlog)
> read_modify_write(crashlog, crashlog->info->control.manual, SET);
> }
>
> +/* version 2 support */
> +static bool pmt_crashlog_cleared(struct crashlog_entry *crashlog)
> +{
> + /* return current value of the crashlog cleared flag */
> + return read_check(crashlog, crashlog->info->status.cleared);
> +}
> +
> +static bool pmt_crashlog_consumed(struct crashlog_entry *crashlog)
> +{
> + /* return current value of the crashlog consumedflag */
> + return read_check(crashlog, crashlog->info->status.consumed);
> +}
> +
> +static void pmt_crashlog_set_consumed(struct crashlog_entry *crashlog)
> +{
> + read_modify_write(crashlog, crashlog->info->control.consume, SET);
> +}
> +
> +static bool pmt_crashlog_error(struct crashlog_entry *crashlog)
> +{
> + /* return current value of the crashlog error flag */
> + return read_check(crashlog, crashlog->info->status.error);
> +}
> +
> +static bool pmt_crashlog_rearm(struct crashlog_entry *crashlog)
> +{
> + /* return current value of the crashlog reamed flag */
> + return read_check(crashlog, crashlog->info->status.rearmed);
> +}
> +
> +static void pmt_crashlog_set_rearm(struct crashlog_entry *crashlog)
> +{
> + read_modify_write(crashlog, crashlog->info->control.rearm, SET);
> +}
> +
> /*
> * sysfs
> */
> +static ssize_t
> +clear_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
> + bool cleared = pmt_crashlog_cleared(crashlog);
> +
> + return sysfs_emit(buf, "%d\n", cleared);
> +}
> +
> +static ssize_t
> +clear_store(struct device *dev, struct device_attribute *attr,
> + const char *buf, size_t count)
> +{
> + struct crashlog_entry *crashlog;
> + bool clear;
> + int result;
> +
> + crashlog = dev_get_drvdata(dev);
> +
> + result = kstrtobool(buf, &clear);
> + if (result)
> + return result;
> +
> + /* set bit only */
> + if (!clear)
> + return -EINVAL;
> +
> + guard(mutex)(&crashlog->control_mutex);
> +
> + pmt_crashlog_set_clear(crashlog);
> +
> + return count;
> +}
> +static DEVICE_ATTR_RW(clear);
> +
> +static ssize_t
> +consumed_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
> + bool consumed = pmt_crashlog_consumed(crashlog);
> +
> + return sysfs_emit(buf, "%d\n", consumed);
> +}
> +
> +static ssize_t consumed_store(struct device *dev, struct device_attribute
> *attr,
> + const char *buf, size_t count)
> +{
> + struct crashlog_entry *crashlog;
> + bool consumed;
> + int result;
> +
> + crashlog = dev_get_drvdata(dev);
> +
> + result = kstrtobool(buf, &consumed);
> + if (result)
> + return result;
> +
> + /* set bit only */
> + if (!consumed)
> + return -EINVAL;
> +
> + guard(mutex)(&crashlog->control_mutex);
> +
> + if (pmt_crashlog_disabled(crashlog))
> + return -EBUSY;
> +
> + if (!pmt_crashlog_complete(crashlog))
> + return -EEXIST;
> +
> + pmt_crashlog_set_consumed(crashlog);
> +
> + return count;
> +}
> +static DEVICE_ATTR_RW(consumed);
> +
> static ssize_t
> enable_show(struct device *dev, struct device_attribute *attr, char *buf)
> {
> @@ -209,6 +377,50 @@ enable_store(struct device *dev, struct device_attribute
> *attr,
> }
> static DEVICE_ATTR_RW(enable);
>
> +static ssize_t
> +error_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
> + bool error = pmt_crashlog_error(crashlog);
> +
> + return sysfs_emit(buf, "%d\n", error);
> +}
> +static DEVICE_ATTR_RO(error);
> +
> +static ssize_t
> +rearm_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
> + int rearmed = pmt_crashlog_rearm(crashlog);
> +
> + return sysfs_emit(buf, "%d\n", rearmed);
> +}
> +
> +static ssize_t rearm_store(struct device *dev, struct device_attribute *attr,
> + const char *buf, size_t count)
> +{
> + struct crashlog_entry *crashlog;
> + bool rearm;
> + int result;
> +
> + crashlog = dev_get_drvdata(dev);
> +
> + result = kstrtobool(buf, &rearm);
> + if (result)
> + return result;
> +
> + /* set only */
> + if (!rearm)
> + return -EINVAL;
> +
> + guard(mutex)(&crashlog->control_mutex);
> +
> + pmt_crashlog_set_rearm(crashlog);
> +
> + return count;
> +}
> +static DEVICE_ATTR_RW(rearm);
> +
> static ssize_t
> trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
> {
> @@ -263,24 +475,57 @@ static struct attribute *pmt_crashlog_attrs[] = {
> NULL
> };
>
For what follows ...
>
> +static struct attribute *pmt_crashlog_ver2_attrs[] = {
> + &dev_attr_clear.attr,
> + &dev_attr_consumed.attr,
> + &dev_attr_enable.attr,
> + &dev_attr_error.attr,
> + &dev_attr_rearm.attr,
> + &dev_attr_trigger.attr,
> + NULL
> +};
> +
> static const struct attribute_group pmt_crashlog_group = {
> .attrs = pmt_crashlog_attrs,
> };
>
> +static const struct attribute_group pmt_crashlog_ver2_group = {
> + .attrs = pmt_crashlog_ver2_attrs,
> +};
... I would have the group and attributes both reflect type and version in the
name. Update pmt_crashlog_group as well.
David
> +
> +static const struct crashlog_info *select_crashlog_info(u32 type, u32
> version)
> +{
> + if (version == 0)
> + return &crashlog_type1_ver0;
> +
> + return &crashlog_type1_ver2;
> +}
> +
> +static const struct attribute_group *select_sysfs_grp(u32 type, u32 version)
> +{
> + if (version == 0)
> + return &pmt_crashlog_group;
> +
> + return &pmt_crashlog_ver2_group;
> +}
> +
> static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry,
> struct device *dev)
> {
> void __iomem *disc_table = entry->disc_table;
> struct intel_pmt_header *header = &entry->header;
> struct crashlog_entry *crashlog;
> + u32 version;
> + u32 type;
>
> - if (!pmt_crashlog_supported(entry))
> + if (!pmt_crashlog_supported(entry, &type, &version))
> return 1;
>
> /* initialize the crashlog struct */
> crashlog = container_of(entry, struct crashlog_entry, entry);
> mutex_init(&crashlog->control_mutex);
> - crashlog->info = &crashlog_type1_ver0;
> +
> + crashlog->info = select_crashlog_info(type, version);
>
> header->access_type = GET_ACCESS(readl(disc_table));
> header->guid = readl(disc_table + GUID_OFFSET);
> @@ -289,7 +534,7 @@ static int pmt_crashlog_header_decode(struct
> intel_pmt_entry *entry,
> /* Size is measured in DWORDS, but accessor returns bytes */
> header->size = GET_SIZE(readl(disc_table + SIZE_OFFSET));
>
> - entry->attr_grp = &pmt_crashlog_group;
> + entry->attr_grp = select_sysfs_grp(type, version);
>
> return 0;
> }
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ Xe.CI.Full: success for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (17 preceding siblings ...)
2025-06-05 23:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-07 19:17 ` Patchwork
2025-06-08 4:22 ` ✗ Xe.CI.Full: failure " Patchwork
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-07 19:17 UTC (permalink / raw)
To: Ruhl, Michael J; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1090 bytes --]
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : success
== Summary ==
CI Bug Log - changes from xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88_FULL -> xe-pw-149120v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (0 -> 0)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8397 -> IGT_8398
* Linux: xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88 -> xe-pw-149120v3
IGT_8397: 181d409e619a5eff49ede13f058343dbe8acb417 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8398: 82be96b2ac16dd680618f1fd3d3ed073b88da3ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88: 832a676ed68901ea8c404d8602381cd8ca413e88
xe-pw-149120v3: 149120v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/index.html
[-- Attachment #2: Type: text/html, Size: 1652 bytes --]
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✗ Xe.CI.Full: failure for Crashlog Type1 Version2 support (rev3)
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
` (18 preceding siblings ...)
2025-06-07 19:17 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-06-08 4:22 ` Patchwork
19 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-06-08 4:22 UTC (permalink / raw)
To: Ruhl, Michael J; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 136913 bytes --]
== Series Details ==
Series: Crashlog Type1 Version2 support (rev3)
URL : https://patchwork.freedesktop.org/series/149120/
State : failure
== Summary ==
CI Bug Log - changes from xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88_FULL -> xe-pw-149120v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-149120v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-149120v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (0 -> 4)
------------------------------
Additional (4): shard-bmg shard-dg2-set2 shard-adlp shard-lnl
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-149120v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor-atomic@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic@pipe-b-edp-1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-adlp: NOTRUN -> [FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
Known issues
------------
Here are the changes found in xe-pw-149120v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1125]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@intel_hwmon@hwmon-read.html
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#1125]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1465])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_3d.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#623])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1466])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2233])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#3157])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3157])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-y:
- shard-adlp: NOTRUN -> [DMESG-WARN][12] ([Intel XE#4543]) +3 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-y.html
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][13] ([Intel XE#3884]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#873])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#873])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_async_flips@invalid-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#873])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3768])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3768])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#664])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3279]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2370]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2327]) +22 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#316]) +16 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#619]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#607])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#610]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +58 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3658]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1407]) +26 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#316]) +23 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2328]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1477])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#607])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1428]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#610]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#610]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +59 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1124]) +45 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#619]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1467]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +62 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2191]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2314] / [Intel XE#2894]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#2191]) +9 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2191]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1512]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#367]) +14 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#367]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#367]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#367]) +13 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +84 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#787]) +377 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2907]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2669]) +19 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#455] / [Intel XE#787]) +179 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#3442]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#3442]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#3432]) +9 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][60] ([Intel XE#3862]) +1 other test incomplete
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#787]) +269 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2652] / [Intel XE#787]) +41 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#3432]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455] / [Intel XE#787]) +107 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2887]) +79 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][66] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][67] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#2907]) +9 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#4417] / [Intel XE#455])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#4418])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2724]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#4418])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#4418])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4417]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#4417]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4417]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4416]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_cdclk@plane-scaling.html
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#4416] / [Intel XE#455])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#4416]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#4416]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#306]) +9 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_chamelium_color@ctm-0-25.html
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2325]) +9 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#306]) +9 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#306]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2252]) +56 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#373]) +58 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#373]) +56 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#373]) +45 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#1178]) +2 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2341]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2390]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#307]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#307]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#307]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#1178]) +7 other tests fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#3304])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][97] ([Intel XE#1188]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_content_protection@uevent.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#5176]) +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2320]) +25 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#308]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2321]) +9 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#308]) +8 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2321]) +9 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1424]) +27 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#309]) +24 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#309]) +24 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2291]) +7 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#323]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#323]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#323]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2286]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1508])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4210])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1508]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#4302])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_display_modes@extended-mode-basic.html
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#4302])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_display_modes@extended-mode-basic.html
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4302])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1340])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#4494] / [i915#3804])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_aux_dev:
- shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#3009])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_dp_aux_dev.html
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#3009])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][122] ([Intel XE#4354]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#4354]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#4356]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#4354]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_dp_link_training@uhbr-sst.html
- shard-adlp: NOTRUN -> [SKIP][126] ([Intel XE#4356])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4294])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4294])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#4331]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#4331])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#4331])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#4331])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2244]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2244]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#4422]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#4422]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#4422]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#4422]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#4156]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#776]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_fbcon_fbt@psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#776]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#776]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2372])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#701])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_feature_discovery@chamelium.html
- shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#701])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#702])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_feature_discovery@display-2x.html
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#702])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#703])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_feature_discovery@display-3x.html
- shard-adlp: NOTRUN -> [SKIP][149] ([Intel XE#703])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2373])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#703])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1137])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
- shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#1137])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_feature_discovery@dp-mst.html
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2375])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#1135]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@kms_feature_discovery@psr1.html
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2374]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#1135]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#310]) +35 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2316]) +8 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: NOTRUN -> [FAIL][160] ([Intel XE#3321]) +2 other tests fail
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1421]) +40 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-lnl: NOTRUN -> [TIMEOUT][162] ([Intel XE#1504]) +1 other test timeout
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][163] ([Intel XE#301]) +1 other test fail
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][164] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: NOTRUN -> [DMESG-WARN][165] ([Intel XE#2953] / [Intel XE#4173]) +6 other tests dmesg-warn
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-bmg: NOTRUN -> [INCOMPLETE][166] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1397]) +8 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-lnl: NOTRUN -> [FAIL][168] ([Intel XE#4683]) +3 other tests fail
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2293]) +24 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1401]) +25 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2380]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1397] / [Intel XE#1745]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [FAIL][173] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2293] / [Intel XE#2380]) +24 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1401] / [Intel XE#1745]) +25 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: NOTRUN -> [DMESG-FAIL][176] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#352]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2311]) +138 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][179] ([Intel XE#651]) +76 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#651]) +131 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][181] ([Intel XE#656]) +220 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [DMESG-FAIL][182] ([Intel XE#4543]) +22 other tests dmesg-fail
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#4141]) +66 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#658])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#651]) +81 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][186] ([Intel XE#1151])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#1469]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2352]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2313]) +137 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#1158])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-adlp: NOTRUN -> [SKIP][191] ([Intel XE#1158])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2350])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][193] ([Intel XE#653]) +77 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#2312]) +69 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#653]) +131 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#656]) +228 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#605])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_getfb@getfb-reject-ccs.html
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2502])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_getfb@getfb-reject-ccs.html
- shard-adlp: NOTRUN -> [SKIP][199] ([Intel XE#1341])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#605])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#2340])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_getfb@getfb2-accept-ccs.html
- shard-adlp: NOTRUN -> [SKIP][202] ([Intel XE#1339])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_getfb@getfb2-accept-ccs.html
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#2340])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#1470])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_hdmi_inject@inject-4k.html
- shard-adlp: NOTRUN -> [ABORT][205] ([Intel XE#2953] / [Intel XE#4925])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#1470] / [Intel XE#2853])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#3374] / [Intel XE#3544])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#3374] / [Intel XE#3544])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#1503]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#1503]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#1450]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#346]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html
- shard-adlp: NOTRUN -> [SKIP][214] ([Intel XE#346]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#346]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#346])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#3012])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#2925])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#2927]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_joiner@basic-ultra-joiner.html
- shard-adlp: NOTRUN -> [SKIP][220] ([Intel XE#2927]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#2927]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][222] ([Intel XE#3012]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][223] ([Intel XE#2925]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#2934]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#2934]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][226] ([Intel XE#2927])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][227] ([Intel XE#4090])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#4090])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][229] ([Intel XE#356])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-bmg: NOTRUN -> [SKIP][230] ([Intel XE#2501])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][231] ([Intel XE#356])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][232] ([Intel XE#356])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][233] ([Intel XE#2486])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#4329])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#4329])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-lnl: NOTRUN -> [INCOMPLETE][236] ([Intel XE#4735])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_plane@pixel-format-source-clamping.html
- shard-adlp: NOTRUN -> [INCOMPLETE][237] ([Intel XE#1035]) +1 other test incomplete
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [WARN][238] ([Intel XE#4801])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
- shard-adlp: NOTRUN -> [WARN][239] ([Intel XE#2078]) +3 other tests warn
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][240] ([Intel XE#616]) +3 other tests fail
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#599]) +13 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][242] ([Intel XE#2393]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][243] ([Intel XE#4596]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][244] ([Intel XE#5021]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][245] ([Intel XE#5021])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][246] ([Intel XE#4596]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][247] ([Intel XE#4596]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-adlp: NOTRUN -> [SKIP][248] ([Intel XE#5020]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-x@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][249] ([Intel XE#4658]) +3 other tests fail
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_plane_multiple@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][250] ([Intel XE#5020]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][251] ([Intel XE#5020]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][252] ([Intel XE#5020]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][253] ([Intel XE#3307])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][254] ([Intel XE#2763]) +49 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][255] ([Intel XE#2763]) +24 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][256] ([Intel XE#870]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
- shard-adlp: NOTRUN -> [SKIP][257] ([Intel XE#870]) +4 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][258] ([Intel XE#2938])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-adlp: NOTRUN -> [SKIP][259] ([Intel XE#2938])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][260] ([Intel XE#870]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][261] ([Intel XE#736])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][262] ([Intel XE#1131])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][263] ([Intel XE#3309])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
- shard-lnl: NOTRUN -> [SKIP][264] ([Intel XE#3309])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_pm_dc@dc5-retention-flops.html
- shard-adlp: NOTRUN -> [SKIP][265] ([Intel XE#3309])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][266] ([Intel XE#3309])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: NOTRUN -> [FAIL][267] ([Intel XE#718])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][268] ([Intel XE#2392]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html
- shard-adlp: NOTRUN -> [SKIP][269] ([Intel XE#1129]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: NOTRUN -> [SKIP][270] ([Intel XE#734])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: NOTRUN -> [SKIP][271] ([Intel XE#908])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
- shard-lnl: NOTRUN -> [FAIL][272] ([Intel XE#2029])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
- shard-adlp: NOTRUN -> [SKIP][273] ([Intel XE#2007])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@kms_pm_dc@deep-pkgc.html
- shard-bmg: NOTRUN -> [SKIP][274] ([Intel XE#2505])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][275] ([Intel XE#2499])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][276] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][277] ([Intel XE#1439] / [Intel XE#836])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][278] ([Intel XE#1439] / [Intel XE#836])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][279] ([Intel XE#1439] / [Intel XE#3141]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-adlp: NOTRUN -> [SKIP][280] ([Intel XE#836]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][281] ([Intel XE#1489]) +33 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][282] ([Intel XE#1489]) +45 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][283] ([Intel XE#4608]) +21 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][284] ([Intel XE#2893] / [Intel XE#4608]) +10 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][285] ([Intel XE#2893]) +23 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][286] ([Intel XE#1489]) +45 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][287] ([Intel XE#1128]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][288] ([Intel XE#1122]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][289] ([Intel XE#2387]) +3 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-adlp: NOTRUN -> [SKIP][290] ([Intel XE#1122]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][291] ([Intel XE#2850] / [Intel XE#929]) +63 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][292] ([Intel XE#2234] / [Intel XE#2850]) +80 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][293] ([Intel XE#4609]) +13 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][294] ([Intel XE#1406]) +40 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-suspend:
- shard-adlp: NOTRUN -> [SKIP][295] ([Intel XE#2850] / [Intel XE#929]) +79 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_psr@psr-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][296] ([Intel XE#2414]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2-set2: NOTRUN -> [SKIP][297] ([Intel XE#2939]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-adlp: NOTRUN -> [SKIP][298] ([Intel XE#2939]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-lnl: NOTRUN -> [SKIP][299] ([Intel XE#4692])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-adlp: NOTRUN -> [FAIL][300] ([Intel XE#1874]) +2 other tests fail
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][301] ([Intel XE#3414] / [Intel XE#3904]) +11 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [FAIL][302] ([Intel XE#4689]) +1 other test fail
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][303] ([Intel XE#1127]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][304] ([Intel XE#2330]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][305] ([Intel XE#3414]) +6 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][306] ([Intel XE#1127]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-adlp: NOTRUN -> [SKIP][307] ([Intel XE#1127]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-adlp: NOTRUN -> [SKIP][308] ([Intel XE#3414]) +8 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-bmg: NOTRUN -> [SKIP][309] ([Intel XE#3414] / [Intel XE#3904]) +8 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][310] ([Intel XE#2413]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][311] ([Intel XE#1435]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6-pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][312] ([Intel XE#2883]) +4 other tests fail
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_setmode@basic@pipe-a-hdmi-a-6-pipe-b-dp-4.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][313] ([Intel XE#1435]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-adlp: NOTRUN -> [SKIP][314] ([Intel XE#362]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-bmg: NOTRUN -> [SKIP][315] ([Intel XE#2426]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][316] ([Intel XE#362]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][317] ([Intel XE#330])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][318] ([Intel XE#330])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_tv_load_detect@load-detect.html
- shard-adlp: NOTRUN -> [SKIP][319] ([Intel XE#330])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][320] ([Intel XE#2450])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][321] ([Intel XE#4459]) +1 other test fail
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-suspend:
- shard-adlp: NOTRUN -> [SKIP][322] ([Intel XE#455]) +124 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@kms_vrr@flip-suspend.html
- shard-bmg: NOTRUN -> [SKIP][323] ([Intel XE#1499]) +8 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][324] ([Intel XE#455]) +76 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-adlp: NOTRUN -> [SKIP][325] ([Intel XE#2168]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@kms_vrr@lobf.html
- shard-bmg: NOTRUN -> [SKIP][326] ([Intel XE#2168]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][327] ([Intel XE#2168])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][328] ([Intel XE#1499]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][329] ([Intel XE#1091] / [Intel XE#2849])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-lnl: NOTRUN -> [SKIP][330] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-bmg: NOTRUN -> [SKIP][331] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-adlp: NOTRUN -> [SKIP][332] ([Intel XE#455] / [Intel XE#488]) +5 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_ccs@large-ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][333] ([Intel XE#3576])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@xe_ccs@large-ctrl-surf-copy.html
* igt@xe_compute@ccs-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][334] ([Intel XE#1447]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][335] ([Intel XE#1447]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][336] ([Intel XE#1280] / [Intel XE#455]) +5 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][337] ([Intel XE#5084])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][338] ([Intel XE#1123]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][339] ([Intel XE#1123]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][340] ([Intel XE#1126]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][341] ([Intel XE#1126]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][342] ([Intel XE#1062])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_create@create-big-vram.html
- shard-adlp: NOTRUN -> [SKIP][343] ([Intel XE#1062])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_create@create-big-vram.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][344] ([Intel XE#4497]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][345] ([Intel XE#4497]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_eu_stall@blocking-read.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: NOTRUN -> [SKIP][346] ([Intel XE#4837]) +73 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][347] ([Intel XE#4837]) +54 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][348] ([Intel XE#4837]) +72 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-adlp: NOTRUN -> [SKIP][349] ([Intel XE#4837]) +71 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-dg2-set2: NOTRUN -> [SKIP][350] ([Intel XE#4518])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-lnl: NOTRUN -> [SKIP][351] ([Intel XE#4518]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_eudebug_sriov@deny-sriov.html
- shard-adlp: NOTRUN -> [SKIP][352] ([Intel XE#4519]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_eudebug_sriov@deny-sriov.html
- shard-bmg: NOTRUN -> [SKIP][353] ([Intel XE#4518]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][354] ([Intel XE#688]) +27 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][355] ([Intel XE#261] / [Intel XE#688]) +18 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-adlp: NOTRUN -> [SKIP][356] ([Intel XE#688]) +7 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][357] ([Intel XE#2322]) +47 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-adlp: NOTRUN -> [SKIP][358] ([Intel XE#1392]) +48 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][359] ([Intel XE#1392]) +49 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][360] ([Intel XE#1392]) +5 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-rebind:
- shard-adlp: NOTRUN -> [SKIP][361] ([Intel XE#288]) +138 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][362] ([Intel XE#288]) +110 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][363] ([Intel XE#2360]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-adlp: NOTRUN -> [SKIP][364] ([Intel XE#2360]) +2 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: NOTRUN -> [DMESG-FAIL][365] ([Intel XE#3868])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: NOTRUN -> [DMESG-WARN][366] ([Intel XE#3868])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: NOTRUN -> [DMESG-WARN][367] ([Intel XE#3876])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][368] ([Intel XE#4943]) +126 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-stride-mmap-mlock:
- shard-adlp: NOTRUN -> [SKIP][369] ([Intel XE#4915]) +1382 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_exec_system_allocator@process-many-stride-mmap-mlock.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][370] ([Intel XE#4943]) +133 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][371] ([Intel XE#4915]) +1090 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-dontunmap:
- shard-bmg: NOTRUN -> [DMESG-WARN][372] ([Intel XE#3428])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-dontunmap.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults:
- shard-lnl: NOTRUN -> [ABORT][373] ([Intel XE#4757])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: NOTRUN -> [ABORT][374] ([Intel XE#4917])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-lnl: NOTRUN -> [ABORT][375] ([Intel XE#4917])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-adlp: NOTRUN -> [ABORT][376] ([Intel XE#4917])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][377] ([Intel XE#4911])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
- shard-lnl: NOTRUN -> [ABORT][378] ([Intel XE#4911])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
- shard-adlp: NOTRUN -> [TIMEOUT][379] ([Intel XE#4911])
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
- shard-bmg: NOTRUN -> [ABORT][380] ([Intel XE#4911])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][381] ([Intel XE#255])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- shard-adlp: NOTRUN -> [SKIP][382] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][383] ([Intel XE#2229])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][384] ([Intel XE#2833])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@xe_live_ktest@xe_eudebug.html
- shard-bmg: NOTRUN -> [SKIP][385] ([Intel XE#2833])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][386] ([Intel XE#2229])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-lnl: NOTRUN -> [SKIP][387] ([Intel XE#2229]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-adlp: NOTRUN -> [SKIP][388] ([Intel XE#2229]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][389] ([Intel XE#560])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][390] ([Intel XE#560])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_media_fill@media-fill.html
- shard-bmg: NOTRUN -> [SKIP][391] ([Intel XE#2459] / [Intel XE#2596])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][392] ([Intel XE#5100]) +3 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_mmap@pci-membarrier.html
- shard-adlp: NOTRUN -> [SKIP][393] ([Intel XE#5100]) +3 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][394] ([Intel XE#512])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@xe_mmap@small-bar.html
- shard-adlp: NOTRUN -> [SKIP][395] ([Intel XE#512])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][396] ([Intel XE#586])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][397] ([Intel XE#512])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][398] ([Intel XE#1416])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_mmap@vram.html
- shard-adlp: NOTRUN -> [SKIP][399] ([Intel XE#1008])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@xe_mmap@vram.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][400] ([Intel XE#378]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: NOTRUN -> [SKIP][401] ([Intel XE#378]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_module_load@load.html
- shard-bmg: NOTRUN -> [SKIP][402] ([Intel XE#2457]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-6/igt@xe_module_load@load.html
- shard-adlp: NOTRUN -> [SKIP][403] ([Intel XE#378]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_module_load@load.html
* igt@xe_noexec_ping_pong:
- shard-adlp: NOTRUN -> [SKIP][404] ([Intel XE#379])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@xe_noexec_ping_pong.html
- shard-lnl: NOTRUN -> [SKIP][405] ([Intel XE#379])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@xe_noexec_ping_pong.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][406] ([Intel XE#4501])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@xe_oa@buffer-size.html
- shard-adlp: NOTRUN -> [SKIP][407] ([Intel XE#4501])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_oa@buffer-size.html
* igt@xe_oa@mmio-triggered-reports:
- shard-adlp: NOTRUN -> [SKIP][408] ([Intel XE#2541] / [Intel XE#3573]) +30 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][409] ([Intel XE#5103])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@non-system-wide-paranoid:
- shard-dg2-set2: NOTRUN -> [SKIP][410] ([Intel XE#2541] / [Intel XE#3573]) +28 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@xe_oa@non-system-wide-paranoid.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][411] ([Intel XE#2248])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][412] ([Intel XE#2248])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@syncs-syncobj-wait:
- shard-adlp: NOTRUN -> [SKIP][413] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +5 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-4/igt@xe_oa@syncs-syncobj-wait.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][414] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +5 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][415] ([Intel XE#1337])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
- shard-adlp: NOTRUN -> [SKIP][416] ([Intel XE#1337])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][417] ([Intel XE#977])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_pat@pat-index-xe2.html
- shard-dg2-set2: NOTRUN -> [SKIP][418] ([Intel XE#977])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][419] ([Intel XE#2838] / [Intel XE#979])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
- shard-lnl: NOTRUN -> [SKIP][420] ([Intel XE#1420] / [Intel XE#2838])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@xe_pat@pat-index-xehpc.html
- shard-adlp: NOTRUN -> [SKIP][421] ([Intel XE#2838] / [Intel XE#979])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: NOTRUN -> [SKIP][422] ([Intel XE#1420])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][423] ([Intel XE#977])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-4/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][424] ([Intel XE#2245])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-adlp: NOTRUN -> [SKIP][425] ([Intel XE#979])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-9/igt@xe_pat@pat-index-xelpg.html
- shard-bmg: NOTRUN -> [SKIP][426] ([Intel XE#2236])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
- shard-dg2-set2: NOTRUN -> [SKIP][427] ([Intel XE#979])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][428] ([Intel XE#979])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][429] ([Intel XE#1061]) +1 other test skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][430] ([Intel XE#2427]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-1/igt@xe_peer2peer@write.html
- shard-adlp: NOTRUN -> [SKIP][431] ([Intel XE#1061]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_peer2peer@write.html
- shard-dg2-set2: NOTRUN -> [FAIL][432] ([Intel XE#1173]) +1 other test fail
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][433] ([Intel XE#2284] / [Intel XE#366]) +7 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][434] ([Intel XE#2284] / [Intel XE#366]) +4 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][435] ([Intel XE#2284])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_pm@d3cold-mocs.html
- shard-adlp: NOTRUN -> [SKIP][436] ([Intel XE#2284])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-8/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: NOTRUN -> [SKIP][437] ([Intel XE#2284])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][438] ([Intel XE#2284]) +8 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][439] ([Intel XE#1948])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html
- shard-adlp: NOTRUN -> [SKIP][440] ([Intel XE#1948])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-6/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][441] ([Intel XE#584]) +10 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-2/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-basic-exec:
- shard-adlp: NOTRUN -> [ABORT][442] ([Intel XE#1794])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-9/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][443] ([Intel XE#2284] / [Intel XE#366]) +6 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][444] ([Intel XE#579])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
- shard-lnl: NOTRUN -> [SKIP][445] ([Intel XE#579])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@xe_pm@vram-d3cold-threshold.html
- shard-adlp: NOTRUN -> [SKIP][446] ([Intel XE#579])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][447] ([Intel XE#579])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][448] ([Intel XE#4650]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-1/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: NOTRUN -> [SKIP][449] ([Intel XE#4650]) +1 other test skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][450] ([Intel XE#4733]) +14 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-1/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][451] ([Intel XE#4733]) +10 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][452] ([Intel XE#4733]) +14 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][453] ([Intel XE#944]) +10 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][454] ([Intel XE#944]) +15 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-adlp: NOTRUN -> [SKIP][455] ([Intel XE#944]) +15 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][456] ([Intel XE#944]) +16 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][457] ([Intel XE#4814]) +2 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-adlp: NOTRUN -> [SKIP][458] ([Intel XE#4814]) +3 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-adlp-3/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][459] ([Intel XE#4130]) +5 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][460] ([Intel XE#4130]) +3 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: NOTRUN -> [SKIP][461] ([Intel XE#4130]) +5 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][462] ([Intel XE#3342]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-lnl: NOTRUN -> [SKIP][463] ([Intel XE#3342])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-5/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: NOTRUN -> [SKIP][464] ([Intel XE#3342])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: NOTRUN -> [SKIP][465] ([Intel XE#4273]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-dg2-set2: NOTRUN -> [SKIP][466] ([Intel XE#4273]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-436/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][467] ([Intel XE#4273]) +1 other test skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][468] ([Intel XE#4351]) +1 other test skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-dg2-466/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-lnl: NOTRUN -> [SKIP][469] ([Intel XE#4351]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-lnl-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-bmg: NOTRUN -> [SKIP][470] ([Intel XE#4351]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/shard-bmg-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1341
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2078
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4735]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4735
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4801
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4911
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4925
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5084
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#5173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5173
[Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8397 -> IGT_8398
* Linux: xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88 -> xe-pw-149120v3
IGT_8397: 181d409e619a5eff49ede13f058343dbe8acb417 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8398: 82be96b2ac16dd680618f1fd3d3ed073b88da3ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3202-832a676ed68901ea8c404d8602381cd8ca413e88: 832a676ed68901ea8c404d8602381cd8ca413e88
xe-pw-149120v3: 149120v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149120v3/index.html
[-- Attachment #2: Type: text/html, Size: 161848 bytes --]
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing
2025-06-06 21:12 ` David E. Box
@ 2025-06-09 14:41 ` Ruhl, Michael J
0 siblings, 0 replies; 36+ messages in thread
From: Ruhl, Michael J @ 2025-06-09 14:41 UTC (permalink / raw)
To: david.e.box@linux.intel.com, platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, De Marchi, Lucas, Vivi, Rodrigo,
thomas.hellstrom@linux.intel.com, airlied@gmail.com,
simona@ffwll.ch
>-----Original Message-----
>From: David E. Box <david.e.box@linux.intel.com>
>Sent: Friday, June 6, 2025 5:13 PM
>To: Ruhl, Michael J <michael.j.ruhl@intel.com>; platform-driver-
>x86@vger.kernel.org; intel-xe@lists.freedesktop.org; hdegoede@redhat.com;
>ilpo.jarvinen@linux.intel.com; De Marchi, Lucas <lucas.demarchi@intel.com>;
>Vivi, Rodrigo <rodrigo.vivi@intel.com>; thomas.hellstrom@linux.intel.com;
>airlied@gmail.com; simona@ffwll.ch
>Subject: Re: [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing
>
>On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
>> The intel_vsec_header information for the crashlog feature is
>> incorrect.
>>
>> Update the VSEC header with correct sizing and count.
>>
>> Since the crashlog entries are "merged" (num_entries = 2), the
>> separate capabilities entries must be merged as well.
>>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>
>Fixes tag?
Since the crashlog feature isn't available until this series, a fixes would not address any
issues.
So I didn't think it was necessary. If you would like one added, I will update.
M
>David
>
>> ---
>> drivers/gpu/drm/xe/xe_vsec.c | 20 +++++---------------
>> 1 file changed, 5 insertions(+), 15 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_vsec.c b/drivers/gpu/drm/xe/xe_vsec.c
>> index 3e573b0b7ebd..67238fc57a4d 100644
>> --- a/drivers/gpu/drm/xe/xe_vsec.c
>> +++ b/drivers/gpu/drm/xe/xe_vsec.c
>> @@ -32,28 +32,18 @@ static struct intel_vsec_header bmg_telemetry = {
>> .offset = BMG_DISCOVERY_OFFSET,
>> };
>>
>> -static struct intel_vsec_header bmg_punit_crashlog = {
>> - .length = 0x10,
>> +static struct intel_vsec_header bmg_crashlog = {
>> + .length = 0x18,
>> .id = VSEC_ID_CRASHLOG,
>> - .num_entries = 1,
>> - .entry_size = 4,
>> + .num_entries = 2,
>> + .entry_size = 6,
>> .tbir = 0,
>> .offset = BMG_DISCOVERY_OFFSET + 0x60,
>> };
>>
>> -static struct intel_vsec_header bmg_oobmsm_crashlog = {
>> - .length = 0x10,
>> - .id = VSEC_ID_CRASHLOG,
>> - .num_entries = 1,
>> - .entry_size = 4,
>> - .tbir = 0,
>> - .offset = BMG_DISCOVERY_OFFSET + 0x78,
>> -};
>> -
>> static struct intel_vsec_header *bmg_capabilities[] = {
>> &bmg_telemetry,
>> - &bmg_punit_crashlog,
>> - &bmg_oobmsm_crashlog,
>> + &bmg_crashlog,
>> NULL
>> };
>>
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex)
2025-06-06 21:20 ` David E. Box
@ 2025-06-09 14:42 ` Ruhl, Michael J
0 siblings, 0 replies; 36+ messages in thread
From: Ruhl, Michael J @ 2025-06-09 14:42 UTC (permalink / raw)
To: david.e.box@linux.intel.com, platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, De Marchi, Lucas, Vivi, Rodrigo,
thomas.hellstrom@linux.intel.com, airlied@gmail.com,
simona@ffwll.ch
>-----Original Message-----
>From: David E. Box <david.e.box@linux.intel.com>
>Sent: Friday, June 6, 2025 5:21 PM
>To: Ruhl, Michael J <michael.j.ruhl@intel.com>; platform-driver-
>x86@vger.kernel.org; intel-xe@lists.freedesktop.org; hdegoede@redhat.com;
>ilpo.jarvinen@linux.intel.com; De Marchi, Lucas <lucas.demarchi@intel.com>;
>Vivi, Rodrigo <rodrigo.vivi@intel.com>; thomas.hellstrom@linux.intel.com;
>airlied@gmail.com; simona@ffwll.ch
>Subject: Re: [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex)
>
>On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
>> Update the mutex paths to use the new guard() mechanism.
>>
>> With the removal of goto, do some minor cleanup of the current logic
>> path.
>>
>> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>> ---
>> drivers/platform/x86/intel/pmt/crashlog.c | 32 +++++++++++------------
>> 1 file changed, 15 insertions(+), 17 deletions(-)
>>
>> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
>> b/drivers/platform/x86/intel/pmt/crashlog.c
>> index e997fc48b9ce..94858bfb52f8 100644
>> --- a/drivers/platform/x86/intel/pmt/crashlog.c
>> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
>> @@ -155,9 +155,9 @@ enable_store(struct device *dev, struct
>device_attribute
>> *attr,
>> if (result)
>> return result;
>>
>> - mutex_lock(&entry->control_mutex);
>> + guard(mutex)(&entry->control_mutex);
>> +
>> pmt_crashlog_set_disable(&entry->entry, !enabled);
>> - mutex_unlock(&entry->control_mutex);
>>
>> return count;
>> }
>> @@ -189,26 +189,24 @@ trigger_store(struct device *dev, struct
>> device_attribute *attr,
>> if (result)
>> return result;
>>
>> - mutex_lock(&entry->control_mutex);
>> + guard(mutex)(&entry->control_mutex);
>>
>> if (!trigger) {
>> pmt_crashlog_set_clear(&entry->entry);
>> - } else if (pmt_crashlog_complete(&entry->entry)) {
>> - /* we cannot trigger a new crash if one is still pending */
>> - result = -EEXIST;
>> - goto err;
>> - } else if (pmt_crashlog_disabled(&entry->entry)) {
>> - /* if device is currently disabled, return busy */
>> - result = -EBUSY;
>> - goto err;
>> - } else {
>> - pmt_crashlog_set_execute(&entry->entry);
>> + return count;
>> }
>>
>> - result = count;
>> -err:
>> - mutex_unlock(&entry->control_mutex);
>> - return result;
>> + /* we cannot trigger a new crash if one is still pending */
>> + if (pmt_crashlog_complete(&entry->entry))
>> + return -EEXIST;
>> +
>> + /* if device is currently disabled, return busy */
>> + if (pmt_crashlog_disabled(&entry->entry))
>> + return -EBUSY;
>> +
>> + pmt_crashlog_set_execute(&entry->entry);
>> +
>> + return count;
>> }
>> static DEVICE_ATTR_RW(trigger);
>>
>
>Don't see include for cleanup.h. If add then
Missed that. I will update the file.
>Reviewed-by: David E. Box <david.e.box@linux.intel.com>
Thank!
m
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct
2025-06-06 22:57 ` David E. Box
@ 2025-06-09 14:43 ` Ruhl, Michael J
0 siblings, 0 replies; 36+ messages in thread
From: Ruhl, Michael J @ 2025-06-09 14:43 UTC (permalink / raw)
To: david.e.box@linux.intel.com, platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, De Marchi, Lucas, Vivi, Rodrigo,
thomas.hellstrom@linux.intel.com, airlied@gmail.com,
simona@ffwll.ch
>-----Original Message-----
>From: David E. Box <david.e.box@linux.intel.com>
>Sent: Friday, June 6, 2025 6:58 PM
>To: Ruhl, Michael J <michael.j.ruhl@intel.com>; platform-driver-
>x86@vger.kernel.org; intel-xe@lists.freedesktop.org; hdegoede@redhat.com;
>ilpo.jarvinen@linux.intel.com; De Marchi, Lucas <lucas.demarchi@intel.com>;
>Vivi, Rodrigo <rodrigo.vivi@intel.com>; thomas.hellstrom@linux.intel.com;
>airlied@gmail.com; simona@ffwll.ch
>Subject: Re: [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct
>
>On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
>> In preparation for supporting multiple crashlog versions, use a struct
>> to keep bit offset info for the status and control bits.
>>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>> ---
>> drivers/platform/x86/intel/pmt/crashlog.c | 176 ++++++++++++++--------
>> 1 file changed, 112 insertions(+), 64 deletions(-)
>>
>> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
>> b/drivers/platform/x86/intel/pmt/crashlog.c
>> index 318d7a21f00e..fe6563721886 100644
>> --- a/drivers/platform/x86/intel/pmt/crashlog.c
>> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
>> @@ -22,21 +22,6 @@
>> /* Crashlog discovery header types */
>> #define CRASH_TYPE_OOBMSM 1
>>
>> -/* Control Flags */
>> -#define CRASHLOG_FLAG_DISABLE BIT(28)
>> -
>> -/*
>> - * Bits 29 and 30 control the state of bit 31.
>> - *
>> - * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured.
>> - * Bit 30 will immediately trigger a crashlog to be generated, setting bit
>> 31.
>> - * Bit 31 is the read-only status with a 1 indicating log is complete.
>> - */
>> -#define CRASHLOG_FLAG_TRIGGER_CLEAR BIT(29)
>> -#define CRASHLOG_FLAG_TRIGGER_EXECUTE BIT(30)
>> -#define CRASHLOG_FLAG_TRIGGER_COMPLETE BIT(31)
>> -#define CRASHLOG_FLAG_TRIGGER_MASK GENMASK(31, 28)
>> -
>> /* Crashlog Discovery Header */
>> #define CONTROL_OFFSET 0x0
>> #define GUID_OFFSET 0x4
>> @@ -48,10 +33,63 @@
>> /* size is in bytes */
>> #define GET_SIZE(v) ((v) * sizeof(u32))
>>
>> +/*
>> + * Type 1 Version 0
>> + * status and control registers are combined.
>> + *
>> + * Bits 29 and 30 control the state of bit 31.
>> + * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured.
>> + * Bit 30 will immediately trigger a crashlog to be generated, setting bit
>> 31.
>> + * Bit 31 is the read-only status with a 1 indicating log is complete.
>> + */
>> +#define TYPE1_VER0_STATUS_OFFSET 0x00
>> +#define TYPE1_VER0_CONTROL_OFFSET 0x00
>> +
>> +#define TYPE1_VER0_DISABLE BIT(28)
>> +#define TYPE1_VER0_CLEAR BIT(29)
>> +#define TYPE1_VER0_EXECUTE BIT(30)
>> +#define TYPE1_VER0_COMPLETE BIT(31)
>> +#define TYPE1_VER0_TRIGGER_MASK GENMASK(31, 28)
>> +
>> +/* After offset, order alphabetically, not bit ordered */
>> +struct crashlog_status {
>> + u32 offset;
>> + u32 clear;
>> + u32 complete;
>> + u32 disable;
>> +};
>> +
>> +struct crashlog_control {
>> + u32 offset;
>> + u32 trigger_mask;
>> + u32 clear;
>> + u32 disable;
>> + u32 manual;
>> +};
>> +
>> +struct crashlog_info {
>> + struct crashlog_status status;
>> + struct crashlog_control control;
>> +};
>> +
>> +const struct crashlog_info crashlog_type1_ver0 = {
>> + .status.offset = TYPE1_VER0_STATUS_OFFSET,
>> + .status.clear = TYPE1_VER0_CLEAR,
>> + .status.complete = TYPE1_VER0_COMPLETE,
>> + .status.disable = TYPE1_VER0_DISABLE,
>> +
>> + .control.offset = TYPE1_VER0_CONTROL_OFFSET,
>> + .control.trigger_mask = TYPE1_VER0_TRIGGER_MASK,
>> + .control.clear = TYPE1_VER0_CLEAR,
>> + .control.disable = TYPE1_VER0_DISABLE,
>> + .control.manual = TYPE1_VER0_EXECUTE,
>> +};
>> +
>
>static?
Will update.
M
>David
>
>> struct crashlog_entry {
>> /* entry must be first member of struct */
>> struct intel_pmt_entry entry;
>> struct mutex control_mutex;
>> + const struct crashlog_info *info;
>> };
>>
>> struct pmt_crashlog_priv {
>> @@ -59,74 +97,82 @@ struct pmt_crashlog_priv {
>> struct crashlog_entry entry[];
>> };
>>
>> +/*
>> + * This is the generic access to a PMT struct. So the use of
>> + * struct crashlog_entry
>> + * doesn't "make sense" here.
>> + */
>> +static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
>> +{
>> + u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
>> + u32 crash_type, version;
>> +
>> + crash_type = GET_TYPE(discovery_header);
>> + version = GET_VERSION(discovery_header);
>> +
>> + /*
>> + * Currently we only recognize OOBMSM version 0 devices.
>> + * We can ignore all other crashlog devices in the system.
>> + */
>> + return crash_type == CRASH_TYPE_OOBMSM && version == 0;
>> +}
>> +
>> /*
>> * I/O
>> */
>> +
>> #define SET true
>> #define CLEAR false
>>
>> -static void read_modify_write(struct intel_pmt_entry *entry, u32 bit, bool
>> set)
>> +static void read_modify_write(struct crashlog_entry *crashlog, u32 bit, bool
>> set)
>> {
>> - u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
>> + const struct crashlog_control *control = &crashlog->info->control;
>> + struct intel_pmt_entry *entry = &crashlog->entry;
>> + u32 reg = readl(entry->disc_table + control->offset);
>>
>> - reg &= ~CRASHLOG_FLAG_TRIGGER_MASK;
>> + reg &= ~control->trigger_mask;
>>
>> if (set)
>> reg |= bit;
>> else
>> reg &= bit;
>>
>> - writel(reg, entry->disc_table + CONTROL_OFFSET);
>> + writel(reg, entry->disc_table + control->offset);
>> }
>>
>> -static bool read_check(struct intel_pmt_entry *entry, u32 bit)
>> +static bool read_check(struct crashlog_entry *crashlog, u32 bit)
>> {
>> - u32 reg = readl(entry->disc_table + CONTROL_OFFSET);
>> + const struct crashlog_status *status = &crashlog->info->status;
>> + u32 reg = readl(crashlog->entry.disc_table + status->offset);
>>
>> return !!(reg & bit);
>> }
>>
>> -static bool pmt_crashlog_complete(struct intel_pmt_entry *entry)
>> +static bool pmt_crashlog_complete(struct crashlog_entry *crashlog)
>> {
>> /* return current value of the crashlog complete flag */
>> - return read_check(entry, CRASHLOG_FLAG_TRIGGER_COMPLETE);
>> + return read_check(crashlog, crashlog->info->status.complete);
>> }
>>
>> -static bool pmt_crashlog_disabled(struct intel_pmt_entry *entry)
>> +static bool pmt_crashlog_disabled(struct crashlog_entry *crashlog)
>> {
>> /* return current value of the crashlog disabled flag */
>> - return read_check(entry, CRASHLOG_FLAG_DISABLE);
>> -}
>> -
>> -static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
>> -{
>> - u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
>> - u32 crash_type, version;
>> -
>> - crash_type = GET_TYPE(discovery_header);
>> - version = GET_VERSION(discovery_header);
>> -
>> - /*
>> - * Currently we only recognize OOBMSM version 0 devices.
>> - * We can ignore all other crashlog devices in the system.
>> - */
>> - return crash_type == CRASH_TYPE_OOBMSM && version == 0;
>> + return read_check(crashlog, crashlog->info->status.disable);
>> }
>>
>> -static void pmt_crashlog_set_disable(struct intel_pmt_entry *entry,
>> - bool disable)
>> +static void pmt_crashlog_set_disable(struct crashlog_entry *crashlog, bool
>> disable)
>> {
>> - read_modify_write(entry, CRASHLOG_FLAG_DISABLE, disable);
>> + read_modify_write(crashlog, crashlog->info->control.disable,
>> disable);
>> }
>>
>> -static void pmt_crashlog_set_clear(struct intel_pmt_entry *entry)
>> +static void pmt_crashlog_set_clear(struct crashlog_entry *crashlog)
>> {
>> - read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_CLEAR, SET);
>> + read_modify_write(crashlog, crashlog->info->control.clear, SET);
>> }
>>
>> -static void pmt_crashlog_set_execute(struct intel_pmt_entry *entry)
>> +static void pmt_crashlog_set_execute(struct crashlog_entry *crashlog)
>> {
>> - read_modify_write(entry, CRASHLOG_FLAG_TRIGGER_EXECUTE, SET);
>> + read_modify_write(crashlog, crashlog->info->control.manual, SET);
>> }
>>
>> /*
>> @@ -135,8 +181,8 @@ static void pmt_crashlog_set_execute(struct
>> intel_pmt_entry *entry)
>> static ssize_t
>> enable_show(struct device *dev, struct device_attribute *attr, char *buf)
>> {
>> - struct intel_pmt_entry *entry = dev_get_drvdata(dev);
>> - bool enabled = !pmt_crashlog_disabled(entry);
>> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
>> + bool enabled = !pmt_crashlog_disabled(crashlog);
>>
>> return sprintf(buf, "%d\n", enabled);
>> }
>> @@ -145,19 +191,19 @@ static ssize_t
>> enable_store(struct device *dev, struct device_attribute *attr,
>> const char *buf, size_t count)
>> {
>> - struct crashlog_entry *entry;
>> + struct crashlog_entry *crashlog;
>> bool enabled;
>> int result;
>>
>> - entry = dev_get_drvdata(dev);
>> + crashlog = dev_get_drvdata(dev);
>>
>> result = kstrtobool(buf, &enabled);
>> if (result)
>> return result;
>>
>> - guard(mutex)(&entry->control_mutex);
>> + guard(mutex)(&crashlog->control_mutex);
>>
>> - pmt_crashlog_set_disable(&entry->entry, !enabled);
>> + pmt_crashlog_set_disable(crashlog, !enabled);
>>
>> return count;
>> }
>> @@ -166,11 +212,11 @@ static DEVICE_ATTR_RW(enable);
>> static ssize_t
>> trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
>> {
>> - struct intel_pmt_entry *entry;
>> + struct crashlog_entry *crashlog;
>> bool trigger;
>>
>> - entry = dev_get_drvdata(dev);
>> - trigger = pmt_crashlog_complete(entry);
>> + crashlog = dev_get_drvdata(dev);
>> + trigger = pmt_crashlog_complete(crashlog);
>>
>> return sprintf(buf, "%d\n", trigger);
>> }
>> @@ -179,32 +225,33 @@ static ssize_t
>> trigger_store(struct device *dev, struct device_attribute *attr,
>> const char *buf, size_t count)
>> {
>> - struct crashlog_entry *entry;
>> + struct crashlog_entry *crashlog;
>> bool trigger;
>> int result;
>>
>> - entry = dev_get_drvdata(dev);
>> + crashlog = dev_get_drvdata(dev);
>>
>> result = kstrtobool(buf, &trigger);
>> if (result)
>> return result;
>>
>> - guard(mutex)(&entry->control_mutex);
>> + guard(mutex)(&crashlog->control_mutex);
>>
>> /* if device is currently disabled, return busy */
>> - if (pmt_crashlog_disabled(&entry->entry))
>> + if (pmt_crashlog_disabled(crashlog))
>> return -EBUSY;
>>
>> if (!trigger) {
>> - pmt_crashlog_set_clear(&entry->entry);
>> + pmt_crashlog_set_clear(crashlog);
>> return count;
>> }
>>
>> /* we cannot trigger a new crash if one is still pending */
>> - if (pmt_crashlog_complete(&entry->entry))
>> + if (pmt_crashlog_complete(crashlog))
>> return -EEXIST;
>>
>> - pmt_crashlog_set_execute(&entry->entry);
>> + pmt_crashlog_set_execute(crashlog);
>> +
>>
>> return count;
>> }
>> @@ -230,9 +277,10 @@ static int pmt_crashlog_header_decode(struct
>> intel_pmt_entry *entry,
>> if (!pmt_crashlog_supported(entry))
>> return 1;
>>
>> - /* initialize control mutex */
>> + /* initialize the crashlog struct */
>> crashlog = container_of(entry, struct crashlog_entry, entry);
>> mutex_init(&crashlog->control_mutex);
>> + crashlog->info = &crashlog_type1_ver0;
>>
>> header->access_type = GET_ACCESS(readl(disc_table));
>> header->guid = readl(disc_table + GUID_OFFSET);
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog
2025-06-06 23:21 ` David E. Box
@ 2025-06-09 14:45 ` Ruhl, Michael J
0 siblings, 0 replies; 36+ messages in thread
From: Ruhl, Michael J @ 2025-06-09 14:45 UTC (permalink / raw)
To: david.e.box@linux.intel.com, platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, De Marchi, Lucas, Vivi, Rodrigo,
thomas.hellstrom@linux.intel.com, airlied@gmail.com,
simona@ffwll.ch
>-----Original Message-----
>From: David E. Box <david.e.box@linux.intel.com>
>Sent: Friday, June 6, 2025 7:21 PM
>To: Ruhl, Michael J <michael.j.ruhl@intel.com>; platform-driver-
>x86@vger.kernel.org; intel-xe@lists.freedesktop.org; hdegoede@redhat.com;
>ilpo.jarvinen@linux.intel.com; De Marchi, Lucas <lucas.demarchi@intel.com>;
>Vivi, Rodrigo <rodrigo.vivi@intel.com>; thomas.hellstrom@linux.intel.com;
>airlied@gmail.com; simona@ffwll.ch
>Subject: Re: [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog
>
>On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
>> The Battlemage GPU has the type 1 version 2 crashlog feature.
>>
>> Update the crashlog driver to support this crashlog version.
>>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>> ---
>> drivers/platform/x86/intel/pmt/crashlog.c | 283 ++++++++++++++++++++-
>-
>> 1 file changed, 264 insertions(+), 19 deletions(-)
>>
>> diff --git a/drivers/platform/x86/intel/pmt/crashlog.c
>> b/drivers/platform/x86/intel/pmt/crashlog.c
>> index fe6563721886..0fb60036a9bb 100644
>> --- a/drivers/platform/x86/intel/pmt/crashlog.c
>> +++ b/drivers/platform/x86/intel/pmt/crashlog.c
>> @@ -51,20 +51,53 @@
>> #define TYPE1_VER0_COMPLETE BIT(31)
>> #define TYPE1_VER0_TRIGGER_MASK GENMASK(31, 28)
>>
>> +/*
>> + * Type 1 Version 2
>> + * status and control are two different registers
>> + */
>> +#define TYPE1_VER2_STATUS_OFFSET 0x00
>> +#define TYPE1_VER2_CONTROL_OFFSET 0x14
>> +
>> +/* status register */
>> +#define TYPE1_VER2_CLEAR_SUPPORT BIT(20)
>> +#define TYPE1_VER2_REARMED BIT(25)
>> +#define TYPE1_VER2_ERROR BIT(26)
>> +#define TYPE1_VER2_CONSUMED BIT(27)
>> +#define TYPE1_VER2_DISABLED BIT(28)
>> +#define TYPE1_VER2_CLEARED BIT(29)
>> +#define TYPE1_VER2_IN_PROGRESS BIT(30)
>> +#define TYPE1_VER2_COMPLETE BIT(31)
>> +
>> +/* control register */
>> +#define TYPE1_VER2_CONSUME BIT(25)
>> +#define TYPE1_VER2_REARM BIT(28)
>> +#define TYPE1_VER2_EXECUTE BIT(29)
>> +#define TYPE1_VER2_CLEAR BIT(30)
>> +#define TYPE1_VER2_DISABLE BIT(31)
>> +#define TYPE1_VER2_TRIGGER_MASK
> (TYPE1_VER2_CONSUME |
>> TYPE1_VER2_EXECUTE | \
>> + TYPE1_VER2_CLEAR |
>> TYPE1_VER2_DISABLE)
>> +
>> /* After offset, order alphabetically, not bit ordered */
>> struct crashlog_status {
>> u32 offset;
>> - u32 clear;
>> + u32 clear_supported;
>> + u32 cleared;
>> u32 complete;
>> - u32 disable;
>> + u32 consumed;
>> + u32 disabled;
>> + u32 error;
>> + u32 in_progress;
>> + u32 rearmed;
>> };
>
>Since this struct was just introduced, better to use the intended names in the
>original patch to avoid unnecessary churn.
>
>>
>> struct crashlog_control {
>> u32 offset;
>> u32 trigger_mask;
>> u32 clear;
>> + u32 consume;
>> u32 disable;
>> u32 manual;
>> + u32 rearm;
>> };
>>
>> struct crashlog_info {
>> @@ -74,9 +107,9 @@ struct crashlog_info {
>>
>> const struct crashlog_info crashlog_type1_ver0 = {
>> .status.offset = TYPE1_VER0_STATUS_OFFSET,
>> - .status.clear = TYPE1_VER0_CLEAR,
>> + .status.cleared = TYPE1_VER0_CLEAR,
>> .status.complete = TYPE1_VER0_COMPLETE,
>> - .status.disable = TYPE1_VER0_DISABLE,
>> + .status.disabled = TYPE1_VER0_DISABLE,
>>
>> .control.offset = TYPE1_VER0_CONTROL_OFFSET,
>> .control.trigger_mask = TYPE1_VER0_TRIGGER_MASK,
>> @@ -85,6 +118,26 @@ const struct crashlog_info crashlog_type1_ver0 = {
>> .control.manual = TYPE1_VER0_EXECUTE,
>> };
>>
>> +const struct crashlog_info crashlog_type1_ver2 = {
>> + .status.offset = TYPE1_VER2_STATUS_OFFSET,
>> + .status.clear_supported = TYPE1_VER2_CLEAR_SUPPORT,
>> + .status.cleared = TYPE1_VER2_CLEARED,
>> + .status.complete = TYPE1_VER2_COMPLETE,
>> + .status.consumed = TYPE1_VER2_CONSUMED,
>> + .status.disabled = TYPE1_VER2_DISABLED,
>> + .status.error = TYPE1_VER2_ERROR,
>> + .status.in_progress = TYPE1_VER2_IN_PROGRESS,
>> + .status.rearmed = TYPE1_VER2_REARMED,
>> +
>> + .control.offset = TYPE1_VER2_CONTROL_OFFSET,
>> + .control.trigger_mask = TYPE1_VER2_TRIGGER_MASK,
>> + .control.clear = TYPE1_VER2_CLEAR,
>> + .control.consume = TYPE1_VER2_CONSUME,
>> + .control.disable = TYPE1_VER2_DISABLE,
>> + .control.manual = TYPE1_VER2_EXECUTE,
>> + .control.rearm = TYPE1_VER2_REARM,
>> +};
>> +
>> struct crashlog_entry {
>> /* entry must be first member of struct */
>> struct intel_pmt_entry entry;
>> @@ -99,30 +152,35 @@ struct pmt_crashlog_priv {
>>
>> /*
>> * This is the generic access to a PMT struct. So the use of
>> - * struct crashlog_entry
>> - * doesn't "make sense" here.
>> + * struct crashlog_entry
>> + * doesn't "make sense" here, i.e. use:
>> + * struct intel_pmt_entry
>> */
>
>I don't think this comment is needed. Still, this could have been done in the
>patch that added it.
I will remove.
>> -static bool pmt_crashlog_supported(struct intel_pmt_entry *entry)
>> +static bool pmt_crashlog_supported(struct intel_pmt_entry *entry, u32
>> *crash_type, u32 *version)
>> {
>> u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET);
>> - u32 crash_type, version;
>>
>> - crash_type = GET_TYPE(discovery_header);
>> - version = GET_VERSION(discovery_header);
>> + *crash_type = GET_TYPE(discovery_header);
>> + *version = GET_VERSION(discovery_header);
>>
>> /*
>> - * Currently we only recognize OOBMSM version 0 devices.
>> - * We can ignore all other crashlog devices in the system.
>> + * Currently we only recognize OOBMSM (type 1) and version 0 or 2
>> + * devices.
>> + *
>> + * Ignore all other crashlog devices in the system.
>> */
>> - return crash_type == CRASH_TYPE_OOBMSM && version == 0;
>> + if (*crash_type == CRASH_TYPE_OOBMSM && (*version == 0 ||
>*version ==
>> 2))
>> + return true;
>> +
>> + return false;
>> }
>>
>> /*
>> * I/O
>> */
>>
>> -#define SET true
>> -#define CLEAR false
>> +#define SET true
>> +#define CLEAR false
>
>Ditto
Not sure why this happened...I will get this cleaned up.
>>
>> static void read_modify_write(struct crashlog_entry *crashlog, u32 bit, bool
>> set)
>> {
>> @@ -157,7 +215,7 @@ static bool pmt_crashlog_complete(struct
>crashlog_entry
>> *crashlog)
>> static bool pmt_crashlog_disabled(struct crashlog_entry *crashlog)
>> {
>> /* return current value of the crashlog disabled flag */
>> - return read_check(crashlog, crashlog->info->status.disable);
>> + return read_check(crashlog, crashlog->info->status.disabled);
>> }
>>
>> static void pmt_crashlog_set_disable(struct crashlog_entry *crashlog, bool
>> disable)
>> @@ -175,9 +233,119 @@ static void pmt_crashlog_set_execute(struct
>> crashlog_entry *crashlog)
>> read_modify_write(crashlog, crashlog->info->control.manual, SET);
>> }
>>
>> +/* version 2 support */
>> +static bool pmt_crashlog_cleared(struct crashlog_entry *crashlog)
>> +{
>> + /* return current value of the crashlog cleared flag */
>> + return read_check(crashlog, crashlog->info->status.cleared);
>> +}
>> +
>> +static bool pmt_crashlog_consumed(struct crashlog_entry *crashlog)
>> +{
>> + /* return current value of the crashlog consumedflag */
>> + return read_check(crashlog, crashlog->info->status.consumed);
>> +}
>> +
>> +static void pmt_crashlog_set_consumed(struct crashlog_entry *crashlog)
>> +{
>> + read_modify_write(crashlog, crashlog->info->control.consume, SET);
>> +}
>> +
>> +static bool pmt_crashlog_error(struct crashlog_entry *crashlog)
>> +{
>> + /* return current value of the crashlog error flag */
>> + return read_check(crashlog, crashlog->info->status.error);
>> +}
>> +
>> +static bool pmt_crashlog_rearm(struct crashlog_entry *crashlog)
>> +{
>> + /* return current value of the crashlog reamed flag */
>> + return read_check(crashlog, crashlog->info->status.rearmed);
>> +}
>> +
>> +static void pmt_crashlog_set_rearm(struct crashlog_entry *crashlog)
>> +{
>> + read_modify_write(crashlog, crashlog->info->control.rearm, SET);
>> +}
>> +
>> /*
>> * sysfs
>> */
>> +static ssize_t
>> +clear_show(struct device *dev, struct device_attribute *attr, char *buf)
>> +{
>> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
>> + bool cleared = pmt_crashlog_cleared(crashlog);
>> +
>> + return sysfs_emit(buf, "%d\n", cleared);
>> +}
>> +
>> +static ssize_t
>> +clear_store(struct device *dev, struct device_attribute *attr,
>> + const char *buf, size_t count)
>> +{
>> + struct crashlog_entry *crashlog;
>> + bool clear;
>> + int result;
>> +
>> + crashlog = dev_get_drvdata(dev);
>> +
>> + result = kstrtobool(buf, &clear);
>> + if (result)
>> + return result;
>> +
>> + /* set bit only */
>> + if (!clear)
>> + return -EINVAL;
>> +
>> + guard(mutex)(&crashlog->control_mutex);
>> +
>> + pmt_crashlog_set_clear(crashlog);
>> +
>> + return count;
>> +}
>> +static DEVICE_ATTR_RW(clear);
>> +
>> +static ssize_t
>> +consumed_show(struct device *dev, struct device_attribute *attr, char *buf)
>> +{
>> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
>> + bool consumed = pmt_crashlog_consumed(crashlog);
>> +
>> + return sysfs_emit(buf, "%d\n", consumed);
>> +}
>> +
>> +static ssize_t consumed_store(struct device *dev, struct device_attribute
>> *attr,
>> + const char *buf, size_t count)
>> +{
>> + struct crashlog_entry *crashlog;
>> + bool consumed;
>> + int result;
>> +
>> + crashlog = dev_get_drvdata(dev);
>> +
>> + result = kstrtobool(buf, &consumed);
>> + if (result)
>> + return result;
>> +
>> + /* set bit only */
>> + if (!consumed)
>> + return -EINVAL;
>> +
>> + guard(mutex)(&crashlog->control_mutex);
>> +
>> + if (pmt_crashlog_disabled(crashlog))
>> + return -EBUSY;
>> +
>> + if (!pmt_crashlog_complete(crashlog))
>> + return -EEXIST;
>> +
>> + pmt_crashlog_set_consumed(crashlog);
>> +
>> + return count;
>> +}
>> +static DEVICE_ATTR_RW(consumed);
>> +
>> static ssize_t
>> enable_show(struct device *dev, struct device_attribute *attr, char *buf)
>> {
>> @@ -209,6 +377,50 @@ enable_store(struct device *dev, struct
>device_attribute
>> *attr,
>> }
>> static DEVICE_ATTR_RW(enable);
>>
>> +static ssize_t
>> +error_show(struct device *dev, struct device_attribute *attr, char *buf)
>> +{
>> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
>> + bool error = pmt_crashlog_error(crashlog);
>> +
>> + return sysfs_emit(buf, "%d\n", error);
>> +}
>> +static DEVICE_ATTR_RO(error);
>> +
>> +static ssize_t
>> +rearm_show(struct device *dev, struct device_attribute *attr, char *buf)
>> +{
>> + struct crashlog_entry *crashlog = dev_get_drvdata(dev);
>> + int rearmed = pmt_crashlog_rearm(crashlog);
>> +
>> + return sysfs_emit(buf, "%d\n", rearmed);
>> +}
>> +
>> +static ssize_t rearm_store(struct device *dev, struct device_attribute *attr,
>> + const char *buf, size_t count)
>> +{
>> + struct crashlog_entry *crashlog;
>> + bool rearm;
>> + int result;
>> +
>> + crashlog = dev_get_drvdata(dev);
>> +
>> + result = kstrtobool(buf, &rearm);
>> + if (result)
>> + return result;
>> +
>> + /* set only */
>> + if (!rearm)
>> + return -EINVAL;
>> +
>> + guard(mutex)(&crashlog->control_mutex);
>> +
>> + pmt_crashlog_set_rearm(crashlog);
>> +
>> + return count;
>> +}
>> +static DEVICE_ATTR_RW(rearm);
>> +
>> static ssize_t
>> trigger_show(struct device *dev, struct device_attribute *attr, char *buf)
>> {
>> @@ -263,24 +475,57 @@ static struct attribute *pmt_crashlog_attrs[] = {
>> NULL
>> };
>>
>
>For what follows ...
>
>>
>> +static struct attribute *pmt_crashlog_ver2_attrs[] = {
>> + &dev_attr_clear.attr,
>> + &dev_attr_consumed.attr,
>> + &dev_attr_enable.attr,
>> + &dev_attr_error.attr,
>> + &dev_attr_rearm.attr,
>> + &dev_attr_trigger.attr,
>> + NULL
>> +};
>> +
>> static const struct attribute_group pmt_crashlog_group = {
>> .attrs = pmt_crashlog_attrs,
>> };
>>
>> +static const struct attribute_group pmt_crashlog_ver2_group = {
>> + .attrs = pmt_crashlog_ver2_attrs,
>> +};
>
>... I would have the group and attributes both reflect type and version in the
>name. Update pmt_crashlog_group as well.
Makes sense. I will update.
Thank you for your comments!
Mike
>David
>
>> +
>> +static const struct crashlog_info *select_crashlog_info(u32 type, u32
>> version)
>> +{
>> + if (version == 0)
>> + return &crashlog_type1_ver0;
>> +
>> + return &crashlog_type1_ver2;
>> +}
>> +
>> +static const struct attribute_group *select_sysfs_grp(u32 type, u32 version)
>> +{
>> + if (version == 0)
>> + return &pmt_crashlog_group;
>> +
>> + return &pmt_crashlog_ver2_group;
>> +}
>> +
>> static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry,
>> struct device *dev)
>> {
>> void __iomem *disc_table = entry->disc_table;
>> struct intel_pmt_header *header = &entry->header;
>> struct crashlog_entry *crashlog;
>> + u32 version;
>> + u32 type;
>>
>> - if (!pmt_crashlog_supported(entry))
>> + if (!pmt_crashlog_supported(entry, &type, &version))
>> return 1;
>>
>> /* initialize the crashlog struct */
>> crashlog = container_of(entry, struct crashlog_entry, entry);
>> mutex_init(&crashlog->control_mutex);
>> - crashlog->info = &crashlog_type1_ver0;
>> +
>> + crashlog->info = select_crashlog_info(type, version);
>>
>> header->access_type = GET_ACCESS(readl(disc_table));
>> header->guid = readl(disc_table + GUID_OFFSET);
>> @@ -289,7 +534,7 @@ static int pmt_crashlog_header_decode(struct
>> intel_pmt_entry *entry,
>> /* Size is measured in DWORDS, but accessor returns bytes */
>> header->size = GET_SIZE(readl(disc_table + SIZE_OFFSET));
>>
>> - entry->attr_grp = &pmt_crashlog_group;
>> + entry->attr_grp = select_sysfs_grp(type, version);
>>
>> return 0;
>> }
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage
2025-06-06 19:20 ` Ruhl, Michael J
@ 2025-06-09 17:04 ` David E. Box
0 siblings, 0 replies; 36+ messages in thread
From: David E. Box @ 2025-06-09 17:04 UTC (permalink / raw)
To: Ruhl, Michael J, platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, De Marchi, Lucas, Vivi, Rodrigo,
thomas.hellstrom@linux.intel.com, airlied@gmail.com,
simona@ffwll.ch
Cc: stable@vger.kernel.org
On Fri, 2025-06-06 at 19:20 +0000, Ruhl, Michael J wrote:
> > -----Original Message-----
> > From: David E. Box <david.e.box@linux.intel.com>
> > Sent: Friday, June 6, 2025 1:55 PM
> > To: Ruhl, Michael J <michael.j.ruhl@intel.com>; platform-driver-
> > x86@vger.kernel.org; intel-xe@lists.freedesktop.org; hdegoede@redhat.com;
> > ilpo.jarvinen@linux.intel.com; De Marchi, Lucas <lucas.demarchi@intel.com>;
> > Vivi, Rodrigo <rodrigo.vivi@intel.com>; thomas.hellstrom@linux.intel.com;
> > airlied@gmail.com; simona@ffwll.ch
> > Cc: stable@vger.kernel.org
> > Subject: Re: [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage
> >
> > Hi Mike,
> >
> > On Thu, 2025-06-05 at 14:44 -0400, Michael J. Ruhl wrote:
> > > The use of an endpoint has introduced a dependency in all class/pmt
> > > drivers to have an endpoint allocated.
> > >
> > > The telemetry driver has this allocation, the crashlog does not.
> > >
> > > The current usage is very telemetry focused, but should be common code.
> >
> > The endpoint exists specifically to support the exported APIs in the
> > telemetry
> > driver. It's reference-counted via kref to ensure safe cleanup once all API
> > consumers are done. Unless the kernel needs to invoke a crashlog API through
> > this mechanism, I’m not sure this change is necessary. I’ll go through the
> > rest
> > of the patches to understand how the endpoint is being used, but my initial
> > reaction is that is not be needed.
> >
> >
> > >
> > > With this in mind:
> > > rename the struct telemetry_endpoint to struct class_endpoint,
> > > refactor the common endpoint code to be in the class.c module
> > >
> > > Fixes: 416eeb2e1fc7 ("platform/x86/intel/pmt: telemetry: Export API to
> > > read
> > > telemetry")
> > > Cc: <stable@vger.kernel.org>
> > > Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> > > ---
> > > drivers/platform/x86/intel/pmc/core.c | 3 +-
> > > drivers/platform/x86/intel/pmc/core.h | 4 +-
> > > drivers/platform/x86/intel/pmc/core_ssram.c | 2 +-
> > > drivers/platform/x86/intel/pmt/class.c | 45 ++++++++++++++++++
> > > drivers/platform/x86/intel/pmt/class.h | 21 +++++++--
> > > drivers/platform/x86/intel/pmt/telemetry.c | 51 ++++-----------------
> > > drivers/platform/x86/intel/pmt/telemetry.h | 23 ++++------
> > > 7 files changed, 84 insertions(+), 65 deletions(-)
> > >
> > > diff --git a/drivers/platform/x86/intel/pmc/core.c
> > > b/drivers/platform/x86/intel/pmc/core.c
> > > index 7a1d11f2914f..805f56665d1d 100644
> > > --- a/drivers/platform/x86/intel/pmc/core.c
> > > +++ b/drivers/platform/x86/intel/pmc/core.c
> > > @@ -29,6 +29,7 @@
> > > #include <asm/tsc.h>
> > >
> > > #include "core.h"
> > > +#include "../pmt/class.h"
> > > #include "../pmt/telemetry.h"
> > >
> > > /* Maximum number of modes supported by platfoms that has low power
> > mode
> > > capability */
> > > @@ -1198,7 +1199,7 @@ int get_primary_reg_base(struct pmc *pmc)
> > >
> > > void pmc_core_punit_pmt_init(struct pmc_dev *pmcdev, u32 guid)
> > > {
> > > - struct telem_endpoint *ep;
> > > + struct class_endpoint *ep;
> >
> > I'd name it pmt_endpoint instead of class_endpoint.
>
> Wil do.
>
> > > struct pci_dev *pcidev;
> > >
> > > pcidev = pci_get_domain_bus_and_slot(0, 0, PCI_DEVFN(10, 0));
> > > diff --git a/drivers/platform/x86/intel/pmc/core.h
> > > b/drivers/platform/x86/intel/pmc/core.h
> > > index 945a1c440cca..1c12ea7c3ce3 100644
> > > --- a/drivers/platform/x86/intel/pmc/core.h
> > > +++ b/drivers/platform/x86/intel/pmc/core.h
> > > @@ -16,7 +16,7 @@
> > > #include <linux/bits.h>
> > > #include <linux/platform_device.h>
> > >
> > > -struct telem_endpoint;
> > > +struct class_endpoint;
> > >
> > > #define SLP_S0_RES_COUNTER_MASK GENMASK(31,
> > 0)
> > >
> > > @@ -432,7 +432,7 @@ struct pmc_dev {
> > >
> > > bool has_die_c6;
> > > u32 die_c6_offset;
> > > - struct telem_endpoint *punit_ep;
> > > + struct class_endpoint *punit_ep;
> > > struct pmc_info *regmap_list;
> > > };
> > >
> > > diff --git a/drivers/platform/x86/intel/pmc/core_ssram.c
> > > b/drivers/platform/x86/intel/pmc/core_ssram.c
> > > index 739569803017..3e670fc380a5 100644
> > > --- a/drivers/platform/x86/intel/pmc/core_ssram.c
> > > +++ b/drivers/platform/x86/intel/pmc/core_ssram.c
> > > @@ -42,7 +42,7 @@ static u32 pmc_core_find_guid(struct pmc_info *list,
> > const
> > > struct pmc_reg_map *m
> > >
> > > static int pmc_core_get_lpm_req(struct pmc_dev *pmcdev, struct pmc *pmc)
> > > {
> > > - struct telem_endpoint *ep;
> > > + struct class_endpoint *ep;
> > > const u8 *lpm_indices;
> > > int num_maps, mode_offset = 0;
> > > int ret, mode;
> > > diff --git a/drivers/platform/x86/intel/pmt/class.c
> > > b/drivers/platform/x86/intel/pmt/class.c
> > > index 7233b654bbad..bba552131bc2 100644
> > > --- a/drivers/platform/x86/intel/pmt/class.c
> > > +++ b/drivers/platform/x86/intel/pmt/class.c
> > > @@ -76,6 +76,47 @@ int pmt_telem_read_mmio(struct pci_dev *pdev,
> > struct
> > > pmt_callbacks *cb, u32 guid
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_read_mmio, "INTEL_PMT");
> > >
> > > +/* Called when all users unregister and the device is removed */
> > > +static void pmt_class_ep_release(struct kref *kref)
> > > +{
> > > + struct class_endpoint *ep;
> > > +
> > > + ep = container_of(kref, struct class_endpoint, kref);
> > > + kfree(ep);
> > > +}
> > > +
> > > +void intel_pmt_release_endpoint(struct class_endpoint *ep)
> > > +{
> > > + kref_put(&ep->kref, pmt_class_ep_release);
> > > +}
> > > +EXPORT_SYMBOL_NS_GPL(intel_pmt_release_endpoint, "INTEL_PMT");
> > > +
> > > +int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
> > > + struct intel_pmt_entry *entry)
> > > +{
> > > + struct class_endpoint *ep;
> > > +
> > > + ep = kzalloc(sizeof(*ep), GFP_KERNEL);
> > > + if (!ep)
> > > + return -ENOMEM;
> > > +
> > > + ep->pcidev = ivdev->pcidev;
> > > + ep->header.access_type = entry->header.access_type;
> > > + ep->header.guid = entry->header.guid;
> > > + ep->header.base_offset = entry->header.base_offset;
> > > + ep->header.size = entry->header.size;
> > > + ep->base = entry->base;
> > > + ep->present = true;
> > > + ep->cb = ivdev->priv_data;
> > > +
> > > + /* Endpoint lifetimes are managed by kref, not devres */
> > > + kref_init(&ep->kref);
> > > +
> > > + entry->ep = ep;
> > > +
> > > + return 0;
> > > +}
> > > +EXPORT_SYMBOL_NS_GPL(intel_pmt_add_endpoint, "INTEL_PMT");
> > > /*
> > > * sysfs
> > > */
> > > @@ -97,6 +138,10 @@ intel_pmt_read(struct file *filp, struct kobject
> > > *kobj,
> > > if (count > entry->size - off)
> > > count = entry->size - off;
> > >
> > > + /* verify endpoint is available */
> > > + if (!entry->ep)
> > > + return -ENODEV;
> > > +
> >
> > Hmm ...
> >
> > > count = pmt_telem_read_mmio(entry->ep->pcidev, entry->cb, entry-
> > > > header.guid, buf,
> > > entry->base, off, count);
> >
> > ... intel_pmt_read() is only intended to handle sysfs reads, not to access
> > driver endpoints. But entry->ep is a handle registered by a driver via
> > pmt_telem_find_and_register_endpoint() which won’t be called unless another
> > driver explicitly does so. If no driver registers the endpoint, entry->ep
> > will
> > be NULL, and this read path will dereference it, leading to a NULL pointer
> > bug.
> >
> > This call to entry->ep->pcidev shouldn't be here. It mistakenly mixes the
> > sysfs
> > path with the driver API path. Actual use of entry->ep belongs only in the
> > exported read calls in telemetry.c.
>
> An additional issue here is that the callback interface requires the pcidev.
>
> Is the pcidev available form a different location? (I am not seeing it...)
>
> Maybe the pcidev * should be moved to the intel_pmt_entry struct?
Yes. After looking through this series, I don't see a need for this patch to
extend telem_enpoint for general use. Let's just place a copy of the pdev in
entry. Then you can drop the first two patches.
David
>
> Thanks,
>
> Mike
>
> > David
> >
> > >
> > > diff --git a/drivers/platform/x86/intel/pmt/class.h
> > > b/drivers/platform/x86/intel/pmt/class.h
> > > index b2006d57779d..d2d8f9e31c9d 100644
> > > --- a/drivers/platform/x86/intel/pmt/class.h
> > > +++ b/drivers/platform/x86/intel/pmt/class.h
> > > @@ -9,8 +9,6 @@
> > > #include <linux/err.h>
> > > #include <linux/io.h>
> > >
> > > -#include "telemetry.h"
> > > -
> > > /* PMT access types */
> > > #define ACCESS_BARID 2
> > > #define ACCESS_LOCAL 3
> > > @@ -19,11 +17,19 @@
> > > #define GET_BIR(v) ((v) & GENMASK(2, 0))
> > > #define GET_ADDRESS(v) ((v) & GENMASK(31, 3))
> > >
> > > +struct kref;
> > > struct pci_dev;
> > >
> > > -struct telem_endpoint {
> > > +struct class_header {
> > > + u8 access_type;
> > > + u16 size;
> > > + u32 guid;
> > > + u32 base_offset;
> > > +};
> > > +
> > > +struct class_endpoint {
> > > struct pci_dev *pcidev;
> > > - struct telem_header header;
> > > + struct class_header header;
> > > struct pmt_callbacks *cb;
> > > void __iomem *base;
> > > bool present;
> > > @@ -38,7 +44,7 @@ struct intel_pmt_header {
> > > };
> > >
> > > struct intel_pmt_entry {
> > > - struct telem_endpoint *ep;
> > > + struct class_endpoint *ep;
> > > struct intel_pmt_header header;
> > > struct bin_attribute pmt_bin_attr;
> > > struct kobject *kobj;
> > > @@ -69,4 +75,9 @@ int intel_pmt_dev_create(struct intel_pmt_entry
> > *entry,
> > > struct intel_vsec_device *dev, int idx);
> > > void intel_pmt_dev_destroy(struct intel_pmt_entry *entry,
> > > struct intel_pmt_namespace *ns);
> > > +
> > > +int intel_pmt_add_endpoint(struct intel_vsec_device *ivdev,
> > > + struct intel_pmt_entry *entry);
> > > +void intel_pmt_release_endpoint(struct class_endpoint *ep);
> > > +
> > > #endif
> > > diff --git a/drivers/platform/x86/intel/pmt/telemetry.c
> > > b/drivers/platform/x86/intel/pmt/telemetry.c
> > > index ac3a9bdf5601..27d09867e6a3 100644
> > > --- a/drivers/platform/x86/intel/pmt/telemetry.c
> > > +++ b/drivers/platform/x86/intel/pmt/telemetry.c
> > > @@ -18,6 +18,7 @@
> > > #include <linux/overflow.h>
> > >
> > > #include "class.h"
> > > +#include "telemetry.h"
> > >
> > > #define TELEM_SIZE_OFFSET 0x0
> > > #define TELEM_GUID_OFFSET 0x4
> > > @@ -93,48 +94,14 @@ static int pmt_telem_header_decode(struct
> > intel_pmt_entry
> > > *entry,
> > > return 0;
> > > }
> > >
> > > -static int pmt_telem_add_endpoint(struct intel_vsec_device *ivdev,
> > > - struct intel_pmt_entry *entry)
> > > -{
> > > - struct telem_endpoint *ep;
> > > -
> > > - /* Endpoint lifetimes are managed by kref, not devres */
> > > - entry->ep = kzalloc(sizeof(*(entry->ep)), GFP_KERNEL);
> > > - if (!entry->ep)
> > > - return -ENOMEM;
> > > -
> > > - ep = entry->ep;
> > > - ep->pcidev = ivdev->pcidev;
> > > - ep->header.access_type = entry->header.access_type;
> > > - ep->header.guid = entry->header.guid;
> > > - ep->header.base_offset = entry->header.base_offset;
> > > - ep->header.size = entry->header.size;
> > > - ep->base = entry->base;
> > > - ep->present = true;
> > > - ep->cb = ivdev->priv_data;
> > > -
> > > - kref_init(&ep->kref);
> > > -
> > > - return 0;
> > > -}
> > > -
> > > static DEFINE_XARRAY_ALLOC(telem_array);
> > > static struct intel_pmt_namespace pmt_telem_ns = {
> > > .name = "telem",
> > > .xa = &telem_array,
> > > .pmt_header_decode = pmt_telem_header_decode,
> > > - .pmt_add_endpoint = pmt_telem_add_endpoint,
> > > + .pmt_add_endpoint = intel_pmt_add_endpoint,
> > > };
> > >
> > > -/* Called when all users unregister and the device is removed */
> > > -static void pmt_telem_ep_release(struct kref *kref)
> > > -{
> > > - struct telem_endpoint *ep;
> > > -
> > > - ep = container_of(kref, struct telem_endpoint, kref);
> > > - kfree(ep);
> > > -}
> > > -
> > > unsigned long pmt_telem_get_next_endpoint(unsigned long start)
> > > {
> > > struct intel_pmt_entry *entry;
> > > @@ -155,7 +122,7 @@ unsigned long
> > pmt_telem_get_next_endpoint(unsigned long
> > > start)
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_get_next_endpoint,
> > "INTEL_PMT_TELEMETRY");
> > >
> > > -struct telem_endpoint *pmt_telem_register_endpoint(int devid)
> > > +struct class_endpoint *pmt_telem_register_endpoint(int devid)
> > > {
> > > struct intel_pmt_entry *entry;
> > > unsigned long index = devid;
> > > @@ -174,9 +141,9 @@ struct telem_endpoint
> > *pmt_telem_register_endpoint(int
> > > devid)
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_register_endpoint,
> > "INTEL_PMT_TELEMETRY");
> > >
> > > -void pmt_telem_unregister_endpoint(struct telem_endpoint *ep)
> > > +void pmt_telem_unregister_endpoint(struct class_endpoint *ep)
> > > {
> > > - kref_put(&ep->kref, pmt_telem_ep_release);
> > > + intel_pmt_release_endpoint(ep);
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_unregister_endpoint,
> > "INTEL_PMT_TELEMETRY");
> > >
> > > @@ -206,7 +173,7 @@ int pmt_telem_get_endpoint_info(int devid, struct
> > > telem_endpoint_info *info)
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_get_endpoint_info,
> > "INTEL_PMT_TELEMETRY");
> > >
> > > -int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32
> > count)
> > > +int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32
> > count)
> > > {
> > > u32 offset, size;
> > >
> > > @@ -226,7 +193,7 @@ int pmt_telem_read(struct telem_endpoint *ep, u32
> > id, u64
> > > *data, u32 count)
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_read, "INTEL_PMT_TELEMETRY");
> > >
> > > -int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32
> > count)
> > > +int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32
> > count)
> > > {
> > > u32 offset, size;
> > >
> > > @@ -245,7 +212,7 @@ int pmt_telem_read32(struct telem_endpoint *ep,
> > u32 id,
> > > u32 *data, u32 count)
> > > }
> > > EXPORT_SYMBOL_NS_GPL(pmt_telem_read32, "INTEL_PMT_TELEMETRY");
> > >
> > > -struct telem_endpoint *
> > > +struct class_endpoint *
> > > pmt_telem_find_and_register_endpoint(struct pci_dev *pcidev, u32 guid,
> > u16
> > > pos)
> > > {
> > > int devid = 0;
> > > @@ -279,7 +246,7 @@ static void pmt_telem_remove(struct
> > auxiliary_device
> > > *auxdev)
> > > for (i = 0; i < priv->num_entries; i++) {
> > > struct intel_pmt_entry *entry = &priv->entry[i];
> > >
> > > - kref_put(&entry->ep->kref, pmt_telem_ep_release);
> > > + pmt_telem_unregister_endpoint(entry->ep);
> > > intel_pmt_dev_destroy(entry, &pmt_telem_ns);
> > > }
> > > mutex_unlock(&ep_lock);
> > > diff --git a/drivers/platform/x86/intel/pmt/telemetry.h
> > > b/drivers/platform/x86/intel/pmt/telemetry.h
> > > index d45af5512b4e..e987dd32a58a 100644
> > > --- a/drivers/platform/x86/intel/pmt/telemetry.h
> > > +++ b/drivers/platform/x86/intel/pmt/telemetry.h
> > > @@ -2,6 +2,8 @@
> > > #ifndef _TELEMETRY_H
> > > #define _TELEMETRY_H
> > >
> > > +#include "class.h"
> > > +
> > > /* Telemetry types */
> > > #define PMT_TELEM_TELEMETRY 0
> > > #define PMT_TELEM_CRASHLOG 1
> > > @@ -9,16 +11,9 @@
> > > struct telem_endpoint;
> > > struct pci_dev;
> > >
> > > -struct telem_header {
> > > - u8 access_type;
> > > - u16 size;
> > > - u32 guid;
> > > - u32 base_offset;
> > > -};
> > > -
> > > struct telem_endpoint_info {
> > > struct pci_dev *pdev;
> > > - struct telem_header header;
> > > + struct class_header header;
> > > };
> > >
> > > /**
> > > @@ -47,7 +42,7 @@ unsigned long
> > pmt_telem_get_next_endpoint(unsigned long
> > > start);
> > > * * endpoint - On success returns pointer to the telemetry endpoint
> > > * * -ENXIO - telemetry endpoint not found
> > > */
> > > -struct telem_endpoint *pmt_telem_register_endpoint(int devid);
> > > +struct class_endpoint *pmt_telem_register_endpoint(int devid);
> > >
> > > /**
> > > * pmt_telem_unregister_endpoint() - Unregister a telemetry endpoint
> > > @@ -55,7 +50,7 @@ struct telem_endpoint
> > *pmt_telem_register_endpoint(int
> > > devid);
> > > *
> > > * Decrements the kref usage counter for the endpoint.
> > > */
> > > -void pmt_telem_unregister_endpoint(struct telem_endpoint *ep);
> > > +void pmt_telem_unregister_endpoint(struct class_endpoint *ep);
> > >
> > > /**
> > > * pmt_telem_get_endpoint_info() - Get info for an endpoint from its
> > > devid
> > > @@ -80,8 +75,8 @@ int pmt_telem_get_endpoint_info(int devid, struct
> > > telem_endpoint_info *info);
> > > * * endpoint - On success returns pointer to the telemetry endpoint
> > > * * -ENXIO - telemetry endpoint not found
> > > */
> > > -struct telem_endpoint *pmt_telem_find_and_register_endpoint(struct
> > pci_dev
> > > *pcidev,
> > > - u32 guid, u16 pos);
> > > +struct class_endpoint *pmt_telem_find_and_register_endpoint(struct
> > pci_dev
> > > *pcidev,
> > > + u32 guid, u16
> > > pos);
> > >
> > > /**
> > > * pmt_telem_read() - Read qwords from counter sram using sample id
> > > @@ -101,7 +96,7 @@ struct telem_endpoint
> > > *pmt_telem_find_and_register_endpoint(struct pci_dev *pcid
> > > * * -EPIPE - The device was removed during the read. Data written
> > > * but should be considered invalid.
> > > */
> > > -int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32
> > count);
> > > +int pmt_telem_read(struct class_endpoint *ep, u32 id, u64 *data, u32
> > count);
> > >
> > > /**
> > > * pmt_telem_read32() - Read qwords from counter sram using sample id
> > > @@ -121,6 +116,6 @@ int pmt_telem_read(struct telem_endpoint *ep, u32
> > id, u64
> > > *data, u32 count);
> > > * * -EPIPE - The device was removed during the read. Data written
> > > * but should be considered invalid.
> > > */
> > > -int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32
> > > count);
> > > +int pmt_telem_read32(struct class_endpoint *ep, u32 id, u32 *data, u32
> > > count);
> > >
> > > #endif
>
^ permalink raw reply [flat|nested] 36+ messages in thread
end of thread, other threads:[~2025-06-09 17:04 UTC | newest]
Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-05 18:44 [PATCH v3 00/11] Crashlog Type1 Version2 support Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 01/11] platform/x86/intel: refactor endpoint usage Michael J. Ruhl
2025-06-06 17:54 ` David E. Box
2025-06-06 19:20 ` Ruhl, Michael J
2025-06-09 17:04 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 02/11] platform/x86/intel/pmt: crashlog binary file endpoint Michael J. Ruhl
2025-06-06 19:54 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 03/11] drm/xe: Correct BMG VSEC header sizing Michael J. Ruhl
2025-06-06 21:12 ` David E. Box
2025-06-09 14:41 ` Ruhl, Michael J
2025-06-05 18:44 ` [PATCH v3 04/11] platform/x86/intel/pmt: white space cleanup Michael J. Ruhl
2025-06-06 21:14 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 05/11] platform/x86/intel/pmt: use guard(mutex) Michael J. Ruhl
2025-06-06 21:20 ` David E. Box
2025-06-09 14:42 ` Ruhl, Michael J
2025-06-05 18:44 ` [PATCH v3 06/11] platform/x86/intel/pmt: re-order trigger logic Michael J. Ruhl
2025-06-06 21:49 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 07/11] platform/x86/intel/pmt: correct types Michael J. Ruhl
2025-06-06 21:57 ` David E. Box
2025-06-05 18:44 ` [PATCH v3 08/11] platform/x86/intel/pmt: decouple sysfs and namespace Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 09/11] platform/x86/intel/pmt: add register access helpers Michael J. Ruhl
2025-06-05 18:44 ` [PATCH v3 10/11] platform/x86/intel/pmt: use a version struct Michael J. Ruhl
2025-06-06 22:57 ` David E. Box
2025-06-09 14:43 ` Ruhl, Michael J
2025-06-05 18:44 ` [PATCH v3 11/11] platform/x86/intel/pmt: support BMG crashlog Michael J. Ruhl
2025-06-06 23:21 ` David E. Box
2025-06-09 14:45 ` Ruhl, Michael J
2025-06-05 22:36 ` ✓ CI.Patch_applied: success for Crashlog Type1 Version2 support (rev3) Patchwork
2025-06-05 22:36 ` ✓ CI.checkpatch: " Patchwork
2025-06-05 22:37 ` ✓ CI.KUnit: " Patchwork
2025-06-05 22:48 ` ✓ CI.Build: " Patchwork
2025-06-05 22:50 ` ✓ CI.Hooks: " Patchwork
2025-06-05 22:52 ` ✓ CI.checksparse: " Patchwork
2025-06-05 23:52 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-07 19:17 ` ✓ Xe.CI.Full: " Patchwork
2025-06-08 4:22 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox