Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 1 | project('phosphor-bmc-code-mgmt', 'cpp', |
| 2 | default_options: [ |
Gunnar Mills | f7a69e1 | 2020-06-15 12:16:51 -0500 | [diff] [blame] | 3 | 'buildtype=debugoptimized', |
Patrick Williams | 4026702 | 2021-08-26 16:48:42 -0500 | [diff] [blame] | 4 | 'cpp_std=c++20', |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 5 | 'warning_level=3', |
Gunnar Mills | f7a69e1 | 2020-06-15 12:16:51 -0500 | [diff] [blame] | 6 | 'werror=true' |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 7 | ], |
Patrick Williams | 4026702 | 2021-08-26 16:48:42 -0500 | [diff] [blame] | 8 | meson_version: '>= 0.57.0', |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 9 | license: 'Apache-2.0', |
| 10 | version: '1.0') |
| 11 | |
Lei YU | 2586818 | 2021-05-14 14:50:51 +0800 | [diff] [blame] | 12 | add_project_arguments( |
| 13 | '-DBOOST_SYSTEM_NO_DEPRECATED', |
| 14 | '-DBOOST_ERROR_CODE_HEADER_ONLY', |
| 15 | '-DBOOST_NO_RTTI', |
| 16 | '-DBOOST_NO_TYPEID', |
| 17 | '-DBOOST_ALL_NO_LIB', |
| 18 | '-DBOOST_ASIO_DISABLE_THREADS', |
| 19 | '-DBOOST_ASIO_NO_DEPRECATED', |
| 20 | language: 'cpp', |
| 21 | ) |
| 22 | |
Patrick Williams | 4026702 | 2021-08-26 16:48:42 -0500 | [diff] [blame] | 23 | cpp = meson.get_compiler('cpp') |
| 24 | |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 25 | conf = configuration_data() |
| 26 | |
| 27 | # DBus information |
| 28 | conf.set_quoted('BMC_INVENTORY_INTERFACE', 'xyz.openbmc_project.Inventory.Item.Bmc') |
| 29 | conf.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.BMC.Updater') |
| 30 | conf.set_quoted('DOWNLOAD_BUSNAME', 'xyz.openbmc_project.Software.Download') |
| 31 | conf.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath') |
| 32 | conf.set_quoted('INVENTORY_PATH', '/xyz/openbmc_project/inventory/') |
| 33 | conf.set_quoted('MAPPER_BUSNAME', 'xyz.openbmc_project.ObjectMapper') |
| 34 | conf.set_quoted('MAPPER_INTERFACE', 'xyz.openbmc_project.ObjectMapper') |
| 35 | conf.set_quoted('MAPPER_PATH', '/xyz/openbmc_project/object_mapper') |
| 36 | conf.set_quoted('SOFTWARE_OBJPATH', '/xyz/openbmc_project/software') |
| 37 | conf.set_quoted('SYSTEMD_BUSNAME', 'org.freedesktop.systemd1') |
| 38 | conf.set_quoted('SYSTEMD_PATH', '/org/freedesktop/systemd1') |
| 39 | conf.set_quoted('SYSTEMD_INTERFACE', 'org.freedesktop.systemd1.Manager') |
| 40 | conf.set_quoted('VERSION_BUSNAME', 'xyz.openbmc_project.Software.Version') |
| 41 | conf.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version') |
Chanh Nguyen | 1fd6ddd | 2021-01-06 11:09:09 +0700 | [diff] [blame] | 42 | conf.set_quoted('EXTENDED_VERSION_IFACE', 'xyz.openbmc_project.Software.ExtendedVersion') |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 43 | |
| 44 | # Names of the forward and reverse associations |
| 45 | conf.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory') |
| 46 | conf.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation') |
| 47 | conf.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active') |
| 48 | conf.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version') |
| 49 | conf.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional') |
| 50 | conf.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version') |
| 51 | conf.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable') |
| 52 | conf.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version') |
| 53 | |
| 54 | # Filesystem files and directories |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 55 | # The prefix path for the versioned read-only bmc partitions |
| 56 | conf.set_quoted('BMC_ROFS_PREFIX', get_option('media-dir') + '/rofs-') |
| 57 | # The name of the BMC table of contents file |
| 58 | conf.set_quoted('OS_RELEASE_FILE', '/etc/os-release') |
| 59 | # The dir where activation data is stored in files |
| 60 | conf.set_quoted('PERSIST_DIR', '/var/lib/phosphor-bmc-code-mgmt/') |
| 61 | |
| 62 | # Supported BMC layout types |
| 63 | conf.set('STATIC_LAYOUT', get_option('bmc-layout').contains('static')) |
| 64 | conf.set('UBIFS_LAYOUT', get_option('bmc-layout').contains('ubi')) |
Adriana Kobylak | 70f5bc0 | 2020-05-13 14:08:14 -0500 | [diff] [blame] | 65 | conf.set('MMC_LAYOUT', get_option('bmc-layout').contains('mmc')) |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 66 | |
| 67 | # Configurable features |
| 68 | conf.set('HOST_BIOS_UPGRADE', get_option('host-bios-upgrade').enabled()) |
Adriana Kobylak | 42bd993 | 2021-01-28 09:45:24 -0600 | [diff] [blame] | 69 | conf.set('WANT_SIGNATURE_VERIFY', \ |
| 70 | get_option('verify-signature').enabled() or \ |
| 71 | get_option('verify-full-signature').enabled()) |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 72 | conf.set('WANT_SIGNATURE_FULL_VERIFY', get_option('verify-full-signature').enabled()) |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 73 | |
| 74 | # Configurable variables |
| 75 | conf.set('ACTIVE_BMC_MAX_ALLOWED', get_option('active-bmc-max-allowed')) |
| 76 | conf.set_quoted('HASH_FILE_NAME', get_option('hash-file-name')) |
| 77 | conf.set_quoted('IMG_UPLOAD_DIR', get_option('img-upload-dir')) |
| 78 | conf.set_quoted('MANIFEST_FILE_NAME', get_option('manifest-file-name')) |
| 79 | conf.set_quoted('MEDIA_DIR', get_option('media-dir')) |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 80 | optional_array = get_option('optional-images') |
| 81 | optional_images = '' |
| 82 | foreach optiona_image : optional_array |
| 83 | optional_images = ' '.join([optional_images, optiona_image]) |
| 84 | endforeach |
| 85 | conf.set_quoted('OPTIONAL_IMAGES', optional_images) |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 86 | conf.set_quoted('PUBLICKEY_FILE_NAME', get_option('publickey-file-name')) |
| 87 | conf.set_quoted('SIGNATURE_FILE_EXT', get_option('signature-file-ext')) |
| 88 | conf.set_quoted('SIGNED_IMAGE_CONF_PATH', get_option('signed-image-conf-path')) |
| 89 | conf.set_quoted('SYNC_LIST_DIR_PATH', get_option('sync-list-dir-path')) |
| 90 | conf.set_quoted('SYNC_LIST_FILE_NAME', get_option('sync-list-file-name')) |
Miguel Gomez | 21dad04 | 2020-06-26 20:54:48 +0000 | [diff] [blame] | 91 | conf.set_quoted('BMC_MSL', get_option('bmc-msl')) |
| 92 | conf.set_quoted('REGEX_BMC_MSL', get_option('regex-bmc-msl')) |
| 93 | |
Lei YU | 6e9fb1d | 2021-02-19 18:01:40 +0800 | [diff] [blame] | 94 | if get_option('host-bios-upgrade').enabled() |
| 95 | conf.set_quoted('BIOS_OBJPATH', get_option('bios-object-path')) |
| 96 | endif |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 97 | |
Lei YU | 6376964 | 2021-12-10 16:15:04 +0800 | [diff] [blame] | 98 | if get_option('bmc-static-dual-image').enabled() |
| 99 | conf.set('BMC_STATIC_DUAL_IMAGE', get_option('bmc-static-dual-image').enabled()) |
| 100 | conf.set_quoted('ALT_ROFS_DIR', get_option('alt-rofs-dir')) |
Lei YU | cc9b41a | 2021-12-15 14:07:16 +0800 | [diff] [blame] | 101 | conf.set_quoted('ALT_RWFS', get_option('alt-rwfs-dir')) |
| 102 | else |
| 103 | conf.set_quoted('ALT_RWFS', '/media/alt/var/persist') |
Lei YU | 6376964 | 2021-12-10 16:15:04 +0800 | [diff] [blame] | 104 | endif |
| 105 | |
Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 106 | configure_file(output: 'config.h', configuration: conf) |
Adriana Kobylak | 113492e | 2020-05-05 13:45:45 -0500 | [diff] [blame] | 107 | |
Patrick Williams | c026f6c | 2022-03-21 09:37:14 -0500 | [diff] [blame^] | 108 | sdbusplus_dep = dependency('sdbusplus') |
| 109 | sdbusplusplus_prog = find_program('sdbus++', native: true) |
| 110 | sdbuspp_gen_meson_prog = find_program('sdbus++-gen-meson', native: true) |
Patrick Williams | 4026702 | 2021-08-26 16:48:42 -0500 | [diff] [blame] | 111 | |
Patrick Williams | c026f6c | 2022-03-21 09:37:14 -0500 | [diff] [blame^] | 112 | pdi_dep = dependency('phosphor-dbus-interfaces') |
| 113 | phosphor_logging_dep = dependency('phosphor-logging') |
Patrick Williams | 4026702 | 2021-08-26 16:48:42 -0500 | [diff] [blame] | 114 | |
| 115 | cereal_dep = dependency('cereal', required: false) |
| 116 | has_cereal = cpp.has_header_symbol( |
| 117 | 'cereal/cereal.hpp', |
| 118 | 'cereal::specialize', |
| 119 | dependencies: cereal_dep, |
| 120 | required: false) |
| 121 | if not has_cereal |
| 122 | cereal_opts = import('cmake').subproject_options() |
| 123 | cereal_opts.add_cmake_defines({'BUILD_TESTS': 'OFF'}) |
| 124 | cereal_proj = import('cmake').subproject( |
| 125 | 'cereal', |
| 126 | options: cereal_opts, |
| 127 | required: false) |
| 128 | assert(cereal_proj.found(), 'cereal is required') |
| 129 | cereal_dep = cereal_proj.dependency('cereal') |
| 130 | endif |
| 131 | |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 132 | deps = [ |
Patrick Williams | 4026702 | 2021-08-26 16:48:42 -0500 | [diff] [blame] | 133 | cereal_dep, |
Patrick Williams | c026f6c | 2022-03-21 09:37:14 -0500 | [diff] [blame^] | 134 | pdi_dep, |
| 135 | phosphor_logging_dep, |
| 136 | sdbusplus_dep, |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 137 | ] |
| 138 | |
| 139 | ssl = dependency('openssl') |
| 140 | |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 141 | systemd = dependency('systemd') |
Lei YU | 3d8ab81 | 2021-12-24 10:35:47 +0800 | [diff] [blame] | 142 | systemd_system_unit_dir = systemd.get_variable(pkgconfig : 'systemdsystemunitdir') |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 143 | |
| 144 | unit_files = [ |
Adriana Kobylak | 436be81 | 2020-06-17 09:44:56 -0500 | [diff] [blame] | 145 | 'obmc-flash-bmc-setenv@.service.in', |
| 146 | 'reboot-guard-disable.service.in', |
| 147 | 'reboot-guard-enable.service.in', |
| 148 | 'force-reboot.service.in', |
| 149 | 'usr-local.mount.in', |
| 150 | 'xyz.openbmc_project.Software.BMC.Updater.service.in', |
| 151 | 'xyz.openbmc_project.Software.Download.service.in', |
| 152 | 'xyz.openbmc_project.Software.Sync.service.in', |
| 153 | 'xyz.openbmc_project.Software.Version.service.in' |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 154 | ] |
| 155 | |
Adriana Kobylak | 113492e | 2020-05-05 13:45:45 -0500 | [diff] [blame] | 156 | subdir('xyz/openbmc_project/Software/Image') |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 157 | |
| 158 | image_updater_sources = files( |
| 159 | 'activation.cpp', |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 160 | 'images.cpp', |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 161 | 'item_updater.cpp', |
| 162 | 'item_updater_main.cpp', |
| 163 | 'serialize.cpp', |
| 164 | 'version.cpp', |
Miguel Gomez | 21dad04 | 2020-06-26 20:54:48 +0000 | [diff] [blame] | 165 | 'utils.cpp', |
| 166 | 'msl_verify.cpp' |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 167 | ) |
| 168 | |
| 169 | if get_option('bmc-layout').contains('static') |
Adriana Kobylak | 436be81 | 2020-06-17 09:44:56 -0500 | [diff] [blame] | 170 | image_updater_sources += files( |
| 171 | 'static/flash.cpp', |
| 172 | 'static/item_updater_helper.cpp' |
| 173 | ) |
Adriana Kobylak | 86013f3 | 2020-05-13 12:12:38 -0500 | [diff] [blame] | 174 | elif get_option('bmc-layout').contains('ubi') |
Adriana Kobylak | 436be81 | 2020-06-17 09:44:56 -0500 | [diff] [blame] | 175 | image_updater_sources += files( |
| 176 | 'ubi/flash.cpp', |
| 177 | 'ubi/item_updater_helper.cpp' |
| 178 | ) |
| 179 | |
| 180 | unit_files += [ |
| 181 | 'ubi/obmc-flash-bmc-cleanup.service.in', |
| 182 | 'ubi/obmc-flash-bmc-mirroruboot.service.in', |
| 183 | 'ubi/obmc-flash-bmc-ubiremount.service.in', |
| 184 | 'ubi/obmc-flash-bmc-ubiro@.service.in', |
| 185 | 'ubi/obmc-flash-bmc-ubiro-remove@.service.in', |
| 186 | 'ubi/obmc-flash-bmc-ubirw.service.in', |
| 187 | 'ubi/obmc-flash-bmc-ubirw-remove.service.in', |
| 188 | 'ubi/obmc-flash-bmc-updateubootvars@.service.in' |
| 189 | ] |
Adriana Kobylak | 86013f3 | 2020-05-13 12:12:38 -0500 | [diff] [blame] | 190 | elif get_option('bmc-layout').contains('mmc') |
Adriana Kobylak | 436be81 | 2020-06-17 09:44:56 -0500 | [diff] [blame] | 191 | image_updater_sources += files( |
| 192 | 'mmc/flash.cpp', |
| 193 | 'mmc/item_updater_helper.cpp' |
| 194 | ) |
Adriana Kobylak | 70f5bc0 | 2020-05-13 14:08:14 -0500 | [diff] [blame] | 195 | |
| 196 | unit_files += [ |
| 197 | 'mmc/obmc-flash-mmc@.service.in', |
Adriana Kobylak | d7fbc1e | 2020-06-06 07:46:40 -0500 | [diff] [blame] | 198 | 'mmc/obmc-flash-mmc-mount.service.in', |
Adriana Kobylak | 70f5bc0 | 2020-05-13 14:08:14 -0500 | [diff] [blame] | 199 | 'mmc/obmc-flash-mmc-remove@.service.in', |
Adriana Kobylak | 3412435 | 2020-05-22 09:40:40 -0500 | [diff] [blame] | 200 | 'mmc/obmc-flash-mmc-setprimary@.service.in', |
Adriana Kobylak | d7fbc1e | 2020-06-06 07:46:40 -0500 | [diff] [blame] | 201 | 'mmc/obmc-flash-mmc-umount.service.in', |
Adriana Kobylak | 70f5bc0 | 2020-05-13 14:08:14 -0500 | [diff] [blame] | 202 | ] |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 203 | endif |
| 204 | |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 205 | if get_option('host-bios-upgrade').enabled() |
Adriana Kobylak | 436be81 | 2020-06-17 09:44:56 -0500 | [diff] [blame] | 206 | unit_files += 'obmc-flash-host-bios@.service.in' |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 207 | endif |
| 208 | |
Lei YU | 6376964 | 2021-12-10 16:15:04 +0800 | [diff] [blame] | 209 | if get_option('bmc-static-dual-image').enabled() |
Lei YU | 8474967 | 2021-12-15 14:31:10 +0800 | [diff] [blame] | 210 | unit_files += [ |
Lei YU | 554757b | 2022-03-21 11:05:50 +0800 | [diff] [blame] | 211 | 'static/obmc-flash-bmc-alt@.service.in', |
Lei YU | 8474967 | 2021-12-15 14:31:10 +0800 | [diff] [blame] | 212 | 'static/obmc-flash-bmc-static-mount-alt.service.in', |
| 213 | 'static/obmc-flash-bmc-prepare-for-sync.service.in', |
| 214 | ] |
Lei YU | 6376964 | 2021-12-10 16:15:04 +0800 | [diff] [blame] | 215 | endif |
| 216 | |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 217 | if get_option('sync-bmc-files').enabled() |
| 218 | executable( |
| 219 | 'phosphor-sync-software-manager', |
| 220 | 'sync_manager.cpp', |
| 221 | 'sync_manager_main.cpp', |
| 222 | 'sync_watch.cpp', |
| 223 | dependencies: deps, |
| 224 | install: true |
| 225 | ) |
Adriana Kobylak | 817209f | 2020-05-07 09:52:03 -0500 | [diff] [blame] | 226 | |
| 227 | install_data('synclist', |
| 228 | install_dir: get_option('sysconfdir') |
| 229 | ) |
Lei YU | 8474967 | 2021-12-15 14:31:10 +0800 | [diff] [blame] | 230 | |
| 231 | install_data('sync-once.sh', |
| 232 | install_mode: 'rwxr-xr-x', |
| 233 | install_dir: get_option('bindir') |
| 234 | ) |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 235 | endif |
| 236 | |
Adriana Kobylak | 42bd993 | 2021-01-28 09:45:24 -0600 | [diff] [blame] | 237 | if (get_option('verify-signature').enabled() or \ |
| 238 | get_option('verify-full-signature').enabled()) |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 239 | image_updater_sources += files( |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 240 | 'utils.cpp', |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame] | 241 | 'image_verify.cpp', |
| 242 | 'openssl_alloc.cpp' |
| 243 | ) |
| 244 | endif |
| 245 | |
| 246 | executable( |
| 247 | 'phosphor-download-manager', |
| 248 | 'download_manager.cpp', |
| 249 | 'download_manager_main.cpp', |
| 250 | dependencies: deps, |
| 251 | install: true |
| 252 | ) |
| 253 | |
| 254 | executable( |
| 255 | 'phosphor-image-updater', |
| 256 | image_error_cpp, |
| 257 | image_error_hpp, |
| 258 | image_updater_sources, |
| 259 | dependencies: [deps, ssl], |
| 260 | install: true |
| 261 | ) |
| 262 | |
| 263 | executable( |
| 264 | 'phosphor-version-software-manager', |
| 265 | image_error_cpp, |
| 266 | image_error_hpp, |
| 267 | 'image_manager.cpp', |
| 268 | 'image_manager_main.cpp', |
| 269 | 'version.cpp', |
| 270 | 'watch.cpp', |
| 271 | dependencies: [deps, ssl], |
| 272 | install: true |
| 273 | ) |
Adriana Kobylak | 817209f | 2020-05-07 09:52:03 -0500 | [diff] [blame] | 274 | |
| 275 | install_data('obmc-flash-bmc', |
| 276 | install_mode: 'rwxr-xr-x', |
| 277 | install_dir: get_option('bindir') |
| 278 | ) |
| 279 | |
Lei YU | 531fbc2 | 2021-12-10 20:03:18 +0800 | [diff] [blame] | 280 | install_data('detect-slot-aspeed', |
| 281 | install_mode: 'rwxr-xr-x', |
| 282 | install_dir: get_option('bindir') |
| 283 | ) |
| 284 | |
Lei YU | 984cef5 | 2021-12-17 11:28:21 +0800 | [diff] [blame] | 285 | install_data('reset-cs0-aspeed', |
| 286 | install_mode: 'rwxr-xr-x', |
| 287 | install_dir: get_option('bindir') |
| 288 | ) |
| 289 | |
Adriana Kobylak | 817209f | 2020-05-07 09:52:03 -0500 | [diff] [blame] | 290 | install_data('software.conf', |
| 291 | install_dir: '/usr/lib/tmpfiles.d/' |
| 292 | ) |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 293 | |
| 294 | foreach u : unit_files |
| 295 | configure_file( |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 296 | input: u, |
Adriana Kobylak | 436be81 | 2020-06-17 09:44:56 -0500 | [diff] [blame] | 297 | output: '@BASENAME@', |
| 298 | configuration: conf, |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 299 | install: true, |
| 300 | install_dir: systemd_system_unit_dir, |
Adriana Kobylak | 29a0d90 | 2020-05-05 13:59:49 -0500 | [diff] [blame] | 301 | ) |
| 302 | endforeach |
Adriana Kobylak | 78e72d9 | 2020-05-05 14:01:54 -0500 | [diff] [blame] | 303 | |
| 304 | # If test coverage of source files within the root directory are wanted, |
| 305 | # need to define and build the tests from here |
| 306 | build_tests = get_option('tests') |
| 307 | if not build_tests.disabled() |
| 308 | oe_sdk = get_option('oe-sdk') |
| 309 | if oe_sdk.enabled() |
| 310 | # Setup OE SYSROOT |
| 311 | OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() |
| 312 | if OECORE_TARGET_SYSROOT == '' |
| 313 | error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') |
| 314 | endif |
| 315 | message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) |
| 316 | rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) |
| 317 | ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() |
| 318 | dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] |
| 319 | else |
| 320 | dynamic_linker = [] |
| 321 | endif |
| 322 | |
| 323 | gtest = dependency('gtest', main: true, disabler: true, required: build_tests) |
| 324 | include_srcs = declare_dependency(sources: [ |
George Liu | 0a06e97 | 2020-12-17 09:17:04 +0800 | [diff] [blame] | 325 | 'utils.cpp', |
Adriana Kobylak | 78e72d9 | 2020-05-05 14:01:54 -0500 | [diff] [blame] | 326 | 'image_verify.cpp', |
Adriana Kobylak | 73609bb | 2020-06-18 15:05:40 -0500 | [diff] [blame] | 327 | 'images.cpp', |
Adriana Kobylak | 78e72d9 | 2020-05-05 14:01:54 -0500 | [diff] [blame] | 328 | 'version.cpp'] |
| 329 | ) |
| 330 | |
| 331 | test('utest', |
| 332 | executable( |
| 333 | 'utest', |
| 334 | './test/utest.cpp', |
| 335 | link_args: dynamic_linker, |
| 336 | build_rpath: get_option('oe-sdk').enabled() ? rpath : '', |
| 337 | dependencies: [deps, gtest, include_srcs, ssl] |
| 338 | ) |
| 339 | ) |
| 340 | endif |
George Liu | cc74233 | 2021-10-20 16:25:55 +0800 | [diff] [blame] | 341 | |
| 342 | if get_option('usb-code-update').enabled() |
| 343 | subdir('usb') |
| 344 | endif |