summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 7cb689d41f..9ad66ac454 100644
--- a/setup.py
+++ b/setup.py
@@ -72,3 +72,17 @@ setup(
description="Tool to open the usb console on servo, cr50.",
)
+setup(
+ name="unpack_ftb",
+ version="1.0",
+ author="Wei-Han Chen",
+ author_email="stimim@chromium.org",
+ url="https://www.chromium.org/chromium-os/ec-development",
+ package_dir={"" : "util"},
+ py_modules=["unpack_ftb"],
+ entry_points = {
+ "build_scripts": ["unpack_ftb=unpack_ftb:main"],
+ },
+ description="Tool to convert .ftb files to .bin",
+)
+