Browse Source

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>
Nobuhiro Iwamatsu 8 years ago
parent
commit
fad6a2b771
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/Kconfig

+ 1 - 1
common/Kconfig

@@ -90,7 +90,7 @@ config BOOTSTAGE_STASH_ADDR
 
 
 config BOOTSTAGE_STASH_SIZE
 config BOOTSTAGE_STASH_SIZE
 	hex "Size of boot timing stash region"
 	hex "Size of boot timing stash region"
-	default 4096
+	default 0x1000
 	help
 	help
 	  This should be large enough to hold the bootstage stash. A value of
 	  This should be large enough to hold the bootstage stash. A value of
 	  4096 (4KiB) is normally plenty.
 	  4096 (4KiB) is normally plenty.