mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	Unfortunately a recent patch snuck through without the require test
coverage. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 571bc4e67d3 ("binman: Support positioning an entry by and ELF symbol")
		
	
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			390 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			390 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright 2021 Google LLC
 | 
						|
 *
 | 
						|
 * Simple program including some embedded data that can be accessed by binman.
 | 
						|
 * This is used by binman tests.
 | 
						|
 */
 | 
						|
 | 
						|
int first[10] = {1};
 | 
						|
int before[2] __attribute__((section(".embed"))) = {2, 3};
 | 
						|
int embed[3] __attribute__((section(".embed"))) = {0x1234, 0x5678};
 | 
						|
int second[10] = {1};
 | 
						|
 | 
						|
int main(void)
 | 
						|
{
 | 
						|
	return 0;
 | 
						|
}
 |