anatol / booster

Fast and secure initramfs generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No way to force aliases to be added (without universal)

baltitenger opened this issue · comments

I want to be able to type in my full disk encryption password with a keyboard even if I don't have one plugged in during generation. Currently the only way is to enable the universal option, otherwise booster doesn't include the following line in /usr/lib/modules/booster.alias:

usb:v*p*d*dc*dsc*dp*ic03isc*ip*in* usbhid

Even listing the module explicitly in the modules entry of the config file doesn't add its corresponding aliases.

Hi, thanks for the issue report.

The module aliases filtering happens at this place

func (k *Kmod) filterAliasesForRequiredModules(conf *generatorConfig) ([]alias, error) {

Basically, the first step is to filter aliases for selected modules. And I assume you have usbhid module activated.

Then booster scans active device modaliases at /sys/devices and filters out those ones that are not present at the system. Do you see your usbhid alias with find /sys/devices -name modalias | xargs cat?

Please also provide debug output from booster build --verbose out.img, it might be helpful to understand what happens with the modalias you are looking at.

Do you see your usbhid alias with find /sys/devices -name modalias | xargs cat?

When I don't have an external keyboard connected (only my laptop's builtin one), no, but I guess this is expected. Based on how you're filtering the aliases, it makes perfect sense that it behaves this way. What I want though, is to include this alias even if I don't have any such device at the time of generation.

Mkinitcpio had the option to opt out of the aoutodetect hook for specific hooks. This is basically what I need: to have universal set for specific modules. (Perhaps a new universal_modules entry in the config file?)

