summaryrefslogtreecommitdiff
path: root/board/volteer/ec.tasklist
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2019-08-15 13:04:43 -0600
committerCommit Bot <commit-bot@chromium.org>2019-08-20 15:32:39 +0000
commit6fe0f643a1012d6aff2fe9874619238aa2e2284b (patch)
tree9890f9553e67cc2e3fd4193baa345371ad7b7934 /board/volteer/ec.tasklist
parentd7bb1b0e0a24571f01ca048185bd8b9d882c4f8f (diff)
downloadchrome-ec-6fe0f643a1012d6aff2fe9874619238aa2e2284b.tar.gz
Volteer: initial EC board setup
Create Volteer skeleton build. Only includes base NPCX7 configuration required to build. BUG=none BRANCH=none TEST=make BOARD=volteer, make buildall TEST=Booted skeleton volteer EC image on careena board. Change-Id: I07769edfac9818320f18bbc9d0ebcd8f345fb8bb Signed-off-by: Keith Short <keithshort@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1758532 Reviewed-by: Abe Levkoy <alevkoy@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'board/volteer/ec.tasklist')
-rw-r--r--board/volteer/ec.tasklist13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/volteer/ec.tasklist b/board/volteer/ec.tasklist
new file mode 100644
index 0000000000..6e1791520d
--- /dev/null
+++ b/board/volteer/ec.tasklist
@@ -0,0 +1,13 @@
+/* Copyright 2019 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_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE)