Andrew Geissler | f245410 | 2019-12-06 15:14:08 -0600 | [diff] [blame] | 1 | option('tests', type: 'feature', description: 'Build tests') |
| 2 | |
| 3 | option( |
| 4 | 'host-busname', type: 'string', |
| 5 | value: 'xyz.openbmc_project.State.Host', |
| 6 | description: 'The Host DBus busname to own.', |
| 7 | ) |
| 8 | |
| 9 | option( |
| 10 | 'host-objpath', type: 'string', |
| 11 | value: '/xyz/openbmc_project/state/host', |
| 12 | description: 'The host state manager Dbus root.', |
| 13 | ) |
| 14 | |
| 15 | option( |
Andrew Geissler | fe270d3 | 2021-01-27 14:06:46 -0600 | [diff] [blame] | 16 | 'hypervisor-busname', type: 'string', |
| 17 | value: 'xyz.openbmc_project.State.Hypervisor', |
| 18 | description: 'The Hypervisor DBus busname to own.', |
| 19 | ) |
| 20 | |
| 21 | option( |
| 22 | 'hypervisor-objpath', type: 'string', |
| 23 | value: '/xyz/openbmc_project/state/hypervisor', |
| 24 | description: 'The hypervisor state manager Dbus root.', |
| 25 | ) |
| 26 | |
| 27 | option( |
Andrew Geissler | f245410 | 2019-12-06 15:14:08 -0600 | [diff] [blame] | 28 | 'chassis-busname', type: 'string', |
| 29 | value: 'xyz.openbmc_project.State.Chassis', |
| 30 | description: 'The Chassis DBus busname to own.', |
| 31 | ) |
| 32 | |
| 33 | option( |
| 34 | 'chassis-objpath', type: 'string', |
| 35 | value: '/xyz/openbmc_project/state/chassis', |
| 36 | description: 'The chassis state manager Dbus root.', |
| 37 | ) |
| 38 | |
| 39 | option( |
| 40 | 'bmc-busname', type: 'string', |
| 41 | value: 'xyz.openbmc_project.State.BMC', |
| 42 | description: 'The BMC DBus busname to own.', |
| 43 | ) |
| 44 | |
| 45 | option( |
| 46 | 'bmc-objpath', type: 'string', |
| 47 | value: '/xyz/openbmc_project/state/bmc', |
| 48 | description: 'The bmc state manager Dbus root.', |
| 49 | ) |
| 50 | |
| 51 | option( |
Andrew Geissler | f245410 | 2019-12-06 15:14:08 -0600 | [diff] [blame] | 52 | 'host-state-persist-path', type: 'string', |
| 53 | value: '/var/lib/phosphor-state-manager/requestedHostTransition', |
| 54 | description: 'Path of file for storing requested host state.', |
| 55 | ) |
| 56 | |
| 57 | option( |
| 58 | 'poh-counter-persist-path', type: 'string', |
| 59 | value: '/var/lib/phosphor-state-manager/POHCounter', |
| 60 | description: 'Path of file for storing POH counter.', |
| 61 | ) |
| 62 | |
| 63 | option( |
| 64 | 'chassis-state-change-persist-path', type: 'string', |
| 65 | value: '/var/lib/phosphor-state-manager/chassisStateChangeTime', |
| 66 | description: 'Path of file for storing the state change time.', |
| 67 | ) |
| 68 | |
| 69 | option( |
Carol Wang | 1dbbef4 | 2020-03-09 11:51:23 +0800 | [diff] [blame] | 70 | 'scheduled-host-transition-persist-path', type: 'string', |
| 71 | value: '/var/lib/phosphor-state-manager/scheduledHostTransition', |
| 72 | description: 'Path of file for storing the scheduled time and the requested transition.', |
| 73 | ) |
| 74 | |
| 75 | option( |
Andrew Geissler | f245410 | 2019-12-06 15:14:08 -0600 | [diff] [blame] | 76 | 'boot-count-max-allowed', type: 'integer', |
| 77 | value: 3, |
| 78 | description: 'The maximum allowed reboot count.', |
| 79 | ) |
| 80 | |
| 81 | option( |
| 82 | 'class-version', type: 'integer', |
| 83 | value: 1, |
| 84 | description: 'Class version to register with Cereal.', |
| 85 | ) |
Carol Wang | 71230ef | 2020-02-18 17:39:49 +0800 | [diff] [blame] | 86 | |
| 87 | option( |
| 88 | 'scheduled-host-transition-busname', type: 'string', |
| 89 | value: 'xyz.openbmc_project.State.ScheduledHostTransition', |
| 90 | description: 'The scheduled host transition Dbus busname to own.', |
| 91 | ) |
Andrew Geissler | 7fdad60 | 2020-06-22 13:46:16 -0500 | [diff] [blame] | 92 | |
| 93 | option('warm-reboot', type : 'feature', |
| 94 | value : 'enabled', |
| 95 | description : 'Enable warm reboots of the system', |
| 96 | ) |