summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAseda Aboagye <aaboagye@google.com>2017-02-10 10:46:22 -0800
committerchrome-bot <chrome-bot@chromium.org>2017-02-10 19:02:58 -0800
commitae3996fb2fda2a970c45ebf347ee2011f9f34b28 (patch)
tree484e7cda12935b2afb8d3d41ab8f04fc9458c4f2
parent3d011b164c08eb5b934ca4f1d9f64f922a4f763f (diff)
downloadchrome-ec-ae3996fb2fda2a970c45ebf347ee2011f9f34b28.tar.gz
jerry: Increase HC task stack size.
With ToT images, we were hitting a stack overflow in the host command task. BUG=none BRANCH=none TEST=disable EC SW sync, flash jerry, verify it boots to login screen. Change-Id: I978b768c1619b4f0dfe862e96c31a91cebce8b87 Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/440396 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Shelley Chen <shchen@chromium.org>
-rw-r--r--board/jerry/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/jerry/ec.tasklist b/board/jerry/ec.tasklist
index 318cfe2553..b9f36f7078 100644
--- a/board/jerry/ec.tasklist
+++ b/board/jerry/ec.tasklist
@@ -18,6 +18,6 @@
TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE)