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 <quic_timple@quicinc.com>
This commit is contained in:
Timple Raj M 2023-01-17 17:48:12 +05:30
parent bb1322745c
commit 429235530a

View file

@ -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;