1project('phosphor-bmc-code-mgmt', 'cpp', 2 default_options: [ 3 'warning_level=3', 4 'werror=true', 5 'cpp_std=c++17' 6 ], 7 license: 'Apache-2.0', 8 version: '1.0') 9 10conf = configuration_data() 11 12# DBus information 13conf.set_quoted('BMC_INVENTORY_INTERFACE', 'xyz.openbmc_project.Inventory.Item.Bmc') 14conf.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.BMC.Updater') 15conf.set_quoted('DOWNLOAD_BUSNAME', 'xyz.openbmc_project.Software.Download') 16conf.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath') 17conf.set_quoted('INVENTORY_PATH', '/xyz/openbmc_project/inventory/') 18conf.set_quoted('MAPPER_BUSNAME', 'xyz.openbmc_project.ObjectMapper') 19conf.set_quoted('MAPPER_INTERFACE', 'xyz.openbmc_project.ObjectMapper') 20conf.set_quoted('MAPPER_PATH', '/xyz/openbmc_project/object_mapper') 21conf.set_quoted('SOFTWARE_OBJPATH', '/xyz/openbmc_project/software') 22conf.set_quoted('SYSTEMD_BUSNAME', 'org.freedesktop.systemd1') 23conf.set_quoted('SYSTEMD_PATH', '/org/freedesktop/systemd1') 24conf.set_quoted('SYSTEMD_INTERFACE', 'org.freedesktop.systemd1.Manager') 25conf.set_quoted('VERSION_BUSNAME', 'xyz.openbmc_project.Software.Version') 26conf.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version') 27 28# Names of the forward and reverse associations 29conf.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory') 30conf.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation') 31conf.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active') 32conf.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version') 33conf.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional') 34conf.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version') 35conf.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable') 36conf.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version') 37 38# Filesystem files and directories 39# The path of the alt rwfs overlay 40conf.set_quoted('ALT_RWFS', '/media/alt/var/persist') 41# The prefix path for the versioned read-only bmc partitions 42conf.set_quoted('BMC_ROFS_PREFIX', get_option('media-dir') + '/rofs-') 43# The name of the BMC table of contents file 44conf.set_quoted('OS_RELEASE_FILE', '/etc/os-release') 45# The dir where activation data is stored in files 46conf.set_quoted('PERSIST_DIR', '/var/lib/phosphor-bmc-code-mgmt/') 47 48# Supported BMC layout types 49conf.set('STATIC_LAYOUT', get_option('bmc-layout').contains('static')) 50conf.set('UBIFS_LAYOUT', get_option('bmc-layout').contains('ubi')) 51 52# Configurable features 53conf.set('HOST_BIOS_UPGRADE', get_option('host-bios-upgrade').enabled()) 54conf.set('WANT_SIGNATURE_VERIFY', get_option('verify-signature').enabled()) 55 56# Configurable variables 57conf.set('ACTIVE_BMC_MAX_ALLOWED', get_option('active-bmc-max-allowed')) 58conf.set_quoted('HASH_FILE_NAME', get_option('hash-file-name')) 59conf.set_quoted('IMG_UPLOAD_DIR', get_option('img-upload-dir')) 60conf.set_quoted('MANIFEST_FILE_NAME', get_option('manifest-file-name')) 61conf.set_quoted('MEDIA_DIR', get_option('media-dir')) 62conf.set_quoted('PUBLICKEY_FILE_NAME', get_option('publickey-file-name')) 63conf.set_quoted('SIGNATURE_FILE_EXT', get_option('signature-file-ext')) 64conf.set_quoted('SIGNED_IMAGE_CONF_PATH', get_option('signed-image-conf-path')) 65conf.set_quoted('SYNC_LIST_DIR_PATH', get_option('sync-list-dir-path')) 66conf.set_quoted('SYNC_LIST_FILE_NAME', get_option('sync-list-file-name')) 67 68configure_file(output: 'config.h', configuration: conf) 69 70deps = [ 71 dependency('phosphor-dbus-interfaces'), 72 dependency('phosphor-logging'), 73 dependency('sdbusplus') 74] 75 76ssl = dependency('openssl') 77 78systemd = dependency('systemd') 79systemd_system_unit_dir = systemd.get_pkgconfig_variable('systemdsystemunitdir') 80 81unit_files = [ 82 'obmc-flash-bmc-setenv@.service', 83 'reboot-guard-disable.service', 84 'reboot-guard-enable.service', 85 'force-reboot.service', 86 'usr-local.mount', 87 'xyz.openbmc_project.Software.BMC.Updater.service', 88 'xyz.openbmc_project.Software.Download.service', 89 'xyz.openbmc_project.Software.Sync.service', 90 'xyz.openbmc_project.Software.Version.service' 91] 92 93sdbuspp = find_program('sdbus++') 94subdir('xyz/openbmc_project/Software/Image') 95 96image_updater_sources = files( 97 'activation.cpp', 98 'item_updater.cpp', 99 'item_updater_main.cpp', 100 'serialize.cpp', 101 'version.cpp', 102 'utils.cpp' 103) 104 105if get_option('bmc-layout').contains('static') 106 subdir('static') 107endif 108if get_option('bmc-layout').contains('ubi') 109 subdir('ubi') 110endif 111 112if get_option('host-bios-upgrade').enabled() 113 unit_files += 'obmc-flash-host-bios@.service' 114endif 115 116if get_option('sync-bmc-files').enabled() 117 executable( 118 'phosphor-sync-software-manager', 119 'sync_manager.cpp', 120 'sync_manager_main.cpp', 121 'sync_watch.cpp', 122 dependencies: deps, 123 install: true 124 ) 125 126 install_data('synclist', 127 install_dir: get_option('sysconfdir') 128 ) 129endif 130 131if get_option('verify-signature').enabled() 132 image_updater_sources += files( 133 'image_verify.cpp', 134 'openssl_alloc.cpp' 135 ) 136endif 137 138executable( 139 'phosphor-download-manager', 140 'download_manager.cpp', 141 'download_manager_main.cpp', 142 dependencies: deps, 143 install: true 144) 145 146executable( 147 'phosphor-image-updater', 148 image_error_cpp, 149 image_error_hpp, 150 image_updater_sources, 151 dependencies: [deps, ssl], 152 install: true 153) 154 155executable( 156 'phosphor-version-software-manager', 157 image_error_cpp, 158 image_error_hpp, 159 'image_manager.cpp', 160 'image_manager_main.cpp', 161 'version.cpp', 162 'watch.cpp', 163 dependencies: [deps, ssl], 164 install: true 165) 166 167install_data('obmc-flash-bmc', 168 install_mode: 'rwxr-xr-x', 169 install_dir: get_option('bindir') 170) 171 172install_data('software.conf', 173 install_dir: '/usr/lib/tmpfiles.d/' 174) 175 176foreach u : unit_files 177 configure_file( 178 copy: true, 179 input: u, 180 install: true, 181 install_dir: systemd_system_unit_dir, 182 output: u, 183 ) 184endforeach 185 186# If test coverage of source files within the root directory are wanted, 187# need to define and build the tests from here 188build_tests = get_option('tests') 189if not build_tests.disabled() 190 oe_sdk = get_option('oe-sdk') 191 if oe_sdk.enabled() 192 # Setup OE SYSROOT 193 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() 194 if OECORE_TARGET_SYSROOT == '' 195 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') 196 endif 197 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) 198 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) 199 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() 200 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] 201 else 202 dynamic_linker = [] 203 endif 204 205 gtest = dependency('gtest', main: true, disabler: true, required: build_tests) 206 include_srcs = declare_dependency(sources: [ 207 'image_verify.cpp', 208 'version.cpp'] 209 ) 210 211 test('utest', 212 executable( 213 'utest', 214 './test/utest.cpp', 215 link_args: dynamic_linker, 216 build_rpath: get_option('oe-sdk').enabled() ? rpath : '', 217 dependencies: [deps, gtest, include_srcs, ssl] 218 ) 219) 220endif 221