diff options
author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:23:04 -0300 |
---|---|---|
committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:23:04 -0300 |
commit | 76e1a7480ed7a77a442dee8b63574c8516cacdd2 (patch) | |
tree | f4b7997875f37b1ae97ea5f4773aebfa9a96965a /modules/devices.c | |
parent | 4212b15b19d6c9db8d2f9fed92e5b9675b2cfe9c (diff) | |
parent | f70f209239d51a5893f8f9f080b19b6ee94ff4af (diff) |
Update upstream source from tag 'upstream/2.0.9pre'
Update to upstream version '2.0.9pre'
with Debian dir 817dddd03e0e9bc80d4f80e98431c08f4e402b1e
Diffstat (limited to 'modules/devices.c')
-rw-r--r-- | modules/devices.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/devices.c b/modules/devices.c index dd51b482..7e9eef6d 100644 --- a/modules/devices.c +++ b/modules/devices.c @@ -840,28 +840,34 @@ void hi_module_init(void) { .name = N_("Update PCI ID listing"), .file_name = "pci.ids", + .optional = TRUE, }, { .name = N_("Update USB ID listing"), .file_name = "usb.ids", + .optional = TRUE, }, { .name = N_("Update EDID vendor codes"), .file_name = "edid.ids", + .optional = TRUE, }, { .name = N_("Update IEEE OUI vendor codes"), .file_name = "ieee_oui.ids", + .optional = TRUE, }, { .name = N_("Update SD card manufacturer information"), .file_name = "sdcard.ids", + .optional = TRUE, }, #ifdef ARCH_x86 #if JSON_CHECK_VERSION(0,20,0) { .name = N_("Update CPU flags database"), .file_name = "cpuflags.json", + .optional = TRUE, }, #endif #endif |