diff options
author | Justin Waters <justin.waters@timesys.com> | 2013-07-11 09:54:59 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-07-30 09:21:42 -0400 |
commit | 2c7c03bed1a1cb6e85eeb07c6495ac3cd2e97702 (patch) | |
tree | 75ef797e77c10aaa6fa9413258e1fab5225d5ec0 /include | |
parent | 317fab2df2b06d44d1f91bd44d421f3ef1013ac9 (diff) | |
download | u-boot-imx-2c7c03bed1a1cb6e85eeb07c6495ac3cd2e97702.zip u-boot-imx-2c7c03bed1a1cb6e85eeb07c6495ac3cd2e97702.tar.gz u-boot-imx-2c7c03bed1a1cb6e85eeb07c6495ac3cd2e97702.tar.bz2 |
am335x_evm: Add command line editing
Many modern U-Boot ports enable command line editing and
a history buffer. The am335x_evm configuration is fairly
comprehensive as it is, so a few extra kb should not be
noticable, and it adds a very convenient feature.
Signed-off-by: Justin Waters <justin.waters@timesys.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/am335x_evm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index b633128..b1d7f5f 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -37,6 +37,9 @@ #define CONFIG_OF_LIBFDT #define CONFIG_CMD_BOOTZ #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ +#define CONFIG_CMDLINE_EDITING +#define CONFIG_STACKSIZE (128 * 1024) +#define CONFIG_AUTO_COMPLETE #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG |