Commit fb5f7949 authored by Andreas Färber's avatar Andreas Färber
Browse files

fiptool: Support non-decimal --align arguments



An alignment value of 0x4000 is much easier to type than 16384,
so enhance get_image_align() to recognize a 0x prefix for hexadecimals.
Signed-off-by: default avatarAndreas Färber <afaerber@suse.de>
parent 3fb340a2
......@@ -646,7 +646,7 @@ static unsigned long get_image_align(char *arg)
unsigned long align;
errno = 0;
align = strtoul(arg, &endptr, 10);
align = strtoul(arg, &endptr, 0);
if (*endptr != '\0' || !is_power_of_2(align) || errno != 0)
log_errx("Invalid alignment: %s", arg);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment