blob: b5efab5c3f9c76381e1369c13978b94b3e2fd131 [file] [log] [blame]
Dennis Gilmore9e5d27a2014-02-04 05:25:47 -06001/*
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 Rini7e782782014-02-05 08:04:38 -050011 * 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. Day6f871d02014-10-21 16:35:28 -040013 * consistent manner.
Dennis Gilmore9e5d27a2014-02-04 05:25:47 -060014 */
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 Gilmore9e5d27a2014-02-04 05:25:47 -060023#define CONFIG_CMD_PXE
24
25#define CONFIG_CMDLINE_EDITING
26#define CONFIG_AUTO_COMPLETE
Dennis Gilmore9e5d27a2014-02-04 05:25:47 -060027#define CONFIG_SYS_LONGHELP
28#define CONFIG_MENU
29#define CONFIG_DOS_PARTITION
30#define CONFIG_EFI_PARTITION
Alexander Grafc5bba092016-04-11 16:16:21 +020031#define CONFIG_ISO_PARTITION
Dennis Gilmore9e5d27a2014-02-04 05:25:47 -060032#define CONFIG_SUPPORT_RAW_INITRD
Alexander Grafa2f9dfa2016-04-14 16:07:54 +020033#define CONFIG_ENV_VARS_UBOOT_CONFIG
Dennis Gilmore9e5d27a2014-02-04 05:25:47 -060034
35#endif /* _CONFIG_CMD_DISTRO_DEFAULTS_H */