diff options
author | Simon Glass | 2019-04-08 13:20:46 -0600 |
---|---|---|
committer | Simon Glass | 2019-04-23 20:26:43 -0600 |
commit | b82de17eb2e89d511df293e02bdea517399d02c3 (patch) | |
tree | 43ce700c777e4f1e1b2f4d83b66f5a1995d27188 | |
parent | 173577252f2bebaf17851ce8128ba522f27fb6dd (diff) |
sandbox: Increase the early-trace-buffer size
This buffer is too small now that sandbox has grown in size. Increase it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/configs/sandbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index e36a5fec0ef..6dd03e31cfa 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -9,7 +9,7 @@ #ifdef FTRACE #define CONFIG_TRACE #define CONFIG_TRACE_BUFFER_SIZE (16 << 20) -#define CONFIG_TRACE_EARLY_SIZE (8 << 20) +#define CONFIG_TRACE_EARLY_SIZE (16 << 20) #define CONFIG_TRACE_EARLY #define CONFIG_TRACE_EARLY_ADDR 0x00100000 |