1option( 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 'nvidia-gpu', 69 type: 'feature', 70 value: 'enabled', 71 description: 'Enable GPU sensor.', 72) 73option( 74 'external', 75 type: 'feature', 76 value: 'enabled', 77 description: 'Enable External sensor.', 78) 79option('tests', type: 'feature', value: 'enabled', description: 'Build tests.') 80option( 81 'validate-unsecure-feature', 82 type: 'feature', 83 value: 'disabled', 84 description: 'Enables unsecure features required by validation. Note: mustbe turned off for production images.', 85) 86option( 87 'insecure-sensor-override', 88 type: 'feature', 89 value: 'disabled', 90 description: 'Enables Sensor override feature without any check.', 91) 92option( 93 'leakdetector', 94 type: 'feature', 95 value: 'enabled', 96 description: 'Enable Liquid Leak Detector.', 97) 98option( 99 'smbpbi', 100 type: 'feature', 101 value: 'enabled', 102 description: 'Enable SMBPBI sensor.', 103) 104option( 105 'cable-monitor', 106 type: 'feature', 107 value: 'enabled', 108 description: 'Enable Cable monitor.', 109) 110