From 1361a7831143cfdf9cf18eb99c60cbfe39786bcc Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Mon, 26 Oct 2015 14:09:24 -0700 Subject: [PATCH] flash_ec: Add support for flashing chell PD Add chell_pd to the STM32 list and the USBPD override list. BUG=chrome-os-partner:46289 BRANCH=none TEST=successfully run "flash_ec --board=chell_pd" Change-Id: Ic4ddbe51a0586c563211fd76f20a85428e565546 Signed-off-by: Duncan Laurie Reviewed-on: https://chromium-review.googlesource.com/308726 Reviewed-by: Shawn N --- util/flash_ec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/util/flash_ec b/util/flash_ec index e2f7344ef0..dc1bf18541 100755 --- a/util/flash_ec +++ b/util/flash_ec @@ -53,6 +53,7 @@ BOARDS_LM4=( BOARDS_STM32=( big blaze + chell_pd discovery glados_pd honeybuns @@ -301,8 +302,8 @@ function ec_uart() { # Servo variables management case "${BOARD}" in - glados_pd|oak_pd|samus_pd ) MCU="usbpd" ;; - kunimitsu_pd|lars_pd|strago_pd ) MCU="usbpd" ;; + oak_pd|samus_pd|strago_pd ) MCU="usbpd" ;; + chell_pd|glados_pd|kunimitsu_pd|lars_pd ) MCU="usbpd" ;; dingdong|hoho|twinkie ) DUT_CONTROL_CMD="true" ; MCU="ec" ;; *) MCU="ec" ;; esac