Mike Frysinger | d595458 | 2009-12-02 21:15:03 -0500 | [diff] [blame] | 1 | /* |
2 | * config_defaults.h - sane defaults for everyone | ||||
3 | * | ||||
4 | * Copyright (c) 2009 Analog Devices Inc. | ||||
5 | * | ||||
6 | * Licensed under the GPL-2 or later. | ||||
7 | */ | ||||
8 | |||||
9 | #ifndef _CONFIG_DEFAULTS_H_ | ||||
10 | #define _CONFIG_DEFAULTS_H_ | ||||
11 | |||||
12 | /* Support bootm-ing different OSes */ | ||||
13 | #define CONFIG_BOOTM_LINUX 1 | ||||
14 | #define CONFIG_BOOTM_NETBSD 1 | ||||
Steven Stallion | 36ec8ac | 2013-03-20 06:31:35 +0000 | [diff] [blame] | 15 | #define CONFIG_BOOTM_PLAN9 1 |
Mike Frysinger | d595458 | 2009-12-02 21:15:03 -0500 | [diff] [blame] | 16 | #define CONFIG_BOOTM_RTEMS 1 |
Miao Yan | a68fe99 | 2013-11-28 17:51:37 +0800 | [diff] [blame] | 17 | #define CONFIG_BOOTM_VXWORKS 1 |
Mike Frysinger | d595458 | 2009-12-02 21:15:03 -0500 | [diff] [blame] | 18 | |
Mike Frysinger | ab427ae | 2010-01-21 19:30:36 -0500 | [diff] [blame] | 19 | #define CONFIG_GZIP 1 |
20 | #define CONFIG_ZLIB 1 | ||||
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 21 | #define CONFIG_PARTITIONS 1 |
Mike Frysinger | ab427ae | 2010-01-21 19:30:36 -0500 | [diff] [blame] | 22 | |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 23 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 24 | #ifndef CONFIG_DM_WARN |
Simon Glass | dffe2ec | 2014-11-10 17:16:49 -0700 | [diff] [blame] | 25 | #define CONFIG_DM_WARN |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 26 | #endif |
27 | #ifndef CONFIG_DM_DEVICE_REMOVE | ||||
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 28 | #define CONFIG_DM_DEVICE_REMOVE |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 29 | #endif |
30 | #ifndef CONFIG_DM_STDIO | ||||
Simon Glass | c058d8b | 2014-11-10 17:16:48 -0700 | [diff] [blame] | 31 | #define CONFIG_DM_STDIO |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 32 | #endif |
Simon Glass | 93e414d | 2015-02-05 21:41:36 -0700 | [diff] [blame] | 33 | #endif |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 34 | |
Mike Frysinger | d595458 | 2009-12-02 21:15:03 -0500 | [diff] [blame] | 35 | #endif |