summaryrefslogtreecommitdiff
path: root/board/scout/ec.tasklist
diff options
context:
space:
mode:
authorJeff Chase <jnchase@google.com>2021-06-28 11:13:43 -0400
committerCommit Bot <commit-bot@chromium.org>2021-06-29 03:47:25 +0000
commit6d5e9b9b885017b4e6d06cfbb2585cfb23c58d82 (patch)
tree0bc60e90c75199f7365bbc00e7a457b105a4acd6 /board/scout/ec.tasklist
parentc3c5a23f1cb4fa321dd4b5246f9417c54b32ac6c (diff)
downloadchrome-ec-6d5e9b9b885017b4e6d06cfbb2585cfb23c58d82.tar.gz
scout: copy genesis firmware
BRANCH=none BUG=b:187081076 TEST=boot scout Signed-off-by: Jeff Chase <jnchase@google.com> Change-Id: I2dc80b7dad691d99801b870be205ab1db937e463 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2991898 Reviewed-by: Joe Tessler <jrt@chromium.org> Commit-Queue: Joe Tessler <jrt@chromium.org> Tested-by: Joe Tessler <jrt@chromium.org>
Diffstat (limited to 'board/scout/ec.tasklist')
-rw-r--r--board/scout/ec.tasklist15
1 files changed, 15 insertions, 0 deletions
diff --git a/board/scout/ec.tasklist b/board/scout/ec.tasklist
new file mode 100644
index 0000000000..787ffbf479
--- /dev/null
+++ b/board/scout/ec.tasklist
@@ -0,0 +1,15 @@
+/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/*
+ * See CONFIG_TASK_LIST in config.h for details.
+ */
+
+#define CONFIG_TASK_LIST \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 2048) \
+ TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE)