mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Include a file with the initial values for non-volatile UEFI variables into the U-Boot binary. If this variable is set, changes to variable PK will not be allowed. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
		
			
				
	
	
		
			18 lines
		
	
	
		
			353 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			353 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Predefined UEFI variables
 | 
						|
 *
 | 
						|
 * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
 | 
						|
 */
 | 
						|
 | 
						|
#include <config.h>
 | 
						|
 | 
						|
.section .rodata.efi_seed.init,"a"
 | 
						|
.balign 16
 | 
						|
.global __efi_var_file_begin
 | 
						|
__efi_var_file_begin:
 | 
						|
.incbin CONFIG_EFI_VAR_SEED_FILE
 | 
						|
.global __efi_var_file_end
 | 
						|
__efi_var_file_end:
 | 
						|
.balign 16
 |