forked from openbmc/phosphor-state-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
147 lines (121 loc) · 4.22 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
option('tests', type: 'feature', description: 'Build tests')
option(
'host-busname', type: 'string',
value: 'xyz.openbmc_project.State.Host',
description: 'The Host DBus busname to own.',
)
option(
'host-objpath', type: 'string',
value: '/xyz/openbmc_project/state/host',
description: 'The host state manager Dbus root.',
)
option(
'host-sched-objpath', type: 'string',
value: '/xyz/openbmc_project/scheduled/host',
description: 'The scheduled host Dbus root.',
)
option(
'hypervisor-busname', type: 'string',
value: 'xyz.openbmc_project.State.Hypervisor',
description: 'The Hypervisor DBus busname to own.',
)
option(
'hypervisor-objpath', type: 'string',
value: '/xyz/openbmc_project/state/hypervisor',
description: 'The hypervisor state manager Dbus root.',
)
option(
'chassis-busname', type: 'string',
value: 'xyz.openbmc_project.State.Chassis',
description: 'The Chassis DBus busname to own.',
)
option(
'chassis-objpath', type: 'string',
value: '/xyz/openbmc_project/state/chassis',
description: 'The chassis state manager Dbus root.',
)
option(
'bmc-busname', type: 'string',
value: 'xyz.openbmc_project.State.BMC',
description: 'The BMC DBus busname to own.',
)
option(
'bmc-objpath', type: 'string',
value: '/xyz/openbmc_project/state/bmc',
description: 'The bmc state manager Dbus root.',
)
option(
'host-state-persist-path', type: 'string',
value: '/var/lib/phosphor-state-manager/host{}-PersistData',
description: 'Path format of file for storing requested HostState,boot progress and os status.',
)
option(
'poh-counter-persist-path', type: 'string',
value: '/var/lib/phosphor-state-manager/chassis{}-POHCounter',
description: 'Path format of file for storing POH counter.',
)
option(
'chassis-state-change-persist-path', type: 'string',
value: '/var/lib/phosphor-state-manager/chassis{}-StateChangeTime',
description: 'Path format of file for storing the state change time.',
)
option(
'scheduled-host-transition-persist-path', type: 'string',
value: '/var/lib/phosphor-state-manager/scheduledHostTransition',
description: 'Path of file for storing the scheduled time and the requested transition.',
)
option(
'boot-count-max-allowed', type: 'integer',
value: 3,
description: 'The maximum allowed reboot count.',
)
option(
'class-version', type: 'integer',
value: 2,
description: 'Class version to register with Cereal.',
)
option(
'scheduled-host-transition-busname', type: 'string',
value: 'xyz.openbmc_project.State.ScheduledHostTransition',
description: 'The scheduled host transition Dbus busname to own.',
)
option('warm-reboot', type : 'feature',
value : 'enabled',
description : 'Enable warm reboots of the system',
)
option('host-gpios', type : 'feature',
value : 'disabled',
description : 'Enable gpio mechanism to check host state.',
)
option('host-gpios-busname', type : 'string',
value : 'xyz.openbmc_project.State.HostCondition.Gpio',
description : 'The host gpios Dbus busname to own.',
)
option('host-gpios-objpath', type : 'string',
value : '/xyz/openbmc_project/Gpios',
description : 'The host gpios Dbus root.',
)
option('sysfs-secure-boot-path', type : 'string',
value : '/sys/kernel/debug/aspeed/sbc/secure_boot',
description : 'The sysfs path to the secure boot value.',
)
option('sysfs-abr-image-path', type : 'string',
value : '/sys/kernel/debug/aspeed/sbc/abr_image',
description : 'The sysfs path to the abr image value.',
)
option('only-run-apr-on-power-loss', type : 'boolean',
value : 'false',
description : 'Only run automatic restore policy due to loss of AC power.'
)
option('sysfs-tpm-device-path', type : 'string',
value : '/sys/firmware/devicetree/base/ahb/apb/bus@1e78a000/i2c-bus@680/tpm@2e',
description : 'The sysfs path to the tpm device.',
)
option('sysfs-tpm-measurement-path', type : 'string',
value : '/sys/class/tpm/tpm0/pcr-sha256/0',
description : 'The sysfs path to the tpm measurement value.',
)
option('only-allow-boot-when-bmc-ready', type : 'boolean',
value : 'false',
description : 'Only allow chassis and host power on operations when BMC is Ready.'
)