2014-02-04 11:25:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013-2014 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONFIG_CMD_DISTRO_DEFAULTS_H
|
|
|
|
#define _CONFIG_CMD_DISTRO_DEFAULTS_H
|
|
|
|
|
|
|
|
/*
|
2014-02-05 13:04:38 +00:00
|
|
|
* List of all commands and options that when defined enables support for
|
|
|
|
* features required by distros to support boards in a standardised and
|
2014-10-21 20:35:28 +00:00
|
|
|
* consistent manner.
|
2014-02-04 11:25:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define CONFIG_BOOTP_BOOTPATH
|
|
|
|
#define CONFIG_BOOTP_DNS
|
|
|
|
#define CONFIG_BOOTP_GATEWAY
|
|
|
|
#define CONFIG_BOOTP_HOSTNAME
|
|
|
|
#define CONFIG_BOOTP_PXE
|
|
|
|
#define CONFIG_BOOTP_SUBNETMASK
|
|
|
|
|
|
|
|
#define CONFIG_CMDLINE_EDITING
|
|
|
|
#define CONFIG_AUTO_COMPLETE
|
|
|
|
#define CONFIG_SYS_LONGHELP
|
|
|
|
#define CONFIG_DOS_PARTITION
|
|
|
|
#define CONFIG_EFI_PARTITION
|
2016-04-11 14:16:21 +00:00
|
|
|
#define CONFIG_ISO_PARTITION
|
2014-02-04 11:25:47 +00:00
|
|
|
#define CONFIG_SUPPORT_RAW_INITRD
|
2016-04-14 14:07:54 +00:00
|
|
|
#define CONFIG_ENV_VARS_UBOOT_CONFIG
|
2014-02-04 11:25:47 +00:00
|
|
|
|
|
|
|
#endif /* _CONFIG_CMD_DISTRO_DEFAULTS_H */
|