mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	When binman is in use, most of the targets built by the Makefile are inputs to binman. We then need a final rule to run binman to produce the final outputs. Rename the variable to indicate this, and add a new 'inputs' target. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ifeq ($(CONFIG_CPU_ARM926EJS),y)
 | |
| PLATFORM_CPPFLAGS += $(call cc-option,-mtune=arm926ejs,)
 | |
| endif
 | |
| 
 | |
| ifeq ($(CONFIG_CPU_V7A),y)
 | |
| ifndef CONFIG_SPL_BUILD
 | |
| INPUTS-y	+= u-boot.img
 | |
| endif
 | |
| endif
 |