From: Fabio Estevam Date: Mon, 2 Mar 2015 17:14:38 +0000 (-0300) Subject: novena: Use the default CONFIG_SYS_PBSIZE X-Git-Tag: v2015.04-rc5~64^2~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1f62482eed73108ed602b80ed462c26043a35235;p=u-boot 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 Signed-off-by: Fabio Estevam Acked-by: Marek Vasut --- diff --git a/include/configs/novena.h b/include/configs/novena.h index 074110c939..3809c6c59b 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 */