mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	Add required Kconfig symbols, Makefile bits and macro fixes in a few places to support LZO and DT compression in U-Boot. This can save a lot of space with multi-DTB fitImages. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@konsulko.com> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			396 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			396 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * config_defaults.h - sane defaults for everyone
 | |
|  *
 | |
|  * Copyright (c) 2009 Analog Devices Inc.
 | |
|  *
 | |
|  * Licensed under the GPL-2 or later.
 | |
|  */
 | |
| 
 | |
| #ifndef _CONFIG_DEFAULTS_H_
 | |
| #define _CONFIG_DEFAULTS_H_
 | |
| 
 | |
| /* Support bootm-ing different OSes */
 | |
| #define CONFIG_BOOTM_LINUX 1
 | |
| #define CONFIG_BOOTM_NETBSD 1
 | |
| #define CONFIG_BOOTM_PLAN9 1
 | |
| #define CONFIG_BOOTM_RTEMS 1
 | |
| #define CONFIG_BOOTM_VXWORKS 1
 | |
| 
 | |
| #endif
 |