diff options
author | Daniel Boulby <daniel.boulby@arm.com> | 2018-07-20 12:28:55 +0100 |
---|---|---|
committer | Daniel Boulby <daniel.boulby@arm.com> | 2018-07-20 12:29:53 +0100 |
commit | a0934217c96bcf9e0816d24f19d660463b827490 (patch) | |
tree | e7df00ff6f065edb5e15a6be8f5a35a1f1e7151f | |
parent | b6c07bbb2ed520f0b51775adb5d22b294d6971eb (diff) |
Increase BL2U stack size
BL2U is running out of stack during firmware update. Increase
stack size to prevent this
Change-Id: I9b1a4e237a00172c6738c84b455b3878ab184cb8
Signed-off-by: Daniel Boulby <daniel.boulby@arm.com>
-rw-r--r-- | include/plat/arm/board/common/board_arm_def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plat/arm/board/common/board_arm_def.h b/include/plat/arm/board/common/board_arm_def.h index 5e1d680c..c3ae5643 100644 --- a/include/plat/arm/board/common/board_arm_def.h +++ b/include/plat/arm/board/common/board_arm_def.h @@ -28,7 +28,7 @@ # define PLATFORM_STACK_SIZE 0x400 # endif #elif defined(IMAGE_BL2U) -# define PLATFORM_STACK_SIZE 0x200 +# define PLATFORM_STACK_SIZE 0x400 #elif defined(IMAGE_BL31) #if ENABLE_SPM # define PLATFORM_STACK_SIZE 0x500 |