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:
@@ -24,7 +24,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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user