projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
634fcf0
)
common, kconfig: Fix defaut value of BOOTSTAGE_STASH_SIZE
author
Nobuhiro Iwamatsu
<iwamatsu@nigauri.org>
Sat, 1 Apr 2017 22:48:12 +0000
(07:48 +0900)
committer
Tom Rini
<trini@konsulko.com>
Sat, 8 Apr 2017 13:26:53 +0000
(09:26 -0400)
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>
common/Kconfig
patch
|
blob
|
history
diff --git
a/common/Kconfig
b/common/Kconfig
index 1e0c6273419f0c3edad242d2079d4b32b43630e1..ec519d07ccde408ef1d7e682a7ed9ffad4f0a344 100644
(file)
--- 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.