summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/fwupd/add-option-for-installation-sysconfdir.patch
blob: 2a6ae96cef119de24bcc0259f5b04f7c2e993db4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
diff --git a/data/bios-settings.d/meson.build b/data/bios-settings.d/meson.build
index b0ff5b106..13ac380d0 100644
--- a/data/bios-settings.d/meson.build
+++ b/data/bios-settings.d/meson.build
@@ -1,5 +1,5 @@
 if build_standalone and host_machine.system() == 'linux'
 install_data('README.md',
-  install_dir: join_paths(sysconfdir, 'fwupd', 'bios-settings.d')
+  install_dir: join_paths(sysconfdir_install, 'fwupd', 'bios-settings.d')
 )
 endif
diff --git a/data/meson.build b/data/meson.build
index 3a77a7bfc..747bd1988 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -26,7 +26,7 @@ endif
 
 if build_standalone
   install_data(['daemon.conf'],
-    install_dir: join_paths(sysconfdir, 'fwupd')
+    install_dir: join_paths(sysconfdir_install, 'fwupd')
   )
   plugin_quirks += join_paths(meson.current_source_dir(), 'power.quirk')
   plugin_quirks += join_paths(meson.current_source_dir(), 'cfi.quirk')
diff --git a/data/pki/meson.build b/data/pki/meson.build
index 3649fecea..c3462744b 100644
--- a/data/pki/meson.build
+++ b/data/pki/meson.build
@@ -12,13 +12,13 @@ install_data([
     'GPG-KEY-Linux-Foundation-Firmware',
     'GPG-KEY-Linux-Vendor-Firmware-Service',
   ],
-  install_dir: join_paths(sysconfdir, 'pki', 'fwupd')
+  install_dir: join_paths(sysconfdir_install, 'pki', 'fwupd')
 )
 install_data([
     'GPG-KEY-Linux-Foundation-Metadata',
     'GPG-KEY-Linux-Vendor-Firmware-Service',
   ],
-  install_dir: join_paths(sysconfdir, 'pki', 'fwupd-metadata')
+  install_dir: join_paths(sysconfdir_install, 'pki', 'fwupd-metadata')
 )
 endif
 
@@ -26,11 +26,11 @@ if supported_pkcs7
 install_data([
     'LVFS-CA.pem',
   ],
-  install_dir: join_paths(sysconfdir, 'pki', 'fwupd')
+  install_dir: join_paths(sysconfdir_install, 'pki', 'fwupd')
 )
 install_data([
     'LVFS-CA.pem',
   ],
-  install_dir: join_paths(sysconfdir, 'pki', 'fwupd-metadata')
+  install_dir: join_paths(sysconfdir_install, 'pki', 'fwupd-metadata')
 )
 endif
diff --git a/data/remotes.d/meson.build b/data/remotes.d/meson.build
index 1d1698a7e..5469d00a6 100644
--- a/data/remotes.d/meson.build
+++ b/data/remotes.d/meson.build
@@ -2,7 +2,7 @@ if build_standalone and get_option('lvfs') != 'false'
   install_data([
       'lvfs-testing.conf',
     ],
-    install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d')
+    install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d')
   )
   con3 = configuration_data()
   if get_option('lvfs') == 'disabled'
@@ -15,7 +15,7 @@ if build_standalone and get_option('lvfs') != 'false'
     output: 'lvfs.conf',
     configuration: con3,
     install: true,
