From: Stephen Warren Date: Wed, 9 Dec 2015 16:48:04 +0000 (-0700) Subject: part: fix "part list ... -bootable varname" to use hex X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fu-boot.git;a=commitdiff_plain;h=653447b407ba2774eb398e7b35f80d2e25463da6 part: fix "part list ... -bootable varname" to use hex Unfortunately U-Boot assumes that almost all numbers are in hex, including partition numbers passed to e.g. "load". So, the command "part list mmc 0 -bootable devplist" should use hex when writing partition numbers into $devplist, so they'll be correctly interpreted. Change-Id: I9a70b19749643876baadb45efbc3decaef8bfee2 Fixes: 0798d6fd4191 ("part: Add support for list filtering on bootable partitions") Cc: Sjoerd Simons Signed-off-by: Stephen Warren Reviewed-by: Sjoerd Simons --- diff --git a/common/cmd_part.c b/common/cmd_part.c index b860624d93..55995097eb 100644 --- a/common/cmd_part.c +++ b/common/cmd_part.c @@ -100,7 +100,7 @@ static int do_part_list(int argc, char * const argv[]) if (bootable && !info.bootable) continue; - sprintf(t, "%s%d", str[0] ? " " : "", p); + sprintf(t, "%s%x", str[0] ? " " : "", p); strcat(str, t); } setenv(var, str);