mirror of
				https://github.com/linux-sunxi/u-boot-sunxi.git
				synced 2024-02-12 11:16:03 +08:00 
			
		
		
		
	We have config_defaults.h which are random configuration settings that everyone gets by default. We also have config_cmd_default.h which is a recommended list of defaults but boards have to opt into. Now we have config_cmd_defaults.h which is a list of defaults that everyone gets and has to actively opt out of. For now, we populate it with the bootm command which previously was unable to be disabled. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
		
			
				
	
	
		
			15 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * config_cmd_defaults.h - sane defaults for everyone
 | 
						|
 *
 | 
						|
 * Copyright (c) 2010 Analog Devices Inc.
 | 
						|
 *
 | 
						|
 * Licensed under the GPL-2 or later.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _CONFIG_CMD_DEFAULTS_H_
 | 
						|
#define _CONFIG_CMD_DEFAULTS_H_
 | 
						|
 | 
						|
#define CONFIG_CMD_BOOTM 1
 | 
						|
 | 
						|
#endif
 |