summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2017-01-10 16:32:13 -0800
committerchrome-bot <chrome-bot@chromium.org>2017-01-11 14:46:15 -0800
commit49dff5b7c5521b1c35ce240520cf13200e6f08a4 (patch)
tree4e3ed7e67db9a009c1fe127f4681e684c50cca4a
parent3fc94e5b71431a85ec7231686673616fa6e40de2 (diff)
downloadchrome-ec-49dff5b7c5521b1c35ce240520cf13200e6f08a4.tar.gz
eve: Be sure MOTION_SENSE is present for test
Fix cros_workon_make --board eve chromeos-ec --install The test phase would fail at compilation because TASK_ID_MOTIONSENSE is not defined. BUG=chromium:61748 TEST=Check that with the change cros_workon_make pass. BRANCH=none Change-Id: Ib50aad492e9cfb38c56a3c6c8d4f2bb2b297ea85 Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/426879 Tested-by: Todd Broch <tbroch@chromium.org> Reviewed-by: Todd Broch <tbroch@chromium.org>
-rw-r--r--board/eve/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/eve/ec.tasklist b/board/eve/ec.tasklist
index ea57855247..8a9546aa4a 100644
--- a/board/eve/ec.tasklist
+++ b/board/eve/ec.tasklist
@@ -26,7 +26,7 @@
TASK_ALWAYS(CHG_RAMP, chg_ramp_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(USB_CHG, usb_charger_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_NOTEST(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(PDCMD, pd_command_task, NULL, TASK_STACK_SIZE) \