From 429235530a4e80985c492c7e616387e0157495bd Mon Sep 17 00:00:00 2001 From: Timple Raj M Date: Tue, 17 Jan 2023 17:48:12 +0530 Subject: [PATCH] ipq5332: Increase the file name size This patch increases the filename size to avoid truncation while running flash script in verbose mode Change-Id: I245f4ee0ae83fc88de4833a178b1e1e96107f486 Signed-off-by: Timple Raj M --- common/cmd_flashwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/cmd_flashwrite.c b/common/cmd_flashwrite.c index eb2fa7205e..a30637c187 100644 --- a/common/cmd_flashwrite.c +++ b/common/cmd_flashwrite.c @@ -511,7 +511,7 @@ void print_fl_msg(char *fname, bool started, int ret) static int do_xtract_n_flash(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { - char runcmd[256], fname_stripped[32]; + char runcmd[256], fname_stripped[256]; char *file_name, *part_name; uint32_t load_addr, verbose; int ret = CMD_RET_SUCCESS;