mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 02:11:25 +01:00 
			
		
		
		
	These test programs are includedd as binary files in U-Boot to avoid having to build them (and associated toolchain differences). Instructions on building are in the files themselves, but it seems better to provide a Makefile which can be manually run when desired. Add a Makefile, separate from the normal build system, to handle this. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			12 lines
		
	
	
		
			314 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			314 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2016 Google, Inc
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:     GPL-2.0+
 | 
						|
 *
 | 
						|
 * Simple program to create a bad _dt_ucode_base_size symbol to create an
 | 
						|
 * error when it is used. This is used by binman tests.
 | 
						|
 */
 | 
						|
 | 
						|
static unsigned long not__dt_ucode_base_size[2]
 | 
						|
		__attribute__((section(".ucode"))) = {1, 2};
 |