diff options
author | Simon Glass <sjg@chromium.org> | 2021-10-21 21:08:44 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-16 14:35:08 -0500 |
commit | 79c0e8a935b5470ecc1419cbcce23ec75b1b65f6 (patch) | |
tree | ddb8ed1599553fc78d50ec0854e3a1d2712e3d1d /include/configs | |
parent | 9272805139a104c83dff8230e03e9626dd9bc195 (diff) | |
download | u-boot-79c0e8a935b5470ecc1419cbcce23ec75b1b65f6.tar.gz u-boot-79c0e8a935b5470ecc1419cbcce23ec75b1b65f6.tar.bz2 u-boot-79c0e8a935b5470ecc1419cbcce23ec75b1b65f6.zip |
sandbox: Drop distro_boot
This is a complicated set of #defines and it is painful to convert to a
text file. We can (once pending patches are applied) provide the same
functionality with bootmethod. Drop this for sandbox to allow conversion
to a text-file environment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek BehĂșn <marek.behun@nic.cz>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/sandbox.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index d614b70471..0da0cf5092 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -39,16 +39,6 @@ #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 115200} -#define BOOT_TARGET_DEVICES(func) \ - func(HOST, host, 1) \ - func(HOST, host, 0) - -#ifdef __ASSEMBLY__ -#define BOOTENV -#else -#include <config_distro_bootcmd.h> -#endif - #define CONFIG_KEEP_SERVERADDR #define CONFIG_UDP_CHECKSUM #define CONFIG_TIMESTAMP @@ -93,7 +83,6 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ SANDBOX_SERIAL_SETTINGS \ SANDBOX_ETH_SETTINGS \ - BOOTENV \ MEM_LAYOUT_ENV_SETTINGS #ifndef CONFIG_SPL_BUILD |