blob: 956c9bfd239cf3929eed8f448b045ac5fb95b149 [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(
Andrew Geisslerf2454102019-12-06 15:14:08 -060052 'host-state-persist-path', type: 'string',
Allen.Wangba182f02022-03-23 19:01:53 +080053 value: '/var/lib/phosphor-state-manager/host{}-PersistData',
54 description: 'Path format of file for storing requested HostState,boot progress and os status.',
Andrew Geisslerf2454102019-12-06 15:14:08 -060055)
56
57option(
58 'poh-counter-persist-path', type: 'string',
Allen.Wangba182f02022-03-23 19:01:53 +080059 value: '/var/lib/phosphor-state-manager/chassis{}-POHCounter',
60 description: 'Path format of file for storing POH counter.',
Andrew Geisslerf2454102019-12-06 15:14:08 -060061)
62
63option(
64 'chassis-state-change-persist-path', type: 'string',
Allen.Wangba182f02022-03-23 19:01:53 +080065 value: '/var/lib/phosphor-state-manager/chassis{}-StateChangeTime',
66 description: 'Path format of file for storing the state change time.',
Andrew Geisslerf2454102019-12-06 15:14:08 -060067)
68
69option(
Carol Wang1dbbef42020-03-09 11:51:23 +080070 '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
75option(
Andrew Geisslerf2454102019-12-06 15:14:08 -060076 'boot-count-max-allowed', type: 'integer',
77 value: 3,
78 description: 'The maximum allowed reboot count.',
79)
80
81option(
82 'class-version', type: 'integer',
NodeMan97b4cbfac2022-05-09 23:56:39 -050083 value: 2,
Andrew Geisslerf2454102019-12-06 15:14:08 -060084 description: 'Class version to register with Cereal.',
85)
Carol Wang71230ef2020-02-18 17:39:49 +080086
87option(
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 Geissler7fdad602020-06-22 13:46:16 -050092
93option('warm-reboot', type : 'feature',
94 value : 'enabled',
95 description : 'Enable warm reboots of the system',
96)
Thang Tranba2241c2021-10-26 17:47:09 +070097
98option('host-gpios', type : 'feature',
99 value : 'disabled',
100 description : 'Enable gpio mechanism to check host state.',
101)
102
103option('host-gpios-busname', type : 'string',
104 value : 'xyz.openbmc_project.State.HostCondition.Gpio',
105 description : 'The host gpios Dbus busname to own.',
106)
107
108option('host-gpios-objpath', type : 'string',
109 value : '/xyz/openbmc_project/Gpios',
110 description : 'The host gpios Dbus root.',
111)
112
Andrew Geissler8d8d7312022-03-04 14:42:26 -0600113option('sysfs-secure-boot-path', type : 'string',
114 value : '/sys/kernel/debug/aspeed/sbc/secure_boot',
115 description : 'The sysfs path to the secure boot value.',
116)
117
118option('sysfs-abr-image-path', type : 'string',
119 value : '/sys/kernel/debug/aspeed/sbc/abr_image',
120 description : 'The sysfs path to the abr image value.',
121)
NodeMan97bcbee4a2022-05-27 15:28:45 -0500122
123option('only-run-apr-on-power-loss', type : 'boolean',
124 value : 'false',
125 description : 'Only run automatic restore policy due to loss of AC power.'
126)