uboot: boot_helper: increase bootcmd length to 128 chars

64 chars are not enough for some images like bpi r3 and r3 mini.

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
Tianling Shen
2024-09-20 23:22:25 +08:00
committed by hanwckf
parent cb763b4489
commit f6ae4782db
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
int boot_from_mem(ulong data_load_addr)
{
char cmd[64];
char cmd[128];
const char *bootconf = env_get("bootconf");
if (bootconf && strlen(bootconf) > 0)