mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-24 21:57:48 +00:00

Add the mbim-qdu support for firmware downloading, it will be used for T99W175 module of Foxconn. Signed-off-by: Jarvis Jiang <jarvis.w.jiang@gmail.com>
39 lines
692 B
Meson
39 lines
692 B
Meson
if get_option('plugin_modem_manager')
|
|
cargs = ['-DG_LOG_DOMAIN="FuPluginMm"']
|
|
|
|
install_data(['modem-manager.quirk'],
|
|
install_dir: join_paths(datadir, 'fwupd', 'quirks.d')
|
|
)
|
|
|
|
shared_module('fu_plugin_modem_manager',
|
|
fu_hash,
|
|
sources : [
|
|
'fu-plugin-modem-manager.c',
|
|
'fu-mm-device.c',
|
|
'fu-qmi-pdc-updater.c',
|
|
'fu-mbim-qdu-updater.c',
|
|
'fu-mm-utils.c'
|
|
],
|
|
include_directories : [
|
|
root_incdir,
|
|
fwupd_incdir,
|
|
fwupdplugin_incdir,
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
c_args : [
|
|
cargs,
|
|
],
|
|
link_with : [
|
|
fwupd,
|
|
fwupdplugin,
|
|
],
|
|
dependencies : [
|
|
plugin_deps,
|
|
libmm_glib,
|
|
libqmi_glib,
|
|
libmbim_glib,
|
|
],
|
|
)
|
|
endif
|