mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
95f4bbd581
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>
19 lines
396 B
C
19 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
|