blob: 33869a9e9009f54e21c82882756d61bd798efdaa [file] [log] [blame]
Brad Bishopa0fa15b2020-11-06 14:42:24 -05001project(
2 'openpower-pnor-code-mgmt',
3 'cpp',
4 default_options: [
5 'warning_level=3',
6 'werror=true',
Adriana Kobylak067876a2021-04-26 19:36:39 +00007 'cpp_std=c++20',
Brad Bishopa0fa15b2020-11-06 14:42:24 -05008 'buildtype=debugoptimized',
9 'b_ndebug=if-release',
10 'b_lto=true',
11 ],
12 license: 'Apache-2.0',
13 version: '1.0',
Adriana Kobylak067876a2021-04-26 19:36:39 +000014 meson_version: '>=0.57.0',
Brad Bishopa0fa15b2020-11-06 14:42:24 -050015)
16
Brad Bishopa0fa15b2020-11-06 14:42:24 -050017if(get_option('buildtype') == 'minsize')
18 add_project_arguments('-DNDEBUG', language : 'cpp')
19endif
20
21# Disable lto when compiling with no optimization
22if(get_option('optimization') == '0')
23 add_project_arguments('-fno-lto', language: 'cpp')
24 message('Disabling lto because optimization is disabled')
25endif
26
Brad Bishop099543e2020-11-09 15:37:58 -050027cxx = meson.get_compiler('cpp')
28
Brad Bishopa0fa15b2020-11-06 14:42:24 -050029extra_sources = []
30extra_unit_files = []
31extra_scripts = []
32
33build_vpnor = get_option('vpnor').enabled()
Adriana Kobylak6fc7fcd2021-10-18 18:47:55 +000034build_pldm = get_option('pldm').enabled()
Brad Bishopa0fa15b2020-11-06 14:42:24 -050035build_verify_signature = get_option('verify-signature').enabled()
36
Brad Bishop099543e2020-11-09 15:37:58 -050037if not cxx.has_header('CLI/CLI.hpp')
38 error('Could not find CLI.hpp')
39endif
40
Brad Bishopa0fa15b2020-11-06 14:42:24 -050041summary('building for device type', '@0@'.format(get_option('device-type')))
42summary('building vpnor', build_vpnor)
Adriana Kobylak6fc7fcd2021-10-18 18:47:55 +000043summary('building pldm', build_pldm)
Brad Bishopa0fa15b2020-11-06 14:42:24 -050044summary('building signature verify', build_verify_signature)
45
46subs = configuration_data()
47subs.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory')
48subs.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation')
49subs.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active')
50subs.set('ACTIVE_PNOR_MAX_ALLOWED', 2)
51subs.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version')
52subs.set_quoted('ASSOCIATIONS_INTERFACE', 'xyz.openbmc_project.Association.Definitions')
Brad Bishop7c053c32020-11-16 12:58:11 -050053subs.set_quoted('BUSNAME_UPDATER', 'org.open_power.Software.Host.Updater')
Brad Bishopa0fa15b2020-11-06 14:42:24 -050054subs.set_quoted('CHASSIS_STATE_OBJ', 'xyz.openbmc_project.State.Chassis')
55subs.set_quoted('CHASSIS_STATE_OFF', 'xyz.openbmc_project.State.Chassis.PowerState.Off')
56subs.set_quoted('CHASSIS_STATE_PATH', '/xyz/openbmc_project/state/chassis0')
57subs.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath')
58subs.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional')
59subs.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version')
60subs.set_quoted('HASH_FILE_NAME', 'hashfunc')
61subs.set_quoted('HOST_INVENTORY_PATH', '/xyz/openbmc_project/inventory/system/chassis')
62subs.set_quoted('IMG_DIR', '/tmp/images')
63subs.set_quoted('MANIFEST_FILE', 'MANIFEST')
64subs.set_quoted('MAPPER_BUSNAME', 'xyz.openbmc_project.ObjectMapper')
65subs.set_quoted('MAPPER_INTERFACE', 'xyz.openbmc_project.ObjectMapper')
66subs.set_quoted('MAPPER_PATH', '/xyz/openbmc_project/object_mapper')
67subs.set_quoted('MEDIA_DIR', '/media/')
68subs.set('MMC_LAYOUT', get_option('device-type') == 'mmc')
69subs.set_quoted('PERSIST_DIR', '/var/lib/obmc/openpower-pnor-code-mgmt/')
70subs.set_quoted('PNOR_ACTIVE_PATH', '/var/lib/phosphor-software-manager/pnor/')
71subs.set_quoted('PNOR_MSL', get_option('msl'))
72subs.set_quoted('PNOR_PRSV', '/media/pnor-prsv')
73subs.set_quoted('PNOR_PRSV_ACTIVE_PATH', '/var/lib/phosphor-software-manager/pnor/prsv')
74subs.set_quoted('PNOR_RO_ACTIVE_PATH', '/var/lib/phosphor-software-manager/pnor/ro')
75subs.set_quoted('PNOR_RO_PREFIX', '/media/pnor-ro-')
76subs.set_quoted('PNOR_RW_ACTIVE_PATH', '/var/lib/phosphor-software-manager/pnor/rw')
77subs.set_quoted('PNOR_RW_PREFIX', '/media/pnor-rw-')
78subs.set_quoted('PNOR_SIGNED_IMAGE_CONF_PATH', '/etc/activationdata/')
79subs.set_quoted('PNOR_TOC_FILE', 'pnor.toc')
80subs.set_quoted('PNOR_VERSION_PARTITION', 'VERSION')
81subs.set_quoted('PUBLICKEY_FILE_NAME', 'publickey')
82subs.set_quoted('SIGNATURE_FILE_EXT', '.sig')
83subs.set_quoted('SOFTWARE_OBJPATH', '/xyz/openbmc_project/software')
84subs.set_quoted('SYSTEMD_BUSNAME', 'org.freedesktop.systemd1')
85subs.set_quoted('SYSTEMD_INTERFACE', 'org.freedesktop.systemd1.Manager')
86subs.set_quoted('SYSTEMD_PATH', '/org/freedesktop/systemd1')
87subs.set_quoted('SYSTEMD_PROPERTY_INTERFACE', 'org.freedesktop.DBus.Properties')
88subs.set('UBIFS_LAYOUT', get_option('device-type') == 'ubi')
89subs.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable')
90subs.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version')
91subs.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version')
92subs.set('WANT_SIGNATURE_VERIFY', build_verify_signature)
93configure_file(
94 output: 'config.h',
95 configuration: subs)
96
97if get_option('device-type') == 'ubi'
98 extra_sources += [
99 'ubi/activation_ubi.cpp',
100 'ubi/item_updater_ubi.cpp',
101 'ubi/serialize.cpp',
102 'ubi/watch.cpp',
103 ]
104 extra_scripts += [
105 'ubi/obmc-flash-bios',
106 ]
107 extra_unit_files += [
108 'ubi/obmc-flash-bios-cleanup.service',
109 'ubi/obmc-flash-bios-ubiattach.service',
110 'ubi/obmc-flash-bios-ubimount@.service',
111 'ubi/obmc-flash-bios-ubipatch.service',
112 'ubi/obmc-flash-bios-ubiremount.service',
113 'ubi/obmc-flash-bios-ubiumount-ro@.service',
114 'ubi/obmc-flash-bios-ubiumount-rw@.service',
115 ]
116endif
117
118if get_option('device-type') == 'mmc'
119 extra_sources += [
120 'mmc/activation_mmc.cpp',
121 'mmc/item_updater_mmc.cpp',
122 ]
123 extra_scripts += [
124 'mmc/obmc-flash-bios',
125 ]
126 extra_unit_files += [
127 'mmc/obmc-flash-bios-init.service',
128 'mmc/obmc-flash-bios-patch.service',
Adriana Kobylak6fc7fcd2021-10-18 18:47:55 +0000129 ]
130endif
131
132if build_pldm
133 extra_unit_files += [
Adriana Kobylakac5aec12021-06-22 16:22:17 +0000134 'mmc/openpower-process-host-firmware.service',
Adriana Kobylak53a27392021-06-14 17:42:40 +0000135 'mmc/openpower-update-bios-attr-table.service',
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500136 ]
137endif
138
139if get_option('device-type') == 'static'
140 extra_sources += [
141 'static/item_updater_static.cpp',
142 'static/activation_static.cpp',
143 ]
144 extra_unit_files += [
145 'openpower-pnor-update@.service',
146 ]
147endif
148
149if build_verify_signature
150 extra_sources += [
151 'image_verify.cpp'
152 ]
153endif
154
155if build_vpnor
156 extra_scripts += [
157 'vpnor/obmc-vpnor-util',
158 ]
159 extra_unit_files += [
160 'vpnor/obmc-vpnor-check-clearvolatile@.service',
161 'vpnor/obmc-vpnor-enable-clearvolatile@.service',
162 'vpnor/obmc-vpnor-updatesymlinks.service',
163 ]
164endif
165
166executable(
167 'openpower-update-manager',
168 [
169 'activation.cpp',
Brad Bishop099543e2020-11-09 15:37:58 -0500170 'functions.cpp',
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500171 'version.cpp',
172 'item_updater.cpp',
173 'item_updater_main.cpp',
174 'utils.cpp',
175 ] + extra_sources,
176 dependencies: [
177 dependency('libcrypto'),
178 dependency('libsystemd'),
179 dependency('openssl'),
180 dependency('phosphor-dbus-interfaces'),
181 dependency('phosphor-logging'),
182 dependency('sdbusplus'),
Brad Bishop0283f7c2020-11-09 10:09:26 -0500183 dependency('sdeventplus'),
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500184 ],
185 install: true
186)
187
188executable(
189 'openpower-pnor-msl',
190 [
191 'msl_verify.cpp',
192 'msl_verify_main.cpp',
193 ],
194 dependencies: [
195 dependency('libsystemd'),
196 dependency('phosphor-dbus-interfaces'),
197 dependency('phosphor-logging'),
198 dependency('sdbusplus'),
199 ],
200 install: true
201)
202
203foreach s : extra_scripts
204 configure_file(
205 input: s,
206 copy: true,
207 install: true,
208 install_mode: 'rwxr-xr-x',
209 install_dir: get_option('bindir'),
210 output: '@BASENAME@'
211 )
212endforeach
213
214unit_files = [
215 'op-pnor-msl.service',
216 'org.open_power.Software.Host.Updater.service',
217] + extra_unit_files
218
Adriana Kobylak067876a2021-04-26 19:36:39 +0000219systemd_system_unit_dir = dependency('systemd').get_variable(
220 pkgconfig: 'systemdsystemunitdir',
221 pkgconfig_define: ['prefix', get_option('prefix')])
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500222foreach u : unit_files
223 configure_file(
224 input: u,
225 copy: true,
226 install: true,
227 install_dir: systemd_system_unit_dir,
228 output: '@BASENAME@.service'
229 )
230endforeach
231
Adriana Kobylak067876a2021-04-26 19:36:39 +0000232dbus_system_bus_services_dir = dependency('dbus-1').get_variable(
233 pkgconfig: 'system_bus_services_dir',
234 pkgconfig_define: ['prefix', get_option('prefix')])
Brad Bishop671a7da2020-11-15 13:31:05 -0500235dbus_policy_dir = run_command(
236 'realpath',
237 join_paths(dbus_system_bus_services_dir, '..', 'system.d')).stdout().strip()
238
239install_data(
240 'dbus/org.open_power.Software.Host.Updater.conf',
241 install_dir: dbus_policy_dir)
242
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500243if not get_option('tests').disabled()
Adriana Kobylak588a9fa2021-06-22 14:28:45 +0000244 oe_sdk = get_option('oe-sdk')
245 if oe_sdk.enabled()
246 # Setup OE SYSROOT
247 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
248 if OECORE_TARGET_SYSROOT == ''
249 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
250 endif
251 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
252 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
253 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
254 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
255 else
256 dynamic_linker = []
257 endif
258
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500259 test(
260 'utest',
261 executable(
262 'utest',
263 'activation.cpp',
264 'version.cpp',
265 'item_updater.cpp',
266 'image_verify.cpp',
267 'utils.cpp',
268 'msl_verify.cpp',
269 'ubi/activation_ubi.cpp',
270 'ubi/item_updater_ubi.cpp',
271 'ubi/serialize.cpp',
272 'ubi/watch.cpp',
273 'static/item_updater_static.cpp',
274 'static/activation_static.cpp',
275 'test/test_signature.cpp',
276 'test/test_version.cpp',
277 'test/test_item_updater_static.cpp',
278 'msl_verify.cpp',
279 dependencies: [
280 dependency('libcrypto'),
281 dependency('gtest', main: true),
282 dependency('openssl'),
283 dependency('phosphor-logging'),
284 dependency('phosphor-dbus-interfaces'),
285 ],
286 implicit_include_directories: false,
287 include_directories: '.',
288 )
289 )
Brad Bishop099543e2020-11-09 15:37:58 -0500290 test(
291 'test_functions',
292 executable(
293 'test_functions',
294 'test/test_functions.cpp',
295 'functions.cpp',
296 dependencies: [
297 dependency('gtest', main: true),
298 dependency('sdbusplus'),
299 dependency('sdeventplus'),
300 ],
301 )
302 )
Brad Bishopa0fa15b2020-11-06 14:42:24 -0500303endif