meson.build (9ce5fe4927a9e32abdd50b3acd8905c6e1151a37) | meson.build (275f7c39190bab69efa11218b68587e8955cc588) |
---|---|
1conf_data = configuration_data() 2conf_data.set10( 3 'VALIDATION_UNSECURE_FEATURE', 4 get_option('validate-unsecure-feature').allowed(), 5) 6conf_data.set10( 7 'INSECURE_UNRESTRICTED_SENSOR_OVERRIDE', 8 get_option('insecure-sensor-override').allowed(), --- 87 unchanged lines hidden (view full) --- 96if get_option('intrusion').allowed() 97 subdir('intrusion') 98endif 99 100if get_option('ipmb').allowed() 101 subdir('ipmb') 102endif 103 | 1conf_data = configuration_data() 2conf_data.set10( 3 'VALIDATION_UNSECURE_FEATURE', 4 get_option('validate-unsecure-feature').allowed(), 5) 6conf_data.set10( 7 'INSECURE_UNRESTRICTED_SENSOR_OVERRIDE', 8 get_option('insecure-sensor-override').allowed(), --- 87 unchanged lines hidden (view full) --- 96if get_option('intrusion').allowed() 97 subdir('intrusion') 98endif 99 100if get_option('ipmb').allowed() 101 subdir('ipmb') 102endif 103 |
104if get_option('mctp').allowed() 105 subdir('mctp') 106endif 107 |
|
104if get_option('mcu').allowed() 105 subdir('mcu') 106endif 107 108if get_option('nvme').allowed() 109 subdir('nvme') 110endif 111 112if get_option('psu').allowed() 113 subdir('psu') 114endif 115 116if get_option('external').allowed() 117 subdir('external') 118endif 119 120if get_option('tests').allowed() 121 subdir('tests') 122endif | 108if get_option('mcu').allowed() 109 subdir('mcu') 110endif 111 112if get_option('nvme').allowed() 113 subdir('nvme') 114endif 115 116if get_option('psu').allowed() 117 subdir('psu') 118endif 119 120if get_option('external').allowed() 121 subdir('external') 122endif 123 124if get_option('tests').allowed() 125 subdir('tests') 126endif |