]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
part: fix "part list ... -bootable varname" to use hex
authorStephen Warren <swarren@nvidia.com>
Wed, 9 Dec 2015 16:48:04 +0000 (09:48 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 14 Dec 2015 01:22:01 +0000 (20:22 -0500)
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 <sjoerd.simons@collabora.co.uk>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
common/cmd_part.c

index b860624d939cad2d6b364e4af544112f56a7203c..55995097eb00c8d1a12f03a621d2d29082b58b37 100644 (file)
@@ -100,7 +100,7 @@ static int do_part_list(int argc, char * const argv[])
                        if (bootable && !info.bootable)
                                continue;
 
                        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);
                        strcat(str, t);
                }
                setenv(var, str);