aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-07-22 12:45:44 +0200
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-07-30 18:52:03 +0200
commitd62e7b8059847a06bc0f2222643425bff775320b (patch)
tree9bf6ed3e0ac4d72009bd241fb820d1a42a878267
parent350635fe837341e7ce7b7b900f18d7d306fdb42e (diff)
downloadu-boot-d62e7b8059847a06bc0f2222643425bff775320b.zip
u-boot-d62e7b8059847a06bc0f2222643425bff775320b.tar.gz
u-boot-d62e7b8059847a06bc0f2222643425bff775320b.tar.bz2
spl: blk: partition numbers are hexadecimal
Loading u-boot.itb from device 0x00, partition 0x0f fails with: Trying to boot from NVME Device 0: Vendor: 0x4x Rev: 8.0.50 Prod: nvme-1 Type: Hard Disk Capacity: 3814.6 MB = 3.7 GB (7812500 x 512) ** Invalid partition 21 ** Couldn't find partition nvme 0:15 Like the command line interface fs_det_blk_dev() expects that the device number and the partition number are hexadecimal. Fixes: 8ce6a2e17577 ("spl: blk: Support loading images from fs") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Mayuresh Chitale <mchitale@ventanamicro.com>
-rw-r--r--common/spl/spl_blk_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_blk_fs.c b/common/spl/spl_blk_fs.c
index d4161fa..16ecece 100644
--- a/common/spl/spl_blk_fs.c
+++ b/common/spl/spl_blk_fs.c
@@ -66,7 +66,7 @@ int spl_blk_load_image(struct spl_image_info *spl_image,
}
dev.ifname = blk_get_uclass_name(uclass_id);
- snprintf(dev.dev_part_str, sizeof(dev.dev_part_str) - 1, "%d:%d",
+ snprintf(dev.dev_part_str, sizeof(dev.dev_part_str) - 1, "%x:%x",
devnum, partnum);
ret = fs_set_blk_dev(dev.ifname, dev.dev_part_str, FS_TYPE_ANY);
if (ret) {