mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
dfu: mmc: fs: Fix format accepted by ext4write command
The commit:
"EXT4: Fix number base handling of "ext4write" command"
SHA1: f7740f7712
Cleaned up the ext4write command format.
This commit shall be regarded as a follow up, since the DFU subsystem is
using those commands for its normal operation.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
This commit is contained in:
parent
3241e3d08c
commit
17eb1d8f57
1 changed files with 3 additions and 4 deletions
|
@ -73,16 +73,12 @@ static int mmc_file_op(enum dfu_op op, struct dfu_entity *dfu,
|
|||
op == DFU_OP_READ ? "load" : "write",
|
||||
dfu->data.mmc.dev, dfu->data.mmc.part,
|
||||
(unsigned int) buf, dfu->name);
|
||||
if (op == DFU_OP_WRITE)
|
||||
sprintf(cmd_buf + strlen(cmd_buf), " %lx", *len);
|
||||
break;
|
||||
case DFU_FS_EXT4:
|
||||
sprintf(cmd_buf, "ext4%s mmc %d:%d 0x%x /%s",
|
||||
op == DFU_OP_READ ? "load" : "write",
|
||||
dfu->data.mmc.dev, dfu->data.mmc.part,
|
||||
(unsigned int) buf, dfu->name);
|
||||
if (op == DFU_OP_WRITE)
|
||||
sprintf(cmd_buf + strlen(cmd_buf), " %ld", *len);
|
||||
break;
|
||||
default:
|
||||
printf("%s: Layout (%s) not (yet) supported!\n", __func__,
|
||||
|
@ -90,6 +86,9 @@ static int mmc_file_op(enum dfu_op op, struct dfu_entity *dfu,
|
|||
return -1;
|
||||
}
|
||||
|
||||
if (op == DFU_OP_WRITE)
|
||||
sprintf(cmd_buf + strlen(cmd_buf), " %lx", *len);
|
||||
|
||||
debug("%s: %s 0x%p\n", __func__, cmd_buf, cmd_buf);
|
||||
|
||||
ret = run_command(cmd_buf, 0);
|
||||
|
|
Loading…
Reference in a new issue