Implement XAP 'secure' core requirements (#16843)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
This commit is contained in:
		@@ -94,7 +94,12 @@ def generate_config_items(kb_info_json, config_h_lines):
 | 
			
		||||
        except KeyError:
 | 
			
		||||
            continue
 | 
			
		||||
 | 
			
		||||
        if key_type.startswith('array'):
 | 
			
		||||
        if key_type.startswith('array.array'):
 | 
			
		||||
            config_h_lines.append('')
 | 
			
		||||
            config_h_lines.append(f'#ifndef {config_key}')
 | 
			
		||||
            config_h_lines.append(f'#   define {config_key} {{ {", ".join(["{" + ",".join(list(map(str, x))) + "}" for x in config_value])} }}')
 | 
			
		||||
            config_h_lines.append(f'#endif // {config_key}')
 | 
			
		||||
        elif key_type.startswith('array'):
 | 
			
		||||
            config_h_lines.append('')
 | 
			
		||||
            config_h_lines.append(f'#ifndef {config_key}')
 | 
			
		||||
            config_h_lines.append(f'#   define {config_key} {{ {", ".join(map(str, config_value))} }}')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user