mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-14 14:22:13 +00:00
Add a configure switch for the LVFS remotes
On embedded devices these are not required.
This commit is contained in:
parent
3a0d3d5b58
commit
d067ed675e
@ -1,9 +1,12 @@
|
|||||||
|
if get_option('enable-lvfs')
|
||||||
install_data([
|
install_data([
|
||||||
'lvfs.conf',
|
'lvfs.conf',
|
||||||
'lvfs-testing.conf',
|
'lvfs-testing.conf',
|
||||||
],
|
],
|
||||||
install_dir : join_paths(get_option('sysconfdir'), 'fwupd', 'remotes.d')
|
install_dir : join_paths(get_option('sysconfdir'), 'fwupd', 'remotes.d')
|
||||||
)
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
install_data('README.md',
|
install_data('README.md',
|
||||||
install_dir : join_paths(get_option('datadir'), 'fwupd', 'remotes.d', 'vendor', 'firmware')
|
install_dir : join_paths(get_option('datadir'), 'fwupd', 'remotes.d', 'vendor', 'firmware')
|
||||||
)
|
)
|
||||||
|
@ -2,6 +2,7 @@ option('enable-doc', type : 'boolean', value : true, description : 'enable devel
|
|||||||
option('enable-introspection', type : 'boolean', value : true, description : 'generate GObject Introspection data')
|
option('enable-introspection', type : 'boolean', value : true, description : 'generate GObject Introspection data')
|
||||||
option('enable-man', type : 'boolean', value : true, description : 'enable man pages')
|
option('enable-man', type : 'boolean', value : true, description : 'enable man pages')
|
||||||
option('enable-tests', type : 'boolean', value : true, description : 'enable tests')
|
option('enable-tests', type : 'boolean', value : true, description : 'enable tests')
|
||||||
|
option('enable-lvfs', type : 'boolean', value : true, description : 'enable LVFS remotes')
|
||||||
option('enable-colorhug', type : 'boolean', value : true, description : 'enable ColorHug support')
|
option('enable-colorhug', type : 'boolean', value : true, description : 'enable ColorHug support')
|
||||||
option('enable-libelf', type : 'boolean', value : true, description : 'enable libelf support')
|
option('enable-libelf', type : 'boolean', value : true, description : 'enable libelf support')
|
||||||
option('enable-uefi', type : 'boolean', value : true, description : 'enable UEFI support')
|
option('enable-uefi', type : 'boolean', value : true, description : 'enable UEFI support')
|
||||||
|
Loading…
Reference in New Issue
Block a user