Adriana Kobylak | 0af80a4 | 2020-05-05 13:32:10 -0500 | [diff] [blame] | 1 | project('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 | |
| 10 | conf = configuration_data() |
| 11 | |
| 12 | # DBus information |
| 13 | conf.set_quoted('BMC_INVENTORY_INTERFACE', 'xyz.openbmc_project.Inventory.Item.Bmc') |
| 14 | conf.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.BMC.Updater') |
| 15 | conf.set_quoted('DOWNLOAD_BUSNAME', 'xyz.openbmc_project.Software.Download') |
| 16 | conf.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath') |
| 17 | conf.set_quoted('INVENTORY_PATH', '/xyz/openbmc_project/inventory/') |
| 18 | conf.set_quoted('MAPPER_BUSNAME', 'xyz.openbmc_project.ObjectMapper') |
| 19 | conf.set_quoted('MAPPER_INTERFACE', 'xyz.openbmc_project.ObjectMapper') |
| 20 | conf.set_quoted('MAPPER_PATH', '/xyz/openbmc_project/object_mapper') |
| 21 | conf.set_quoted('SOFTWARE_OBJPATH', '/xyz/openbmc_project/software') |
| 22 | conf.set_quoted('SYSTEMD_BUSNAME', 'org.freedesktop.systemd1') |
| 23 | conf.set_quoted('SYSTEMD_PATH', '/org/freedesktop/systemd1') |
| 24 | conf.set_quoted('SYSTEMD_INTERFACE', 'org.freedesktop.systemd1.Manager') |
| 25 | conf.set_quoted('VERSION_BUSNAME', 'xyz.openbmc_project.Software.Version') |
| 26 | conf.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version') |
| 27 | |
| 28 | # Names of the forward and reverse associations |
| 29 | conf.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory') |
| 30 | conf.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation') |
| 31 | conf.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active') |
| 32 | conf.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version') |
| 33 | conf.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional') |
| 34 | conf.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version') |
| 35 | conf.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable') |
| 36 | conf.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version') |
| 37 | |
| 38 | # Filesystem files and directories |
| 39 | # The path of the alt rwfs overlay |
| 40 | conf.set_quoted('ALT_RWFS', '/media/alt/var/persist') |
| 41 | # The prefix path for the versioned read-only bmc partitions |
| 42 | conf.set_quoted('BMC_ROFS_PREFIX', get_option('media-dir') + '/rofs-') |
| 43 | # The name of the BMC table of contents file |
| 44 | conf.set_quoted('OS_RELEASE_FILE', '/etc/os-release') |
| 45 | # The dir where activation data is stored in files |
| 46 | conf.set_quoted('PERSIST_DIR', '/var/lib/phosphor-bmc-code-mgmt/') |
| 47 | |
| 48 | # Supported BMC layout types |
| 49 | conf.set('STATIC_LAYOUT', get_option('bmc-layout').contains('static')) |
| 50 | conf.set('UBIFS_LAYOUT', get_option('bmc-layout').contains('ubi')) |
| 51 | |
| 52 | # Configurable features |
| 53 | conf.set('HOST_BIOS_UPGRADE', get_option('host-bios-upgrade').enabled()) |
| 54 | conf.set('WANT_SIGNATURE_VERIFY', get_option('verify-signature').enabled()) |
| 55 | |
| 56 | # Configurable variables |
| 57 | conf.set('ACTIVE_BMC_MAX_ALLOWED', get_option('active-bmc-max-allowed')) |
| 58 | conf.set_quoted('HASH_FILE_NAME', get_option('hash-file-name')) |
| 59 | conf.set_quoted('IMG_UPLOAD_DIR', get_option('img-upload-dir')) |
| 60 | conf.set_quoted('MANIFEST_FILE_NAME', get_option('manifest-file-name')) |
| 61 | conf.set_quoted('MEDIA_DIR', get_option('media-dir')) |
| 62 | conf.set_quoted('PUBLICKEY_FILE_NAME', get_option('publickey-file-name')) |
| 63 | conf.set_quoted('SIGNATURE_FILE_EXT', get_option('signature-file-ext')) |
| 64 | conf.set_quoted('SIGNED_IMAGE_CONF_PATH', get_option('signed-image-conf-path')) |
| 65 | conf.set_quoted('SYNC_LIST_DIR_PATH', get_option('sync-list-dir-path')) |
| 66 | conf.set_quoted('SYNC_LIST_FILE_NAME', get_option('sync-list-file-name')) |
| 67 | |
| 68 | configure_file(output: 'config.h', configuration: conf) |
Adriana Kobylak | 113492e | 2020-05-05 13:45:45 -0500 | [diff] [blame] | 69 | |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame^] | 70 | deps = [ |
| 71 | dependency('phosphor-dbus-interfaces'), |
| 72 | dependency('phosphor-logging'), |
| 73 | dependency('sdbusplus') |
| 74 | ] |
| 75 | |
| 76 | ssl = dependency('openssl') |
| 77 | |
Adriana Kobylak | 113492e | 2020-05-05 13:45:45 -0500 | [diff] [blame] | 78 | sdbuspp = find_program('sdbus++') |
| 79 | subdir('xyz/openbmc_project/Software/Image') |
Adriana Kobylak | e0aa780 | 2020-05-05 13:54:49 -0500 | [diff] [blame^] | 80 | |
| 81 | image_updater_sources = files( |
| 82 | 'activation.cpp', |
| 83 | 'item_updater.cpp', |
| 84 | 'item_updater_main.cpp', |
| 85 | 'serialize.cpp', |
| 86 | 'version.cpp', |
| 87 | 'utils.cpp' |
| 88 | ) |
| 89 | |
| 90 | if get_option('bmc-layout').contains('static') |
| 91 | subdir('static') |
| 92 | endif |
| 93 | if get_option('bmc-layout').contains('ubi') |
| 94 | subdir('ubi') |
| 95 | endif |
| 96 | |
| 97 | if get_option('sync-bmc-files').enabled() |
| 98 | executable( |
| 99 | 'phosphor-sync-software-manager', |
| 100 | 'sync_manager.cpp', |
| 101 | 'sync_manager_main.cpp', |
| 102 | 'sync_watch.cpp', |
| 103 | dependencies: deps, |
| 104 | install: true |
| 105 | ) |
| 106 | endif |
| 107 | |
| 108 | if get_option('verify-signature').enabled() |
| 109 | image_updater_sources += files( |
| 110 | 'image_verify.cpp', |
| 111 | 'openssl_alloc.cpp' |
| 112 | ) |
| 113 | endif |
| 114 | |
| 115 | executable( |
| 116 | 'phosphor-download-manager', |
| 117 | 'download_manager.cpp', |
| 118 | 'download_manager_main.cpp', |
| 119 | dependencies: deps, |
| 120 | install: true |
| 121 | ) |
| 122 | |
| 123 | executable( |
| 124 | 'phosphor-image-updater', |
| 125 | image_error_cpp, |
| 126 | image_error_hpp, |
| 127 | image_updater_sources, |
| 128 | dependencies: [deps, ssl], |
| 129 | install: true |
| 130 | ) |
| 131 | |
| 132 | executable( |
| 133 | 'phosphor-version-software-manager', |
| 134 | image_error_cpp, |
| 135 | image_error_hpp, |
| 136 | 'image_manager.cpp', |
| 137 | 'image_manager_main.cpp', |
| 138 | 'version.cpp', |
| 139 | 'watch.cpp', |
| 140 | dependencies: [deps, ssl], |
| 141 | install: true |
| 142 | ) |