diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-23 22:59:06 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-03 15:30:30 -0400 |
commit | e090579d0a2d1aa38eab94b98877de9bcdd4f31d (patch) | |
tree | 34a9d760b82bdd1c9755b847ed0b3602257f5c8a /include/configs/nokia_rx51.h | |
parent | 8a7507a8a394f4fccbd7eb730910cf62de6f8d32 (diff) | |
download | u-boot-e090579d0a2d1aa38eab94b98877de9bcdd4f31d.tar.gz u-boot-e090579d0a2d1aa38eab94b98877de9bcdd4f31d.tar.xz u-boot-e090579d0a2d1aa38eab94b98877de9bcdd4f31d.zip |
include/configs: remove numerous CONFIG_SYS_BARGSIZE definitions
This commit removes definitions of CONFIG_SYS_BARGSIZE defined to be
equal to CONFIG_SYS_CBSIZE in numerous configuration files.
We remove such definitions in two situations:
- CONFIG_SYS_CBSIZE is otherwise not defined in the board
configuration file, which means the default value of
CONFIG_SYS_CBSIZE == 256 applies. In this case, the default value
of CONFIG_SYS_BARGSIZE == 512 (common/image.c) is suitable, as it is
larger.
- CONFIG_SYS_CBSIZE is defined in the board configuration file, but
to a value equal or less than 512. In this case, the default value
of CONFIG_SYS_BARGSIZE == 512 (common.image.c) is suitable, as it
is equal or larger.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/nokia_rx51.h')
-rw-r--r-- | include/configs/nokia_rx51.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/configs/nokia_rx51.h b/include/configs/nokia_rx51.h index 1a486806c1..8e1effad34 100644 --- a/include/configs/nokia_rx51.h +++ b/include/configs/nokia_rx51.h @@ -331,8 +331,6 @@ int rx51_kp_getc(struct stdio_dev *sdev); * Miscellaneous configurable options */ #define CONFIG_SYS_LONGHELP /* undef to save memory */ -/* Boot Argument Buffer Size */ -#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + 0x01F00000)/*31MB*/ |