blob: d340668b7e683795f0279404ae43dc4d4d20c48b [file] [log] [blame]
Andrew Geisslerf2454102019-12-06 15:14:08 -06001option('tests', type: 'feature', description: 'Build tests')
2
3option(
4 'host-busname', type: 'string',
5 value: 'xyz.openbmc_project.State.Host',
6 description: 'The Host DBus busname to own.',
7)
8
9option(
10 'host-objpath', type: 'string',
11 value: '/xyz/openbmc_project/state/host',
12 description: 'The host state manager Dbus root.',
13)
14
15option(
Andrew Geisslerfe270d32021-01-27 14:06:46 -060016 'hypervisor-busname', type: 'string',
17 value: 'xyz.openbmc_project.State.Hypervisor',
18 description: 'The Hypervisor DBus busname to own.',
19)
20
21option(
22 'hypervisor-objpath', type: 'string',
23 value: '/xyz/openbmc_project/state/hypervisor',
24 description: 'The hypervisor state manager Dbus root.',
25)
26
27option(
Andrew Geisslerf2454102019-12-06 15:14:08 -060028 'chassis-busname', type: 'string',
29 value: 'xyz.openbmc_project.State.Chassis',
30 description: 'The Chassis DBus busname to own.',
31)
32
33option(
34 'chassis-objpath', type: 'string',
35 value: '/xyz/openbmc_project/state/chassis',
36 description: 'The chassis state manager Dbus root.',
37)
38
39option(
40 'bmc-busname', type: 'string',
41 value: 'xyz.openbmc_project.State.BMC',
42 description: 'The BMC DBus busname to own.',
43)
44
45option(
46 'bmc-objpath', type: 'string',
47 value: '/xyz/openbmc_project/state/bmc',
48 description: 'The bmc state manager Dbus root.',
49)
50
51option(
52 'host-running-file', type: 'string',
53 value: '/run/openbmc/host@%d-on',
54 description: 'File to create if host is running.',
55)
56
57option(
58 'host-state-persist-path', type: 'string',
59 value: '/var/lib/phosphor-state-manager/requestedHostTransition',
60 description: 'Path of file for storing requested host state.',
61)
62
63option(
64 'poh-counter-persist-path', type: 'string',
65 value: '/var/lib/phosphor-state-manager/POHCounter',
66 description: 'Path of file for storing POH counter.',
67)
68
69option(
70 'chassis-state-change-persist-path', type: 'string',
71 value: '/var/lib/phosphor-state-manager/chassisStateChangeTime',
72 description: 'Path of file for storing the state change time.',
73)
74
75option(
Carol Wang1dbbef42020-03-09 11:51:23 +080076 'scheduled-host-transition-persist-path', type: 'string',
77 value: '/var/lib/phosphor-state-manager/scheduledHostTransition',
78 description: 'Path of file for storing the scheduled time and the requested transition.',
79)
80
81option(
Andrew Geisslerf2454102019-12-06 15:14:08 -060082 'boot-count-max-allowed', type: 'integer',
83 value: 3,
84 description: 'The maximum allowed reboot count.',
85)
86
87option(
88 'class-version', type: 'integer',
89 value: 1,
90 description: 'Class version to register with Cereal.',
91)
Carol Wang71230ef2020-02-18 17:39:49 +080092
93option(
94 'scheduled-host-transition-busname', type: 'string',
95 value: 'xyz.openbmc_project.State.ScheduledHostTransition',
96 description: 'The scheduled host transition Dbus busname to own.',
97)
Andrew Geissler7fdad602020-06-22 13:46:16 -050098
99option('warm-reboot', type : 'feature',
100 value : 'enabled',
101 description : 'Enable warm reboots of the system',
102)