mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-27 12:57:13 +00:00
ARM: uniphier: carry on booting for Unknown boot mode
No need to stop booting U-Boot even if boot mode is unknown. Setting the "bootmode" environment is only useful for booting Linux Kernel. Anyway, U-Boot has already booted by this point. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
612ccd9001
commit
d90b9745ea
1 changed files with 2 additions and 2 deletions
|
@ -85,8 +85,8 @@ int board_late_init(void)
|
||||||
setenv("bootmode", "usbboot");
|
setenv("bootmode", "usbboot");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
printf("Unsupported Boot Mode\n");
|
printf("Unknown\n");
|
||||||
return -1;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
uniphier_set_fdt_file();
|
uniphier_set_fdt_file();
|
||||||
|
|
Loading…
Add table
Reference in a new issue