blob: de733c9fece50950ec30c193c462c072e63d827f [file] [log] [blame]
Patrick Williamsff8c90e2025-02-01 08:37:02 -05001option(
2 'adc',
3 type: 'feature',
4 value: 'enabled',
5 description: 'Enable ADC sensor.',
6)
7option(
8 'intel-cpu',
9 type: 'feature',
10 value: 'enabled',
11 description: 'Enable CPU sensor.',
12)
13option(
14 'exit-air',
15 type: 'feature',
16 value: 'enabled',
17 description: 'Enable exit air sensor.',
18)
19option(
20 'fan',
21 type: 'feature',
22 value: 'enabled',
23 description: 'Enable fan sensor.',
24)
25option(
26 'hwmon-temp',
27 type: 'feature',
28 value: 'enabled',
29 description: 'Enable HWMON temperature sensor.',
30)
31option(
32 'intrusion',
33 type: 'feature',
34 value: 'enabled',
35 description: 'Enable intrusion sensor.',
36)
37option(
38 'ipmb',
39 type: 'feature',
40 value: 'enabled',
41 description: 'Enable IPMB sensor.',
42)
43option(
44 'mctp',
45 type: 'feature',
46 value: 'enabled',
47 description: 'Enable MCTP endpoint management',
48)
49option(
50 'mcu',
51 type: 'feature',
52 value: 'enabled',
53 description: 'Enable MCU sensor.',
54)
55option(
56 'nvme',
57 type: 'feature',
58 value: 'enabled',
59 description: 'Enable NVMe sensor.',
60)
61option(
62 'psu',
63 type: 'feature',
64 value: 'enabled',
65 description: 'Enable PSU sensor.',
66)
67option(
68 'external',
69 type: 'feature',
70 value: 'enabled',
71 description: 'Enable External sensor.',
72)
73option('tests', type: 'feature', value: 'enabled', description: 'Build tests.')
74option(
75 'validate-unsecure-feature',
76 type: 'feature',
77 value: 'disabled',
78 description: 'Enables unsecure features required by validation. Note: mustbe turned off for production images.',
79)
80option(
81 'insecure-sensor-override',
82 type: 'feature',
83 value: 'disabled',
84 description: 'Enables Sensor override feature without any check.',
85)