diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-03-02 14:14:38 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-03-13 13:13:49 +0100 |
commit | 1f62482eed73108ed602b80ed462c26043a35235 (patch) | |
tree | 32397fc1e5fe195ca20a8ba3b57de11147d30686 /include/configs | |
parent | 0e26afe5ce03fffca8d665a9c511173a946ff233 (diff) | |
download | u-boot-imx-1f62482eed73108ed602b80ed462c26043a35235.zip u-boot-imx-1f62482eed73108ed602b80ed462c26043a35235.tar.gz u-boot-imx-1f62482eed73108ed602b80ed462c26043a35235.tar.bz2 |
novena: Use the default CONFIG_SYS_PBSIZE
Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".
Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.
Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/novena.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/configs/novena.h b/include/configs/novena.h index 074110c..3809c6c 100644 --- a/include/configs/novena.h +++ b/include/configs/novena.h @@ -58,9 +58,6 @@ /* U-Boot general configurations */ #define CONFIG_SYS_LONGHELP #define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */ -#define CONFIG_SYS_PBSIZE \ - (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) - /* Print buffer size */ #define CONFIG_SYS_MAXARGS 32 /* Max number of command args */ #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot argument buffer size */ |