From 74617de48dfda4e010ce1799717ba355c505b822 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 9 Jan 2025 09:08:06 +1000 Subject: [PATCH] tools/record: record HID_BPF properties too If this property is set we likely have a udev-hid-bpf property loaded into the device. Knowing this is going to be important for debugging why a device may or may not work so let's record this. Part-of: --- tools/libinput-record.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libinput-record.c b/tools/libinput-record.c index 4e2f95ca..27bc3313 100644 --- a/tools/libinput-record.c +++ b/tools/libinput-record.c @@ -1747,6 +1747,7 @@ print_udev_properties(struct record_device *dev) key = udev_list_entry_get_name(entry); if (strstartswith(key, "ID_INPUT") || + strstartswith(key, "HID_BPF") || strstartswith(key, "LIBINPUT") || strstartswith(key, "EVDEV_ABS") || strstartswith(key, "MOUSE_DPI") ||