Verbouse output with usb keyboard disconnected
reading /proc/config.gz
active host modules: [encrypted_keys thermal efi_pstore snd_ctl_led snd_hda_codec_generic cpuidle cryptomgr coretemp tpm_tis firmware_attributes_class spurious ac97_bus edac_core battery vt videodev iTCO_wdt snd_seq libahci tcp_cubic rtsx_pci_sdmmc intel_pmc_bxt nmi_backtrace irqbypass xhci_hcd xen 8250 video btrtl cryptd kfence serio shpchp ecdh_generic crc64_rocksoft crypto_simd snd_soc_sst_ipc soundcore srcutree rcupdate crypto_user snd_seq_device random rtc_cmos intel_pch_thermal snd_soc_avs dm_crypt snd_hda_codec_hdmi haltpoll snd_hwdep drm_kms_helper device_hmem pstore sysrq tee snd_intel_sdw_acpi usbnet rtsx_pci processor mii scsi_mod videobuf2_vmalloc kernel mbcache ccm page_alloc crc32c_generic snd_hda_intel iwlmvm crc16 intel_gtt mousedev mei_wdt ahci pciehp pci_hotplug qcserial gpiolib_acpi i2c_algo_bit at24 mei_hdcp xhci_pci_renesas dm_multipath mei btmtk trusted mac_hid snd_hda_ext_core snd_hda_codec x86_pkg_temp_thermal intel_uncore snd_hda_codec_realtek dynamic_debug snd_soc_acpi_intel_match intel_rapl_msr intel_idle videobuf2_v4l2 keyboard zswap bpf_preload platform_profile drm_display_helper cdc_mbim memory_hotplug intel_cstate tpm_crb serio_raw iwlmei snd_timer ledtrig_audio fb mei_pxp page_reporting mmc_core hid netpoll apparmor usbcore vivaldi_fmap iTCO_vendor_support udmabuf cdc_ncm snd_hrtimer snd_intel_dspcfg ghash_clmulni_intel blk_cgroup pcie_aspm pnp secretmem cdc_wdm rfkill btintel joydev intel_powerclamp snd_compress cpufreq usb_wwan drm_buddy uvcvideo ehci_hcd ipv6 i2c_smbus atkbd bluetooth intel_pmc_core snd_soc_hdac_hda wmi_bmof suspend btbcm crc_t10dif libarc4 fuse thinkpad_acpi mei_me acpiphp iwlwifi libps2 videobuf2_common bnep intel_tcc_cooling configfs e1000e snd_soc_core btusb cec ext4 asn1_encoder tpm_tis_core x_tables blk_crypto xhci_pci rcutree mac80211 i2c_i801 button cdc_ether kvm mc cbc aesni_intel block roles snd_soc_skl crct10dif_pclmul snd_pcm xz_dec rapl snd snd_soc_sst_dsp dm_mod crc32c_intel i915 libata sg kvm_intel psmouse ip_tables i8042 ttm snd_soc_acpi module snd_hda_core intel_rapl_common msr firmware_class wmi acpi clocksource intel_xhci_usb_role_switch think_lmi fscrypto snd_seq_dummy rng_core damon_reclaim uhci_hcd crc32_pclmul printk pcspkr vfat cfg80211 watchdog workqueue tpm fat jbd2 videobuf2_memops drm snd_pcm_dmaengine]
activate module vfat
activate module fuse
activate module mbcache
activate module jbd2
activate module configfs
activate module ext4
activate module pstore
activate module fat
activate module crct10dif_pclmul
activate module ghash_clmulni_intel
activate module aesni_intel
activate module crc32c_intel
activate module crc32_pclmul
activate module ccm
activate module crypto_user
activate module cryptomgr
activate module crypto_simd
activate module cbc
activate module crc32c_generic
activate module cryptd
activate module ecdh_generic
activate module serio_raw
activate module i8042
activate module serio
activate module libps2
activate module atkbd
activate module dm_mod
activate module dm_multipath
activate module dm_crypt
activate module tpm_tis_core
activate module tpm_crb
activate module tpm
activate module tpm_tis
activate module uhci_hcd
activate module xhci_pci
activate module xhci_hcd
activate module xhci_pci_renesas
activate module ehci_hcd
activate module hid
activate module libata
activate module libahci
activate module ahci
unable to resolve module name aead2
unable to resolve module name nls
unable to resolve module name aead2
unable to resolve module name nls
unable to resolve module name platform:gpio_keys_polled
unable to resolve module name vfio_iommu_spapr_tce
module 'snd_soc_acpi' currently used at the host but was not added to the image
module 'processor' currently used at the host but was not added to the image
module 'thinkpad_acpi' currently used at the host but was not added to the image
module 'uvcvideo' currently used at the host but was not added to the image
module 'crc64_rocksoft' currently used at the host but was not added to the image
module 'srcutree' currently used at the host but was not added to the image
module 'intel_gtt' currently used at the host but was not added to the image
module 'btusb' currently used at the host but was not added to the image
module 'rapl' currently used at the host but was not added to the image
module 'videobuf2_memops' currently used at the host but was not added to the image
module 'pci_hotplug' currently used at the host but was not added to the image
module 'ipv6' currently used at the host but was not added to the image
module 'snd_soc_sst_dsp' currently used at the host but was not added to the image
module 'xen' currently used at the host but was not added to the image
module 'soundcore' currently used at the host but was not added to the image
module 'iwlwifi' currently used at the host but was not added to the image
module 'iwlmvm' currently used at the host but was not added to the image
module 'mousedev' currently used at the host but was not added to the image
module 'device_hmem' currently used at the host but was not added to the image
module 'rtc_cmos' currently used at the host but was not added to the image
module 'libarc4' currently used at the host but was not added to the image
module 'snd_hda_codec_generic' currently used at the host but was not added to the image
module 'spurious' currently used at the host but was not added to the image
module 'snd' currently used at the host but was not added to the image
module 'battery' currently used at the host but was not added to the image
module 'haltpoll' currently used at the host but was not added to the image
module 'x86_pkg_temp_thermal' currently used at the host but was not added to the image
module 'fb' currently used at the host but was not added to the image
module 'blk_crypto' currently used at the host but was not added to the image
module 'rcutree' currently used at the host but was not added to the image
module 'cdc_ether' currently used at the host but was not added to the image
module 'tcp_cubic' currently used at the host but was not added to the image
module 'iTCO_vendor_support' currently used at the host but was not added to the image
module 'firmware_class' currently used at the host but was not added to the image
module 'snd_hda_codec_realtek' currently used at the host but was not added to the image
module 'damon_reclaim' currently used at the host but was not added to the image
module 'snd_hda_codec_hdmi' currently used at the host but was not added to the image
module 'rtsx_pci' currently used at the host but was not added to the image
module 'bnep' currently used at the host but was not added to the image
module 'iwlmei' currently used at the host but was not added to the image
module 'snd_hrtimer' currently used at the host but was not added to the image
module 'page_reporting' currently used at the host but was not added to the image
module 'rtsx_pci_sdmmc' currently used at the host but was not added to the image
module 'snd_hda_ext_core' currently used at the host but was not added to the image
module 'snd_hda_intel' currently used at the host but was not added to the image
module 'snd_timer' currently used at the host but was not added to the image
module 'button' currently used at the host but was not added to the image
module 'kvm' currently used at the host but was not added to the image
module 'ttm' currently used at the host but was not added to the image
module 'mii' currently used at the host but was not added to the image
module 'snd_seq' currently used at the host but was not added to the image
module 'intel_tcc_cooling' currently used at the host but was not added to the image
module 'snd_soc_sst_ipc' currently used at the host but was not added to the image
module 'intel_powerclamp' currently used at the host but was not added to the image
module 'bluetooth' currently used at the host but was not added to the image
module 'clocksource' currently used at the host but was not added to the image
module 'firmware_attributes_class' currently used at the host but was not added to the image
module 'qcserial' currently used at the host but was not added to the image
module 'gpiolib_acpi' currently used at the host but was not added to the image
module 'pciehp' currently used at the host but was not added to the image
module 'at24' currently used at the host but was not added to the image
module 'bpf_preload' currently used at the host but was not added to the image
module 'drm_display_helper' currently used at the host but was not added to the image
module 'pnp' currently used at the host but was not added to the image
module 'intel_pch_thermal' currently used at the host but was not added to the image
module 'mei_wdt' currently used at the host but was not added to the image
module 'cdc_wdm' currently used at the host but was not added to the image
module 'snd_soc_skl' currently used at the host but was not added to the image
module 'cpufreq' currently used at the host but was not added to the image
module 'mei_pxp' currently used at the host but was not added to the image
module 'videobuf2_common' currently used at the host but was not added to the image
module 'iTCO_wdt' currently used at the host but was not added to the image
module 'irqbypass' currently used at the host but was not added to the image
module 'blk_cgroup' currently used at the host but was not added to the image
module 'secretmem' currently used at the host but was not added to the image
module 'crc_t10dif' currently used at the host but was not added to the image
module 'module' currently used at the host but was not added to the image
module 'snd_seq_dummy' currently used at the host but was not added to the image
module 'btmtk' currently used at the host but was not added to the image
module 'intel_uncore' currently used at the host but was not added to the image
module 'pcspkr' currently used at the host but was not added to the image
module 'shpchp' currently used at the host but was not added to the image
module 'snd_intel_dspcfg' currently used at the host but was not added to the image
module 'mc' currently used at the host but was not added to the image
module 'kfence' currently used at the host but was not added to the image
module 'snd_soc_acpi_intel_match' currently used at the host but was not added to the image
module 'mac80211' currently used at the host but was not added to the image
module 'i915' currently used at the host but was not added to the image
module 'mei_me' currently used at the host but was not added to the image
module 'snd_compress' currently used at the host but was not added to the image
module 'printk' currently used at the host but was not added to the image
module 'suspend' currently used at the host but was not added to the image
module 'cec' currently used at the host but was not added to the image
module 'ip_tables' currently used at the host but was not added to the image
module 'snd_pcm_dmaengine' currently used at the host but was not added to the image
module 'netpoll' currently used at the host but was not added to the image
module 'usb_wwan' currently used at the host but was not added to the image
module 'intel_pmc_core' currently used at the host but was not added to the image
module 'sg' currently used at the host but was not added to the image
module 'cfg80211' currently used at the host but was not added to the image
module 'platform_profile' currently used at the host but was not added to the image
module 'intel_rapl_common' currently used at the host but was not added to the image
module 'msr' currently used at the host but was not added to the image
module 'think_lmi' currently used at the host but was not added to the image
module 'vt' currently used at the host but was not added to the image
module 'intel_idle' currently used at the host but was not added to the image
module 'sysrq' currently used at the host but was not added to the image
module 'kernel' currently used at the host but was not added to the image
module 'x_tables' currently used at the host but was not added to the image
module 'snd_hda_core' currently used at the host but was not added to the image
module 'videobuf2_vmalloc' currently used at the host but was not added to the image
module 'videobuf2_v4l2' currently used at the host but was not added to the image
module 'thermal' currently used at the host but was not added to the image
module 'memory_hotplug' currently used at the host but was not added to the image
module 'intel_pmc_bxt' currently used at the host but was not added to the image
module 'snd_ctl_led' currently used at the host but was not added to the image
module 'snd_hda_codec' currently used at the host but was not added to the image
module 'rfkill' currently used at the host but was not added to the image
module 'pcie_aspm' currently used at the host but was not added to the image
module 'e1000e' currently used at the host but was not added to the image
module 'wmi' currently used at the host but was not added to the image
module 'snd_seq_device' currently used at the host but was not added to the image
module 'acpiphp' currently used at the host but was not added to the image
module 'watchdog' currently used at the host but was not added to the image
module 'mmc_core' currently used at the host but was not added to the image
module 'acpi' currently used at the host but was not added to the image
module 'page_alloc' currently used at the host but was not added to the image
module 'block' currently used at the host but was not added to the image
module 'intel_cstate' currently used at the host but was not added to the image
module 'snd_soc_avs' currently used at the host but was not added to the image
module 'i2c_algo_bit' currently used at the host but was not added to the image
module 'wmi_bmof' currently used at the host but was not added to the image
module 'i2c_i801' currently used at the host but was not added to the image
module 'video' currently used at the host but was not added to the image
module 'btrtl' currently used at the host but was not added to the image
module 'kvm_intel' currently used at the host but was not added to the image
module 'intel_xhci_usb_role_switch' currently used at the host but was not added to the image
module 'snd_soc_hdac_hda' currently used at the host but was not added to the image
module 'random' currently used at the host but was not added to the image
module '8250' currently used at the host but was not added to the image
module 'cdc_ncm' currently used at the host but was not added to the image
module 'snd_soc_core' currently used at the host but was not added to the image
module 'videodev' currently used at the host but was not added to the image
module 'dynamic_debug' currently used at the host but was not added to the image
module 'xz_dec' currently used at the host but was not added to the image
module 'psmouse' currently used at the host but was not added to the image
module 'coretemp' currently used at the host but was not added to the image
module 'mac_hid' currently used at the host but was not added to the image
module 'cdc_mbim' currently used at the host but was not added to the image
module 'ledtrig_audio' currently used at the host but was not added to the image
module 'snd_intel_sdw_acpi' currently used at the host but was not added to the image
module 'snd_pcm' currently used at the host but was not added to the image
module 'fscrypto' currently used at the host but was not added to the image
module 'usbcore' currently used at the host but was not added to the image
module 'drm' currently used at the host but was not added to the image
module 'snd_hwdep' currently used at the host but was not added to the image
module 'intel_rapl_msr' currently used at the host but was not added to the image
module 'mei' currently used at the host but was not added to the image
module 'zswap' currently used at the host but was not added to the image
module 'apparmor' currently used at the host but was not added to the image
module 'roles' currently used at the host but was not added to the image
module 'ac97_bus' currently used at the host but was not added to the image
module 'drm_buddy' currently used at the host but was not added to the image
module 'scsi_mod' currently used at the host but was not added to the image
module 'btintel' currently used at the host but was not added to the image
module 'usbnet' currently used at the host but was not added to the image
module 'udmabuf' currently used at the host but was not added to the image
module 'nmi_backtrace' currently used at the host but was not added to the image
module 'rcupdate' currently used at the host but was not added to the image
module 'keyboard' currently used at the host but was not added to the image
module 'efi_pstore' currently used at the host but was not added to the image
module 'cpuidle' currently used at the host but was not added to the image
module 'workqueue' currently used at the host but was not added to the image
module 'drm_kms_helper' currently used at the host but was not added to the image
module 'btbcm' currently used at the host but was not added to the image
module 'edac_core' currently used at the host but was not added to the image
module 'mei_hdcp' currently used at the host but was not added to the image
module 'i2c_smbus' currently used at the host but was not added to the image
module 'joydev' currently used at the host but was not added to the image
module xhci_pci depends on firmware renesas_usb_fw.mem but the firmware file does not exist
no matches found for a device alias 'acpi:PNP0800:'
no matches found for a device alias 'acpi:PNP0A08:PNP0A03:'
no matches found for a device alias 'wmi:7FF47003-3B6C-4E5E-A227-E979824A85D1'
no matches found for a device alias 'input:b0019v0000p0006e0000-e0,1,kE0,E1,E3,F1,F2,F3,F4,F5,ramlsfw'
no matches found for a device alias 'wmi:7EEF04FF-4328-447C-B5BB-D449925D538D'
no matches found for a device alias 'platform:intel_pmc_core'
no matches found for a device alias 'acpi:PNP0C0E:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00ic02isc0Eip00in0C'
no matches found for a device alias 'input:b0010v001Fp0001e0100-e0,12,kramls1,2,fw'
no matches found for a device alias 'wmi:85D2E869-365A-4ACE-A4D3-CD692B1698A0'
no matches found for a device alias 'serio:ty05pr00id00ex00'
no matches found for a device alias 'platform:pcspkr'
no matches found for a device alias 'acpi:INT0E0C:'
no matches found for a device alias 'usb:v058Fp9540d0120dc00dsc00dp00ic0Bisc00ip00in00'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw2,'
no matches found for a device alias 'wmi:FCB424F1-075A-4E0E-BFC4-62F3E71771FA'
no matches found for a device alias 'acpi:LNXVIDEO:'
no matches found for a device alias 'platform:snd-soc-dummy'
no matches found for a device alias 'acpi:ACPI0003:'
no matches found for a device alias 'dmi:bvnLENOVO:bvrR06ET71W(1.45):bd02/21/2022:br1.45:efr1.12:svnLENOVO:pn20FMS27L0P:pvrThinkPadT460:rvnLENOVO:rn20FMS27L0P:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20FM_BU_Think_FM_ThinkPadT460:'
no matches found for a device alias 'pci:v00008086d00001916sv000017AAsd00005053bc03sc00i00'
no matches found for a device alias 'mei::42b3ce2f-bd9f-485a-96ae-26406230b1ff:01:'
no matches found for a device alias 'platform:thinkpad_acpi'
no matches found for a device alias 'platform:thinkpad_hwmon'
no matches found for a device alias 'acpi:PNP0B00:'
no matches found for a device alias 'usb:v04F2pB52Cd0029dcEFdsc02dp01ic0Eisc01ip00in00'
no matches found for a device alias 'mei::dba4d603-d7ed-4931-8823-17ad585705d5:01:'
no matches found for a device alias 'platform:microcode'
no matches found for a device alias 'wmi:74F1EBB6-927A-4C7D-95DF-698E21E80EB5'
no matches found for a device alias 'input:b0011v0002p000Ae0000-e0,1,2,k110,111,112,r0,1,amlsfw'
no matches found for a device alias 'input:b0019v0000p0001e0000-e0,1,k74,ramlsfw'
no matches found for a device alias 'mei::309dcde8-ccb1-4062-8f78-600115a34327:01:'
no matches found for a device alias 'mei::5565a099-7fe2-45c1-a22b-d7e9dfea9a2e:01:'
no matches found for a device alias 'platform:rtsx_pci_sdmmc'
no matches found for a device alias 'acpi:LNXPWRBN:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00ic0Aisc00ip02in0D'
no matches found for a device alias 'pci:v00008086d00009D12sv000017AAsd00005053bc06sc04i00'
no matches found for a device alias 'acpi:PNP0C02:'
no matches found for a device alias 'pci:v00008086d00009D48sv000017AAsd00005053bc06sc01i00'
no matches found for a device alias 'wmi:E2BE5EE3-42DA-49DB-8378-1F5247388202'
no matches found for a device alias 'input:b0011v0002p0007e01B1-e0,1,3,k110,145,148,14A,14D,14E,14F,ra0,1,18,1C,2F,35,36,39,3A,mlsfw'
no matches found for a device alias 'acpi:PNP0C14:'
no matches found for a device alias 'mei::05b79a6f-4628-4d7f-899d-a91514cb32ab:02:'
no matches found for a device alias 'mei::8c2f4425-77d6-4755-aca3-891fdbc66a58:01:'
no matches found for a device alias 'input:b0019v0000p0005e0000-e0,5,kramlsfw0,'
no matches found for a device alias 'usb:v04F2pB52Cd0029dcEFdsc02dp01ic0Eisc02ip00in01'
no matches found for a device alias 'mei::3c4852d6-d47b-4f46-b05e-b5edc1aa440e:01:'
no matches found for a device alias 'mei::bb875e12-cb58-4d14-ae93-8566183c66c7:01:'
no matches found for a device alias 'acpi:PNP0000:'
no matches found for a device alias 'wmi:7364651A-132F-4FE7-ADAA-40C6C7EE2E3B'
no matches found for a device alias 'platform:i8042'
no matches found for a device alias 'acpi:PNP0100:'
no matches found for a device alias 'platform:iTCO_wdt'
no matches found for a device alias 'acpi:INT3394:PNP0C02:'
no matches found for a device alias 'scsi:t-0x00'
no matches found for a device alias 'pci:v00008086d00009D70sv000017AAsd00005053bc04sc03i00'
no matches found for a device alias 'platform:intel_rapl_msr'
no matches found for a device alias 'platform:reg-dummy'
no matches found for a device alias 'acpi:INT3F0D:PNP0C02:'
no matches found for a device alias 'wmi:2651D9FD-911C-4B69-B94E-D0DED5963BD7'
no matches found for a device alias 'wmi:6A4B54EF-A5ED-4D33-9455-B0D9B48DF4B3'
no matches found for a device alias 'acpi:LEN0068:'
no matches found for a device alias 'acpi:PNP0C01:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00icFFisc00ip00in03'
no matches found for a device alias 'platform:regulatory'
no matches found for a device alias 'pci:v000010ECd0000522Asv000017AAsd00005053bcFFsc00i00'
no matches found for a device alias 'wmi:7430019A-DCE9-4548-BAB0-9FDE0935CAFF'
no matches found for a device alias 'acpi:LNXTHERM:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00icFFiscFFipFFin00'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00icFFisc00ip00in02'
no matches found for a device alias 'mei::f908627d-13bf-4a04-b91f-a64e9245323d:01:'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw4,'
no matches found for a device alias 'wmi:8ADB159E-1E32-455C-BC93-308A7ED98246'
no matches found for a device alias 'input:b0019v17AAp5054e4101-e0,1,4,5,k71,72,73,78,8C,8E,90,94,98,9C,9E,AB,AD,BE,BF,C2,CD,D4,D9,E0,E1,E3,E4,EC,ED,EE,F0,174,176,1BC,1BD,1BE,1D2,1DB,1DC,1E5,246,250,27A,ram4,lsfw3,'
no matches found for a device alias 'acpi:LNXSYBUS:'
no matches found for a device alias 'platform:intel_xhci_usb_sw'
no matches found for a device alias 'mei::01e88543-8050-4380-9d6f-4f9cec704917:01:'
no matches found for a device alias 'mei::8e6a6715-9abc-4043-88ef-9e39c6f63e0f:01:'
no matches found for a device alias 'pci:v00008086d00009D3Asv000017AAsd00005053bc07sc80i00'
no matches found for a device alias 'platform:efivars'
no matches found for a device alias 'input:b0011v0001p0001eAB54-e0,1,4,11,14,k71,72,73,74,75,76,77,79,7A,7B,7C,7D,7E,7F,80,8C,8E,8F,9B,9C,9D,9E,9F,A3,A4,A5,A6,AC,AD,B7,B8,B9,D9,E2,ram4,l0,1,2,sfw'
no matches found for a device alias 'platform:rtc-efi'
no matches found for a device alias 'acpi:PNP0C09:'
no matches found for a device alias 'input:b0019v0000p0003e0000-e0,1,k8E,ramlsfw'
no matches found for a device alias 'mei::12f80028-b4b7-4b2d-aca8-46e0ff65814c:01:'
no matches found for a device alias 'mei::55213584-9a29-4916-badf-0fb7ed682aeb:01:'
no matches found for a device alias 'wmi:98479A64-33F5-4E33-A707-8E251EBBC3A1'
no matches found for a device alias 'pci:v00008086d00009D03sv000017AAsd00005053bc01sc06i01'
no matches found for a device alias 'pci:v00008086d000024F3sv00008086sd00000130bc02sc80i00'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,'
no matches found for a device alias 'pci:v00008086d00009D23sv000017AAsd00005053bc0Csc05i00'
no matches found for a device alias 'acpi:PNP0C0A:'
no matches found for a device alias 'mei::b638ab7e-94e2-4ea2-a552-d1c54b627f04:01:'
no matches found for a device alias 'hdaudio:v10EC0293r00100003a01'
no matches found for a device alias 'hdaudio:v80862809r00100000a01'
no matches found for a device alias 'wmi:51F5230E-9677-46CD-A1CF-C0B23EE34DB7'
no matches found for a device alias 'acpi:LNXPOWER:'
no matches found for a device alias 'acpi:PNP0103:'
no matches found for a device alias 'pci:v00008086d00001904sv000017AAsd00005053bc06sc00i00'
no matches found for a device alias 'pci:v00008086d00009D31sv000017AAsd00005053bc11sc80i00'
no matches found for a device alias 'acpi:PNP0C0F:'
no matches found for a device alias 'usb:v1D6Bp0002d0519dc09dsc00dp01ic09isc00ip00in00'
no matches found for a device alias 'usb:v1D6Bp0003d0519dc09dsc00dp03ic09isc00ip00in00'
no matches found for a device alias 'platform:serial8250'
no matches found for a device alias 'pci:v00008086d0000156Fsv000017AAsd00002233bc02sc00i00'
no matches found for a device alias 'wmi:05901221-D566-11D1-B2F0-00A0C9062910'
no matches found for a device alias 'platform:coretemp'
no matches found for a device alias 'platform:alarmtimer'
no matches found for a device alias 'acpi:PNP0C0D:'
no matches found for a device alias 'mei::082ee5a7-7c25-470a-9643-0c06f0466ea1:00:'
no matches found for a device alias 'mei::cea154ea-8ff5-4f94-9290-0bb7355a34db:00:'
no matches found for a device alias 'mei::fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1:01:'
no matches found for a device alias 'acpi:LNXSYSTM:'
no matches found for a device alias 'input:b0003v04F2pB52Ce0029-e0,1,kD4,ramlsfw'
no matches found for a device alias 'pci:v00008086d00009D10sv000017AAsd00005053bc06sc04i00'
no matches found for a device alias 'i2c:spd'
no matches found for a device alias 'acpi:LNXCPU:'
no matches found for a device alias 'wmi:8F4D3679-749E-4479-9B16-C62601FD25F0'
no matches found for a device alias 'pci:v00008086d00009D21sv000017AAsd00005053bc05sc80i00'
Verbouse output with usb keyboard connected
reading /proc/config.gz
active host modules: [encrypted_keys thermal efi_pstore snd_ctl_led snd_hda_codec_generic cpuidle cryptomgr coretemp tpm_tis firmware_attributes_class spurious ac97_bus edac_core battery vt videodev iTCO_wdt snd_seq libahci tcp_cubic rtsx_pci_sdmmc intel_pmc_bxt nmi_backtrace irqbypass xhci_hcd xen 8250 video btrtl cryptd kfence serio shpchp ecdh_generic crc64_rocksoft crypto_simd snd_soc_sst_ipc soundcore srcutree rcupdate crypto_user snd_seq_device random rtc_cmos intel_pch_thermal snd_soc_avs dm_crypt snd_hda_codec_hdmi haltpoll snd_hwdep drm_kms_helper device_hmem pstore sysrq tee snd_intel_sdw_acpi usbnet rtsx_pci processor mii scsi_mod videobuf2_vmalloc kernel mbcache ccm page_alloc crc32c_generic snd_hda_intel iwlmvm crc16 intel_gtt mousedev mei_wdt usbhid ahci pciehp pci_hotplug qcserial gpiolib_acpi i2c_algo_bit at24 mei_hdcp xhci_pci_renesas dm_multipath mei btmtk trusted mac_hid snd_hda_ext_core snd_hda_codec x86_pkg_temp_thermal intel_uncore snd_hda_codec_realtek dynamic_debug snd_soc_acpi_intel_match intel_rapl_msr intel_idle videobuf2_v4l2 keyboard zswap bpf_preload platform_profile drm_display_helper cdc_mbim memory_hotplug intel_cstate tpm_crb serio_raw iwlmei snd_timer ledtrig_audio fb mei_pxp page_reporting mmc_core hid netpoll apparmor usbcore vivaldi_fmap iTCO_vendor_support udmabuf cdc_ncm snd_hrtimer snd_intel_dspcfg ghash_clmulni_intel blk_cgroup pcie_aspm pnp secretmem cdc_wdm rfkill btintel joydev intel_powerclamp snd_compress cpufreq usb_wwan drm_buddy uvcvideo ehci_hcd ipv6 i2c_smbus atkbd bluetooth intel_pmc_core snd_soc_hdac_hda wmi_bmof suspend btbcm crc_t10dif libarc4 fuse thinkpad_acpi mei_me acpiphp iwlwifi libps2 videobuf2_common bnep intel_tcc_cooling configfs e1000e snd_soc_core btusb cec ext4 asn1_encoder tpm_tis_core x_tables blk_crypto xhci_pci rcutree mac80211 i2c_i801 button cdc_ether kvm mc cbc aesni_intel block roles snd_soc_skl crct10dif_pclmul snd_pcm xz_dec rapl snd snd_soc_sst_dsp dm_mod crc32c_intel i915 libata sg kvm_intel psmouse ip_tables i8042 ttm snd_soc_acpi module snd_hda_core intel_rapl_common msr firmware_class wmi acpi clocksource intel_xhci_usb_role_switch think_lmi fscrypto snd_seq_dummy rng_core damon_reclaim uhci_hcd crc32_pclmul printk pcspkr vfat cfg80211 watchdog workqueue tpm fat jbd2 videobuf2_memops drm snd_pcm_dmaengine]
activate module fat
activate module vfat
activate module jbd2
activate module ext4
activate module pstore
activate module mbcache
activate module configfs
activate module fuse
activate module crct10dif_pclmul
activate module crc32_pclmul
activate module ghash_clmulni_intel
activate module crc32c_intel
activate module aesni_intel
activate module cryptomgr
activate module ecdh_generic
activate module cbc
activate module cryptd
activate module crypto_simd
activate module crc32c_generic
activate module crypto_user
activate module ccm
activate module serio_raw
activate module libps2
activate module serio
activate module i8042
activate module atkbd
activate module dm_mod
activate module dm_crypt
activate module dm_multipath
activate module tpm
activate module tpm_crb
activate module tpm_tis_core
activate module tpm_tis
activate module xhci_pci
activate module xhci_pci_renesas
activate module ehci_hcd
activate module uhci_hcd
activate module xhci_hcd
activate module hid
activate module usbhid
activate module ahci
activate module libata
activate module libahci
unable to resolve module name aead2
unable to resolve module name nls
unable to resolve module name aead2
unable to resolve module name nls
unable to resolve module name platform:gpio_keys_polled
unable to resolve module name vfio_iommu_spapr_tce
module 'edac_core' currently used at the host but was not added to the image
module 'mii' currently used at the host but was not added to the image
module 'mei' currently used at the host but was not added to the image
module 'snd_soc_acpi_intel_match' currently used at the host but was not added to the image
module 'x86_pkg_temp_thermal' currently used at the host but was not added to the image
module 'page_alloc' currently used at the host but was not added to the image
module 'secretmem' currently used at the host but was not added to the image
module 'i915' currently used at the host but was not added to the image
module 'random' currently used at the host but was not added to the image
module 'sysrq' currently used at the host but was not added to the image
module 'usbnet' currently used at the host but was not added to the image
module 'intel_rapl_msr' currently used at the host but was not added to the image
module 'drm_display_helper' currently used at the host but was not added to the image
module 'button' currently used at the host but was not added to the image
module 'acpi' currently used at the host but was not added to the image
module 'snd_hda_core' currently used at the host but was not added to the image
module 'kernel' currently used at the host but was not added to the image
module 'intel_gtt' currently used at the host but was not added to the image
module 'pciehp' currently used at the host but was not added to the image
module 'wmi_bmof' currently used at the host but was not added to the image
module 'ip_tables' currently used at the host but was not added to the image
module 'rtsx_pci' currently used at the host but was not added to the image
module 'intel_uncore' currently used at the host but was not added to the image
module 'video' currently used at the host but was not added to the image
module 'scsi_mod' currently used at the host but was not added to the image
module 'snd_soc_core' currently used at the host but was not added to the image
module 'rtc_cmos' currently used at the host but was not added to the image
module 'snd_hda_codec_hdmi' currently used at the host but was not added to the image
module 'iwlmvm' currently used at the host but was not added to the image
module 'spurious' currently used at the host but was not added to the image
module 'crc64_rocksoft' currently used at the host but was not added to the image
module 'dynamic_debug' currently used at the host but was not added to the image
module 'watchdog' currently used at the host but was not added to the image
module 'snd_soc_hdac_hda' currently used at the host but was not added to the image
module 'snd_ctl_led' currently used at the host but was not added to the image
module 'snd_seq_device' currently used at the host but was not added to the image
module 'haltpoll' currently used at the host but was not added to the image
module 'cpufreq' currently used at the host but was not added to the image
module 'snd_soc_acpi' currently used at the host but was not added to the image
module 'pcie_aspm' currently used at the host but was not added to the image
module 'uvcvideo' currently used at the host but was not added to the image
module 'suspend' currently used at the host but was not added to the image
module 'thinkpad_acpi' currently used at the host but was not added to the image
module 'mei_me' currently used at the host but was not added to the image
module 'xen' currently used at the host but was not added to the image
module 'mc' currently used at the host but was not added to the image
module 'psmouse' currently used at the host but was not added to the image
module 'iTCO_vendor_support' currently used at the host but was not added to the image
module 'iwlwifi' currently used at the host but was not added to the image
module 'intel_xhci_usb_role_switch' currently used at the host but was not added to the image
module 'mei_pxp' currently used at the host but was not added to the image
module 'intel_tcc_cooling' currently used at the host but was not added to the image
module 'netpoll' currently used at the host but was not added to the image
module 'snd_intel_dspcfg' currently used at the host but was not added to the image
module 'drm_buddy' currently used at the host but was not added to the image
module 'videobuf2_memops' currently used at the host but was not added to the image
module 'usbcore' currently used at the host but was not added to the image
module 'snd_soc_sst_dsp' currently used at the host but was not added to the image
module 'iTCO_wdt' currently used at the host but was not added to the image
module 'coretemp' currently used at the host but was not added to the image
module 'thermal' currently used at the host but was not added to the image
module 'processor' currently used at the host but was not added to the image
module 'fb' currently used at the host but was not added to the image
module 'apparmor' currently used at the host but was not added to the image
module 'crc_t10dif' currently used at the host but was not added to the image
module 'snd' currently used at the host but was not added to the image
module 'firmware_class' currently used at the host but was not added to the image
module 'ac97_bus' currently used at the host but was not added to the image
module 'page_reporting' currently used at the host but was not added to the image
module 'rapl' currently used at the host but was not added to the image
module 'snd_intel_sdw_acpi' currently used at the host but was not added to the image
module 'snd_soc_skl' currently used at the host but was not added to the image
module 'module' currently used at the host but was not added to the image
module 'battery' currently used at the host but was not added to the image
module '8250' currently used at the host but was not added to the image
module 'videobuf2_v4l2' currently used at the host but was not added to the image
module 'irqbypass' currently used at the host but was not added to the image
module 'btbcm' currently used at the host but was not added to the image
module 'pci_hotplug' currently used at the host but was not added to the image
module 'i2c_i801' currently used at the host but was not added to the image
module 'mac_hid' currently used at the host but was not added to the image
module 'intel_idle' currently used at the host but was not added to the image
module 'pnp' currently used at the host but was not added to the image
module 'damon_reclaim' currently used at the host but was not added to the image
module 'snd_compress' currently used at the host but was not added to the image
module 'rcutree' currently used at the host but was not added to the image
module 'device_hmem' currently used at the host but was not added to the image
module 'usb_wwan' currently used at the host but was not added to the image
module 'bnep' currently used at the host but was not added to the image
module 'btrtl' currently used at the host but was not added to the image
module 'kfence' currently used at the host but was not added to the image
module 'qcserial' currently used at the host but was not added to the image
module 'gpiolib_acpi' currently used at the host but was not added to the image
module 'udmabuf' currently used at the host but was not added to the image
module 'snd_hwdep' currently used at the host but was not added to the image
module 'snd_timer' currently used at the host but was not added to the image
module 'nmi_backtrace' currently used at the host but was not added to the image
module 'rcupdate' currently used at the host but was not added to the image
module 'intel_pch_thermal' currently used at the host but was not added to the image
module 'blk_cgroup' currently used at the host but was not added to the image
module 'intel_rapl_common' currently used at the host but was not added to the image
module 'wmi' currently used at the host but was not added to the image
module 'tcp_cubic' currently used at the host but was not added to the image
module 'snd_hrtimer' currently used at the host but was not added to the image
module 'e1000e' currently used at the host but was not added to the image
module 'snd_pcm' currently used at the host but was not added to the image
module 'cfg80211' currently used at the host but was not added to the image
module 'keyboard' currently used at the host but was not added to the image
module 'memory_hotplug' currently used at the host but was not added to the image
module 'ipv6' currently used at the host but was not added to the image
module 'pcspkr' currently used at the host but was not added to the image
module 'cpuidle' currently used at the host but was not added to the image
module 'firmware_attributes_class' currently used at the host but was not added to the image
module 'shpchp' currently used at the host but was not added to the image
module 'mousedev' currently used at the host but was not added to the image
module 'bluetooth' currently used at the host but was not added to the image
module 'ttm' currently used at the host but was not added to the image
module 'think_lmi' currently used at the host but was not added to the image
module 'printk' currently used at the host but was not added to the image
module 'intel_pmc_bxt' currently used at the host but was not added to the image
module 'soundcore' currently used at the host but was not added to the image
module 'mei_hdcp' currently used at the host but was not added to the image
module 'acpiphp' currently used at the host but was not added to the image
module 'x_tables' currently used at the host but was not added to the image
module 'ledtrig_audio' currently used at the host but was not added to the image
module 'libarc4' currently used at the host but was not added to the image
module 'videobuf2_common' currently used at the host but was not added to the image
module 'snd_seq_dummy' currently used at the host but was not added to the image
module 'fscrypto' currently used at the host but was not added to the image
module 'snd_seq' currently used at the host but was not added to the image
module 'drm_kms_helper' currently used at the host but was not added to the image
module 'i2c_algo_bit' currently used at the host but was not added to the image
module 'rfkill' currently used at the host but was not added to the image
module 'intel_pmc_core' currently used at the host but was not added to the image
module 'kvm_intel' currently used at the host but was not added to the image
module 'videodev' currently used at the host but was not added to the image
module 'snd_soc_sst_ipc' currently used at the host but was not added to the image
module 'snd_hda_codec_generic' currently used at the host but was not added to the image
module 'vt' currently used at the host but was not added to the image
module 'cdc_ncm' currently used at the host but was not added to the image
module 'btmtk' currently used at the host but was not added to the image
module 'workqueue' currently used at the host but was not added to the image
module 'btintel' currently used at the host but was not added to the image
module 'snd_soc_avs' currently used at the host but was not added to the image
module 'at24' currently used at the host but was not added to the image
module 'roles' currently used at the host but was not added to the image
module 'efi_pstore' currently used at the host but was not added to the image
module 'videobuf2_vmalloc' currently used at the host but was not added to the image
module 'cdc_mbim' currently used at the host but was not added to the image
module 'bpf_preload' currently used at the host but was not added to the image
module 'btusb' currently used at the host but was not added to the image
module 'sg' currently used at the host but was not added to the image
module 'rtsx_pci_sdmmc' currently used at the host but was not added to the image
module 'clocksource' currently used at the host but was not added to the image
module 'snd_hda_intel' currently used at the host but was not added to the image
module 'snd_hda_codec_realtek' currently used at the host but was not added to the image
module 'cdc_ether' currently used at the host but was not added to the image
module 'platform_profile' currently used at the host but was not added to the image
module 'joydev' currently used at the host but was not added to the image
module 'msr' currently used at the host but was not added to the image
module 'mei_wdt' currently used at the host but was not added to the image
module 'zswap' currently used at the host but was not added to the image
module 'mac80211' currently used at the host but was not added to the image
module 'block' currently used at the host but was not added to the image
module 'intel_powerclamp' currently used at the host but was not added to the image
module 'blk_crypto' currently used at the host but was not added to the image
module 'kvm' currently used at the host but was not added to the image
module 'srcutree' currently used at the host but was not added to the image
module 'cec' currently used at the host but was not added to the image
module 'iwlmei' currently used at the host but was not added to the image
module 'mmc_core' currently used at the host but was not added to the image
module 'cdc_wdm' currently used at the host but was not added to the image
module 'i2c_smbus' currently used at the host but was not added to the image
module 'snd_pcm_dmaengine' currently used at the host but was not added to the image
module 'drm' currently used at the host but was not added to the image
module 'snd_hda_codec' currently used at the host but was not added to the image
module 'intel_cstate' currently used at the host but was not added to the image
module 'xz_dec' currently used at the host but was not added to the image
module 'snd_hda_ext_core' currently used at the host but was not added to the image
module xhci_pci depends on firmware renesas_usb_fw.mem but the firmware file does not exist
no matches found for a device alias 'usb:v1D6Bp0002d0519dc09dsc00dp01ic09isc00ip00in00'
no matches found for a device alias 'hid:b0003g0001v0000046Dp0000C31C'
no matches found for a device alias 'pci:v00008086d00009D70sv000017AAsd00005053bc04sc03i00'
no matches found for a device alias 'platform:coretemp'
no matches found for a device alias 'scsi:t-0x00'
no matches found for a device alias 'input:b0011v0002p000Ae0000-e0,1,2,k110,111,112,r0,1,amlsfw'
no matches found for a device alias 'acpi:LNXVIDEO:'
no matches found for a device alias 'acpi:PNP0C0D:'
no matches found for a device alias 'platform:serial8250'
no matches found for a device alias 'platform:thinkpad_hwmon'
no matches found for a device alias 'dmi:bvnLENOVO:bvrR06ET71W(1.45):bd02/21/2022:br1.45:efr1.12:svnLENOVO:pn20FMS27L0P:pvrThinkPadT460:rvnLENOVO:rn20FMS27L0P:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20FM_BU_Think_FM_ThinkPadT460:'
no matches found for a device alias 'acpi:LNXCPU:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00ic02isc0Eip00in0C'
no matches found for a device alias 'usb:v17EFp100Fd0001dc09dsc00dp02ic09isc00ip02in00'
no matches found for a device alias 'mei::5565a099-7fe2-45c1-a22b-d7e9dfea9a2e:01:'
no matches found for a device alias 'wmi:7EEF04FF-4328-447C-B5BB-D449925D538D'
no matches found for a device alias 'pci:v00008086d000024F3sv00008086sd00000130bc02sc80i00'
no matches found for a device alias 'input:b0019v0000p0006e0000-e0,1,kE0,E1,E3,F1,F2,F3,F4,F5,ramlsfw'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00icFFiscFFipFFin00'
no matches found for a device alias 'mei::dba4d603-d7ed-4931-8823-17ad585705d5:01:'
no matches found for a device alias 'platform:rtsx_pci_sdmmc'
no matches found for a device alias 'platform:alarmtimer'
no matches found for a device alias 'acpi:LNXPOWER:'
no matches found for a device alias 'mei::55213584-9a29-4916-badf-0fb7ed682aeb:01:'
no matches found for a device alias 'mei::fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1:01:'
no matches found for a device alias 'acpi:PNP0100:'
no matches found for a device alias 'acpi:LEN0068:'
no matches found for a device alias 'acpi:LNXSYSTM:'
no matches found for a device alias 'pci:v00008086d00001904sv000017AAsd00005053bc06sc00i00'
no matches found for a device alias 'usb:v17EFp1010d5031dc09dsc00dp03ic09isc00ip00in00'
no matches found for a device alias 'mei::f908627d-13bf-4a04-b91f-a64e9245323d:01:'
no matches found for a device alias 'platform:intel_pmc_core'
no matches found for a device alias 'acpi:PNP0C02:'
no matches found for a device alias 'input:b0019v0000p0003e0000-e0,1,k8E,ramlsfw'
no matches found for a device alias 'usb:v0451p8342d0100dc09dsc00dp02ic09isc00ip02in00'
no matches found for a device alias 'serio:ty05pr00id00ex00'
no matches found for a device alias 'platform:rtc-efi'
no matches found for a device alias 'mei::8c2f4425-77d6-4755-aca3-891fdbc66a58:01:'
no matches found for a device alias 'pci:v00008086d00009D03sv000017AAsd00005053bc01sc06i01'
no matches found for a device alias 'pci:v00008086d00009D23sv000017AAsd00005053bc0Csc05i00'
no matches found for a device alias 'wmi:51F5230E-9677-46CD-A1CF-C0B23EE34DB7'
no matches found for a device alias 'wmi:98479A64-33F5-4E33-A707-8E251EBBC3A1'
no matches found for a device alias 'platform:intel_rapl_msr'
no matches found for a device alias 'acpi:INT0E0C:'
no matches found for a device alias 'acpi:PNP0B00:'
no matches found for a device alias 'acpi:PNP0C01:'
no matches found for a device alias 'platform:reg-dummy'
no matches found for a device alias 'pci:v00008086d00009D31sv000017AAsd00005053bc11sc80i00'
no matches found for a device alias 'mei::309dcde8-ccb1-4062-8f78-600115a34327:01:'
no matches found for a device alias 'platform:i8042'
no matches found for a device alias 'platform:snd-soc-dummy'
no matches found for a device alias 'acpi:INT3394:PNP0C02:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00icFFisc00ip00in02'
no matches found for a device alias 'usb:v17EFp1010d5030dc09dsc00dp01ic09isc00ip00in00'
no matches found for a device alias 'mei::3c4852d6-d47b-4f46-b05e-b5edc1aa440e:01:'
no matches found for a device alias 'acpi:PNP0C0E:'
no matches found for a device alias 'input:b0003v04F2pB52Ce0029-e0,1,kD4,ramlsfw'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00ic0Aisc00ip02in0D'
no matches found for a device alias 'mei::bb875e12-cb58-4d14-ae93-8566183c66c7:01:'
no matches found for a device alias 'platform:thinkpad_acpi'
no matches found for a device alias 'acpi:PNP0A08:PNP0A03:'
no matches found for a device alias 'acpi:LNXSYBUS:'
no matches found for a device alias 'usb:v1D6Bp0003d0519dc09dsc00dp03ic09isc00ip00in00'
no matches found for a device alias 'pci:v00008086d00009D48sv000017AAsd00005053bc06sc01i00'
no matches found for a device alias 'platform:iTCO_wdt'
no matches found for a device alias 'acpi:PNP0C0A:'
no matches found for a device alias 'hid:b0003g0001v00000451p000082FF'
no matches found for a device alias 'mei::8e6a6715-9abc-4043-88ef-9e39c6f63e0f:01:'
no matches found for a device alias 'pci:v00008086d00009D3Asv000017AAsd00005053bc07sc80i00'
no matches found for a device alias 'wmi:85D2E869-365A-4ACE-A4D3-CD692B1698A0'
no matches found for a device alias 'acpi:PNP0800:'
no matches found for a device alias 'usb:v0451p8340d0100dc09dsc00dp03ic09isc00ip00in00'
no matches found for a device alias 'wmi:74F1EBB6-927A-4C7D-95DF-698E21E80EB5'
no matches found for a device alias 'acpi:ACPI0003:'
no matches found for a device alias 'platform:efivars'
no matches found for a device alias 'acpi:PNP0103:'
no matches found for a device alias 'acpi:PNP0C0F:'
no matches found for a device alias 'input:b0019v17AAp5054e4101-e0,1,4,5,k71,72,73,78,8C,8E,90,94,98,9C,9E,AB,AD,BE,BF,C2,CD,D4,D9,E0,E1,E3,E4,EC,ED,EE,F0,174,176,1BC,1BD,1BE,1D2,1DB,1DC,1E5,246,250,27A,ram4,lsfw3,'
no matches found for a device alias 'acpi:PNP0C09:'
no matches found for a device alias 'usb:v04F2pB52Cd0029dcEFdsc02dp01ic0Eisc01ip00in00'
no matches found for a device alias 'mei::05b79a6f-4628-4d7f-899d-a91514cb32ab:02:'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,'
no matches found for a device alias 'wmi:8F4D3679-749E-4479-9B16-C62601FD25F0'
no matches found for a device alias 'platform:pcspkr'
no matches found for a device alias 'usb:v04F2pB52Cd0029dcEFdsc02dp01ic0Eisc02ip00in01'
no matches found for a device alias 'mei::42b3ce2f-bd9f-485a-96ae-26406230b1ff:01:'
no matches found for a device alias 'pci:v00008086d00009D10sv000017AAsd00005053bc06sc04i00'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw2,'
no matches found for a device alias 'wmi:7364651A-132F-4FE7-ADAA-40C6C7EE2E3B'
no matches found for a device alias 'wmi:E2BE5EE3-42DA-49DB-8378-1F5247388202'
no matches found for a device alias 'pci:v00008086d00009D12sv000017AAsd00005053bc06sc04i00'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw4,'
no matches found for a device alias 'wmi:2651D9FD-911C-4B69-B94E-D0DED5963BD7'
no matches found for a device alias 'wmi:8ADB159E-1E32-455C-BC93-308A7ED98246'
no matches found for a device alias 'input:b0019v0000p0001e0000-e0,1,k74,ramlsfw'
no matches found for a device alias 'acpi:PNP0C14:'
no matches found for a device alias 'input:b0003v046DpC31Ce0110-e0,1,3,4,k71,72,73,80,8C,90,9B,9C,9E,9F,A1,A3,A4,A5,A6,A8,AB,AC,AD,D0,D9,ra20,m4,lsfw'
no matches found for a device alias 'wmi:7FF47003-3B6C-4E5E-A227-E979824A85D1'
no matches found for a device alias 'acpi:INT3F0D:PNP0C02:'
no matches found for a device alias 'acpi:PNP0000:'
no matches found for a device alias 'usb:v1199p9079d0006dc00dsc00dp00icFFisc00ip00in03'
no matches found for a device alias 'mei::cea154ea-8ff5-4f94-9290-0bb7355a34db:00:'
no matches found for a device alias 'input:b0010v001Fp0001e0100-e0,12,kramls1,2,fw'
no matches found for a device alias 'input:b0019v0000p0005e0000-e0,5,kramlsfw0,'
no matches found for a device alias 'usb:v058Fp9540d0120dc00dsc00dp00ic0Bisc00ip00in00'
no matches found for a device alias 'wmi:6A4B54EF-A5ED-4D33-9455-B0D9B48DF4B3'
no matches found for a device alias 'input:b0011v0002p0007e01B1-e0,1,3,k110,145,148,14A,14D,14E,14F,ra0,1,18,1C,2F,35,36,39,3A,mlsfw'
no matches found for a device alias 'mei::12f80028-b4b7-4b2d-aca8-46e0ff65814c:01:'
no matches found for a device alias 'pci:v000010ECd0000522Asv000017AAsd00005053bcFFsc00i00'
no matches found for a device alias 'wmi:7430019A-DCE9-4548-BAB0-9FDE0935CAFF'
no matches found for a device alias 'input:b0003v046DpC077e0111-e0,1,2,4,k110,111,112,r0,1,8,B,am4,lsfw'
no matches found for a device alias 'mei::01e88543-8050-4380-9d6f-4f9cec704917:01:'
no matches found for a device alias 'input:b0011v0001p0001eAB54-e0,1,4,11,14,k71,72,73,74,75,76,77,79,7A,7B,7C,7D,7E,7F,80,8C,8E,8F,9B,9C,9D,9E,9F,A3,A4,A5,A6,AC,AD,B7,B8,B9,D9,E2,ram4,l0,1,2,sfw'
no matches found for a device alias 'acpi:LNXPWRBN:'
no matches found for a device alias 'acpi:LNXTHERM:'
no matches found for a device alias 'hdaudio:v80862809r00100000a01'
no matches found for a device alias 'hid:b0003g0001v0000046Dp0000C077'
no matches found for a device alias 'mei::082ee5a7-7c25-470a-9643-0c06f0466ea1:00:'
no matches found for a device alias 'i2c:spd'
no matches found for a device alias 'platform:regulatory'
no matches found for a device alias 'platform:microcode'
no matches found for a device alias 'pci:v00008086d00001916sv000017AAsd00005053bc03sc00i00'
no matches found for a device alias 'input:b0003v046DpC31Ce0110-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,8C,8E,96,98,9E,9F,A1,A3,A4,A5,A6,AD,B0,B1,B2,B3,B4,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,3,4,sfw'
no matches found for a device alias 'input:b0003v046DpC31Ce0110-e0,1,4,k74,8E,8F,ram4,lsfw'
no matches found for a device alias 'mei::b638ab7e-94e2-4ea2-a552-d1c54b627f04:01:'
no matches found for a device alias 'pci:v00008086d00009D21sv000017AAsd00005053bc05sc80i00'
no matches found for a device alias 'hdaudio:v10EC0293r00100003a01'
no matches found for a device alias 'platform:intel_xhci_usb_sw'
no matches found for a device alias 'pci:v00008086d0000156Fsv000017AAsd00002233bc02sc00i00'
no matches found for a device alias 'wmi:05901221-D566-11D1-B2F0-00A0C9062910'
no matches found for a device alias 'wmi:FCB424F1-075A-4E0E-BFC4-62F3E71771FA'

Got it.

So basically you want to enable a universal mode only for some specific modules. So I am thinking about what would be the best solution for it.

Adding a new parameter is one option.

Though I prefer to have a good heuristic without adding a new parameter if possible. One way here would be disabling modalias filtering if the module is explicitly mentioned at 'modules' or 'modules_force_load' line.

The third option is to disable modalias filtering completely. Currently Linux kernel has a bunch of quirks with the modaliases. Some modules expect modaliases but never declare it in sysfs. See

addAllAliasesForModules := []string{
and bugs #90 and #121