diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2017-04-02 07:48:12 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-08 09:26:53 -0400 |
commit | fad6a2b771eecac5ce69173235743e5357bf014d (patch) | |
tree | 6786bcea51281daebb671121f1656c49159a1419 | |
parent | 634fcf084875674d86c303e630f83b2017e7e07f (diff) | |
download | u-boot-fad6a2b771eecac5ce69173235743e5357bf014d.zip u-boot-fad6a2b771eecac5ce69173235743e5357bf014d.tar.gz u-boot-fad6a2b771eecac5ce69173235743e5357bf014d.tar.bz2 |
common, kconfig: Fix defaut value of BOOTSTAGE_STASH_SIZE
The default value of BOOTSTAGE_STASH_SIZE should be set to hexadecimal,
but an integer value is set. This fixes the BOOTSTAGE_STASH_SIZE number
from hexadecimal to integer.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 1e0c627..ec519d0 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -90,7 +90,7 @@ config BOOTSTAGE_STASH_ADDR config BOOTSTAGE_STASH_SIZE hex "Size of boot timing stash region" - default 4096 + default 0x1000 help This should be large enough to hold the bootstage stash. A value of 4096 (4KiB) is normally plenty. |