1option( 2 'tests', 3 type : 'feature', 4 description : 'Build tests' 5) 6 7option( 8 'i2c-occ', 9 type : 'feature', 10 description : 'Enable I2C OCC support', 11 value: 'disabled' 12) 13 14option( 15 'read-occ-sensors', 16 type : 'feature', 17 description : 'Enable read occ sensors support', 18 value: 'disabled' 19) 20 21option( 22 'max-cpus', 23 type : 'integer', 24 min:0, max:255, 25 description : 'Maximum number of CPUs', 26 value: 2 27) 28 29option( 30 'ps-derating-factor', 31 type : 'integer', 32 min:0, max:100, 33 description : 'Power supply derating factor', 34 value: 90 35) 36 37option( 38 'with-host-communication-protocol', 39 type : 'string', 40 description : 'To specify the host communication protocol' 41) 42 43option( 44 'power10-support', 45 type : 'feature', 46 description : 'Enable Power10 support', 47 value: 'disabled' 48) 49 50option( 51 'yamldir', 52 type : 'string', 53 description : 'The path to the yaml config files' 54) 55 56option( 57 'op_dump_obj_path', 58 type: 'string', 59 value: '/org/openpower/dump', 60 description : 'Object path requesting OpenPOWER dumps' 61) 62 63option( 64 'transport-implementation', 65 type: 'combo', 66 choices: ['mctp-demux', 'af-mctp'], 67 description: 'transport via af-mctp or mctp-demux' 68) 69