-    install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
+    install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
   )
   i18n.merge_file(
     input: 'lvfs.metainfo.xml',
@@ -49,12 +49,12 @@ configure_file(
   output: 'vendor.conf',
   configuration: con2,
   install: true,
-  install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
+  install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
 )
 configure_file(
   input: 'vendor-directory.conf',
   output: 'vendor-directory.conf',
   configuration: con2,
   install: true,
-  install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
+  install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
 )
diff --git a/meson.build b/meson.build
index e7980e965..2c66e2dc4 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,12 @@ endif
 mandir = join_paths(prefix, get_option('mandir'))
 localedir = join_paths(prefix, get_option('localedir'))
 
+if get_option('sysconfdir_install') != ''
+  sysconfdir_install = join_paths(prefix, get_option('sysconfdir_install'))
+else
+  sysconfdir_install = sysconfdir
+endif
+
 diffcmd = find_program('diff')
 gio = dependency('gio-2.0', version: '>= 2.45.8')
 giounix = dependency('gio-unix-2.0', version: '>= 2.45.8', required: false)
diff --git a/meson_options.txt b/meson_options.txt
index 6cf92e72e..2e8568292 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,3 +1,4 @@
+option('sysconfdir_install', type: 'string', value: '', description: 'sysconfdir to use during installation')
 option('build', type : 'combo', choices : ['all', 'standalone', 'library'], value : 'all', description : 'build type')
 option('consolekit', type : 'feature', description : 'ConsoleKit support', deprecated: {'true': 'enabled', 'false': 'disabled'})
 option('static_analysis', type : 'boolean', value : false, description : 'enable GCC static analysis support')
diff --git a/plugins/dell-esrt/meson.build b/plugins/dell-esrt/meson.build
index 67bd3b9d9..ad04a91b6 100644
--- a/plugins/dell-esrt/meson.build
+++ b/plugins/dell-esrt/meson.build
@@ -38,6 +38,6 @@ configure_file(
   output: 'dell-esrt.conf',
   configuration: con2,
   install: true,
-  install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
+  install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
 )
 endif
diff --git a/plugins/msr/meson.build b/plugins/msr/meson.build
index d626c3ad3..5a2f847d5 100644
--- a/plugins/msr/meson.build
+++ b/plugins/msr/meson.build
@@ -10,7 +10,7 @@ install_data(['fwupd-msr.conf'],
 endif
 
 install_data(['msr.conf'],
-  install_dir: join_paths(sysconfdir, 'fwupd')
+  install_dir: join_paths(sysconfdir_install, 'fwupd')
 )
 shared_module('fu_plugin_msr',
   fu_hash,
diff --git a/plugins/redfish/meson.build b/plugins/redfish/meson.build
index 95606e478..e5355e520 100644
--- a/plugins/redfish/meson.build
+++ b/plugins/redfish/meson.build
@@ -43,7 +43,7 @@ shared_module('fu_plugin_redfish',
 )
 
 install_data(['redfish.conf'],
-  install_dir: join_paths(sysconfdir, 'fwupd'),
+  install_dir: join_paths(sysconfdir_install, 'fwupd'),
 )
 
 if get_option('tests')
diff --git a/plugins/thunderbolt/meson.build b/plugins/thunderbolt/meson.build
index 5f8ffbf90..9ba323e75 100644
--- a/plugins/thunderbolt/meson.build
+++ b/plugins/thunderbolt/meson.build
@@ -32,7 +32,7 @@ fu_plugin_thunderbolt = shared_module('fu_plugin_thunderbolt',
 )
 
 install_data(['thunderbolt.conf'],
-  install_dir: join_paths(sysconfdir, 'fwupd')
+  install_dir: join_paths(sysconfdir_install, 'fwupd')
 )
 # we use functions from 2.52 in the tests
 if get_option('tests') and run_sanitize_unsafe_tests and umockdev.found() and gio.version().version_compare('>= 2.52')
diff --git a/plugins/uefi-capsule/meson.build b/plugins/uefi-capsule/meson.build
index ef38dc03e..78ff65e1d 100644
--- a/plugins/uefi-capsule/meson.build
+++ b/plugins/uefi-capsule/meson.build
@@ -20,7 +20,7 @@ if host_machine.system() == 'linux'
     output: '35_fwupd',
     configuration: con2,
     install: true,
-    install_dir: join_paths(sysconfdir, 'grub.d')
+    install_dir: join_paths(sysconfdir_install, 'grub.d')
   )
 elif host_machine.system() == 'freebsd'
   backend_srcs += 'fu-uefi-backend-freebsd.c'
@@ -110,7 +110,7 @@ if get_option('compat_cli') and get_option('man')
 endif
 
 install_data(['uefi_capsule.conf'],
-  install_dir: join_paths(sysconfdir, 'fwupd')
+  install_dir: join_paths(sysconfdir_install, 'fwupd')
 )
 
 # add all the .po files as inputs to watch