mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 11:30:57 +00:00

Correctly attach into the alternate mode after the update has completed. The vendor was appending two files to make LVFS distribution 'easier' but I'd much rather use the same deliverables as Windows. This also allows us to simplify the firmware loading.
36 lines
606 B
Meson
36 lines
606 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginCcgx"']
|
|
|
|
install_data([
|
|
'ccgx-ids.quirk',
|
|
'ccgx.quirk',
|
|
],
|
|
install_dir: join_paths(datadir, 'fwupd', 'quirks.d')
|
|
)
|
|
|
|
shared_module('fu_plugin_ccgx',
|
|
fu_hash,
|
|
sources : [
|
|
'fu-plugin-ccgx.c',
|
|
'fu-ccgx-common.c',
|
|
'fu-ccgx-firmware.c',
|
|
'fu-ccgx-hid-device.c',
|
|
'fu-ccgx-hpi-device.c',
|
|
],
|
|
include_directories : [
|
|
root_incdir,
|
|
fwupd_incdir,
|
|
fwupdplugin_incdir,
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
link_with : [
|
|
fwupd,
|
|
fwupdplugin,
|
|
],
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
gudev,
|
|
],
|
|
)
|