Dennis Gilmore | 13a49c3 | 2014-02-04 05:25:47 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013-2014 Red Hat, Inc. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef _CONFIG_CMD_DISTRO_DEFAULTS_H |
| 8 | #define _CONFIG_CMD_DISTRO_DEFAULTS_H |
| 9 | |
| 10 | /* |
Tom Rini | e141652 | 2014-02-05 08:04:38 -0500 | [diff] [blame] | 11 | * List of all commands and options that when defined enables support for |
| 12 | * features required by distros to support boards in a standardised and |
Robert P. J. Day | 3bd6f7e | 2014-10-21 16:35:28 -0400 | [diff] [blame] | 13 | * consistent manner. |
Dennis Gilmore | 13a49c3 | 2014-02-04 05:25:47 -0600 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #define CONFIG_BOOTP_BOOTPATH |
| 17 | #define CONFIG_BOOTP_DNS |
| 18 | #define CONFIG_BOOTP_GATEWAY |
| 19 | #define CONFIG_BOOTP_HOSTNAME |
| 20 | #define CONFIG_BOOTP_PXE |
| 21 | #define CONFIG_BOOTP_SUBNETMASK |
| 22 | |
Dennis Gilmore | 13a49c3 | 2014-02-04 05:25:47 -0600 | [diff] [blame] | 23 | #define CONFIG_CMD_PXE |
| 24 | |
| 25 | #define CONFIG_CMDLINE_EDITING |
| 26 | #define CONFIG_AUTO_COMPLETE |
Dennis Gilmore | 13a49c3 | 2014-02-04 05:25:47 -0600 | [diff] [blame] | 27 | #define CONFIG_SYS_LONGHELP |
| 28 | #define CONFIG_MENU |
| 29 | #define CONFIG_DOS_PARTITION |
| 30 | #define CONFIG_EFI_PARTITION |
Alexander Graf | 578ec3b | 2016-04-11 16:16:21 +0200 | [diff] [blame] | 31 | #define CONFIG_ISO_PARTITION |
Dennis Gilmore | 13a49c3 | 2014-02-04 05:25:47 -0600 | [diff] [blame] | 32 | #define CONFIG_SUPPORT_RAW_INITRD |
Alexander Graf | ff2545a | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 33 | #define CONFIG_ENV_VARS_UBOOT_CONFIG |
Dennis Gilmore | 13a49c3 | 2014-02-04 05:25:47 -0600 | [diff] [blame] | 34 | |
| 35 | #endif /* _CONFIG_CMD_DISTRO_DEFAULTS_H */ |