]>
Commit | Line | Data |
---|---|---|
10c32ff5 MF |
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 | |
04d41409 | 15 | #define CONFIG_BOOTM_PLAN9 1 |
10c32ff5 | 16 | #define CONFIG_BOOTM_RTEMS 1 |
de37cdc2 | 17 | #define CONFIG_BOOTM_VXWORKS 1 |
10c32ff5 | 18 | |
44431cab MF |
19 | #define CONFIG_GZIP 1 |
20 | #define CONFIG_ZLIB 1 | |
df3fc526 | 21 | #define CONFIG_PARTITIONS 1 |
44431cab | 22 | |
10c32ff5 | 23 | #endif |