mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	Much of the code in zimage.c deals with the zboot command. Move it into a sepatate zboot.c file within the cmd/ directory. This will eventually allow use of the zimage logic without the command being enabled. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			9 lines
		
	
	
		
			237 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			237 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0+
 | |
| 
 | |
| obj-$(CONFIG_CMD_CBSYSINFO) += cbsysinfo.o
 | |
| obj-y += mtrr.o
 | |
| obj-$(CONFIG_CMD_EXCEPTION) += exception.o
 | |
| obj-$(CONFIG_USE_HOB) += hob.o
 | |
| obj-$(CONFIG_HAVE_FSP) += fsp.o
 | |
| obj-$(CONFIG_CMD_ZBOOT) += zboot.o
 |