vboot: Remove FTS code

flash_ts driver (from Android) was pulled to support Sonic. But now we
go a different route, this CL is to drop the FTS code.

BUG=chromium:436597
BRANCH=none
TEST=unittest

Change-Id: I86d6273f9f5f642b504ccb6a76e005cda12d0e78
Reviewed-on: https://chromium-review.googlesource.com/231896
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Commit-Queue: Nam Nguyen <namnguyen@chromium.org>
Tested-by: Nam Nguyen <namnguyen@chromium.org>
diff --git a/cgpt/cmd_create.c b/cgpt/cmd_create.c
index 47137bd..34f59cb 100644
--- a/cgpt/cmd_create.c
+++ b/cgpt/cmd_create.c
@@ -19,7 +19,6 @@
          "                 default 0, meaning partitions and GPT structs are\n"
          "                 both on DRIVE\n"
          "  -z           Zero the sectors of the GPT table and entries\n"
-         "  -s NUM       Size (in bytes) of the disk (MTD only)\n"
          "  -p NUM       Size (in blocks) of the disk to pad between the\n"
          "                 primary GPT header and its entries, default 0\n"
          "\n", progname);
@@ -34,7 +33,7 @@
   char *e = 0;
 
   opterr = 0;                     // quiet, you
-  while ((c=getopt(argc, argv, ":hzs:p:D:")) != -1)
+  while ((c=getopt(argc, argv, ":hzp:D:")) != -1)
   {
     switch (c)
     {
@@ -49,9 +48,6 @@
     case 'z':
       params.zap = 1;
       break;
-    case 's':
-      params.size = strtoull(optarg, &e, 0);
-      break;
     case 'p':
       params.padding = strtoull(optarg, &e, 0);
       if (!*optarg || (e && *e))