blob: ad08c1d335d3ba29fd75dcab99f948a5c6a7e278 [file] [log] [blame]
Mike Frysinger10c32ff2009-12-02 21:15:03 -05001/*
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 Stallion04d41402013-03-20 06:31:35 +000015#define CONFIG_BOOTM_PLAN9 1
Mike Frysinger10c32ff2009-12-02 21:15:03 -050016#define CONFIG_BOOTM_RTEMS 1
Miao Yande37cdc2013-11-28 17:51:37 +080017#define CONFIG_BOOTM_VXWORKS 1
Mike Frysinger10c32ff2009-12-02 21:15:03 -050018
Mike Frysinger44431ca2010-01-21 19:30:36 -050019#define CONFIG_GZIP 1
20#define CONFIG_ZLIB 1
Matthew McClintockdf3fc522011-05-24 05:31:19 +000021#define CONFIG_PARTITIONS 1
Mike Frysinger44431ca2010-01-21 19:30:36 -050022
Mike Frysinger10c32ff2009-12-02 21:15:03 -050023#endif