mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
include/config_fallbacks.h: change fallback for CONFIG_SYS_PBSIZE
Most of the platforms are using CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16 as their value for CONFIG_SYS_PBSIZE, so let's adopt this for the fallback value of CONFIG_SYS_PBSIZE. This will allow us to drop an explicit definition of CONFIG_SYS_PBSIZE from a large number of platforms. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
committed by
Tom Rini
parent
3784c789e7
commit
80c914f1bb
@@ -82,7 +82,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_SYS_PBSIZE
|
#ifndef CONFIG_SYS_PBSIZE
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + 128)
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_FIT_SIGNATURE
|
#ifndef CONFIG_FIT_SIGNATURE
|
||||||
|
Reference in New Issue
Block a user