summaryrefslogtreecommitdiff
path: root/util/build.mk
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2015-03-24 17:11:09 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-05-30 01:04:29 +0000
commitc89ebdb66c839fb6ef7787d22c4492a4507fb727 (patch)
tree91576ccf12e34e6c16c25935ea353f898f14289e /util/build.mk
parent1ade8e02a7379732683e34b5cd71acfb2f1685ce (diff)
downloadchrome-ec-c89ebdb66c839fb6ef7787d22c4492a4507fb727.tar.gz
ectool: query packet size and set them properly internally.
Allow to negotiate the packet command and responses to whatever values the EC can support. Set the buffer size including the necessary V3 header. If the EC run v3 protocol with large packet support, but the kernel does not have v3 support (3.10), we can not support sending or receiving large commands. Be aware that on 3.10, commands like ectool console will fail if the EC wants to send command larger than the kernel can handle. Copied kernel_version_ge from libusb-1.0.19/libusb/os/linux_usbfs.c. BUG=chrome-os-partner:31989,chrome-os-partner:31660,chromium:454324,chrome-os-partner:39265 BRANCH=none TEST=Build a special firmware to exchange 300 bytes. Check ectool console works with the righ size. Check that ectool is calling uname. Check on Nyan_big: without change, "ectool version" crashes kernel. With changes, "ectool version" works. In conseuqence, it reverts commit be0bd9b83538427cc350ad38d64b821dfcad82a0, "ectool: Do not increase buffer size after probe max size from ec" Change-Id: I54ffd43488ea81272f30789dc87a261085769fe0 Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274086 Reviewed-by: Shawn N <shawnn@chromium.org>
Diffstat (limited to 'util/build.mk')
-rw-r--r--util/build.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/build.mk b/util/build.mk
index f9b0f87932..74466ba1f0 100644
--- a/util/build.mk
+++ b/util/build.mk
@@ -10,9 +10,9 @@ host-util-bin=ectool lbplay stm32mon ec_sb_firmware_update lbcc
build-util-bin=ec_uartd iteflash
comm-objs=$(util-lock-objs:%=lock/%) comm-host.o comm-dev.o
-comm-objs+=comm-lpc.o comm-i2c.o
+comm-objs+=comm-lpc.o comm-i2c.o misc_util.o
-ectool-objs=ectool.o ectool_keyscan.o misc_util.o ec_flash.o $(comm-objs)
+ectool-objs=ectool.o ectool_keyscan.o ec_flash.o $(comm-objs)
ec_sb_firmware_update-objs=ec_sb_firmware_update.o $(comm-objs) misc_util.o
ec_sb_firmware_update-objs+=powerd_lock.o
lbplay-objs=lbplay.o $(comm-objs)