summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPandya, Varshit B <varshit.b.pandya@intel.com>2019-07-01 16:27:01 +0530
committerPhilipp Deppenwiese <zaolin.daisuki@gmail.com>2019-07-01 13:44:48 +0000
commit36cc664bc749a650012e41321e9a1cac3abdbd54 (patch)
tree8232288716e33ce125023f2ed7a0b48e610395b6 /util
parentb6b5e7fb455933bc2e077e7881e6b907cb9d7571 (diff)
downloadcoreboot-36cc664bc749a650012e41321e9a1cac3abdbd54.tar.gz
coreboot-36cc664bc749a650012e41321e9a1cac3abdbd54.tar.bz2
coreboot-36cc664bc749a650012e41321e9a1cac3abdbd54.zip
util/cbfstool/ifittool: use strtol function instead of atoi
Fix error "Invalid option -A" by adding "A" to options list. Also, atoi does not parse hex string, for instance 0x200 is interpreted as 0, and this causes a failure when updating second FIT table using -j option. Use strtol instead of atoi BUG=none BRANCH=none TEST=Build and boot hatch after enabling dual bootblock feature. Change-Id: Ib227437f88ffcccda1ce2f20a9ab098e5aa091c7 Signed-off-by: Pandya, Varshit B <varshit.b.pandya@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33937 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com> Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/ifittool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cbfstool/ifittool.c b/util/cbfstool/ifittool.c
index a83fd96715bb..3b16c3fcf0b9 100644
--- a/util/cbfstool/ifittool.c
+++ b/util/cbfstool/ifittool.c
@@ -28,7 +28,7 @@
/* Global variables */
partitioned_file_t *image_file;
-static const char *optstring = "H:j:f:r:d:t:n:s:caDvh?";
+static const char *optstring = "H:j:f:r:d:t:n:s:cAaDvh?";
static struct option long_options[] = {
{"file", required_argument, 0, 'f' },
{"region", required_argument, 0, 'r' },
@@ -230,7 +230,7 @@ int main(int argc, char *argv[])
}
break;
case 'j':
- topswap_size = atoi(optarg);
+ topswap_size = strtol(optarg, NULL, 0);
if (!is_valid_topswap(topswap_size))
return 1;
break;