diff options
author | Bob Moragues <moragues@google.com> | 2018-06-18 12:36:19 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2018-06-19 03:48:52 -0700 |
commit | a201157d9cc06d4d9245c175850da2ff56d0e402 (patch) | |
tree | cdda2d71327037265109253300f301cbf87a1303 /setup.py | |
parent | 643e329c7bb6868f85fa12ab899c3997241ed77b (diff) | |
download | chrome-ec-a201157d9cc06d4d9245c175850da2ff56d0e402.tar.gz |
util: correct unpack_ftb
unpack_ftb is used as a build tool to convert
ST toucpad .ftb file to .bin
BUG=b:109719787
TEST=verify that unpack_ftb is present and executable
Change-Id: I91f541f7c030adc7979043ad48cdedc1f9f58da6
Reviewed-on: https://chromium-review.googlesource.com/1104979
Commit-Ready: Bob Moragues <moragues@chromium.org>
Tested-by: Bob Moragues <moragues@chromium.org>
Reviewed-by: Nick Sanders <nsanders@chromium.org>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -81,8 +81,8 @@ setup( package_dir={"" : "util"}, py_modules=["unpack_ftb"], entry_points = { - "build_scripts": ["unpack_ftb=unpack_ftb:main"], + "console_scripts": ["unpack_ftb=unpack_ftb:main"], }, - description="Tool to convert .ftb files to .bin", + description="Tool to convert ST touchpad .ftb file to .bin", ) |