Skip to content
Snippets Groups Projects
Commit d90b9745 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

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: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 612ccd90
No related branches found
No related tags found
No related merge requests found
......@@ -85,8 +85,8 @@ int board_late_init(void)
setenv("bootmode", "usbboot");
break;
default:
printf("Unsupported Boot Mode\n");
return -1;
printf("Unknown\n");
break;
}
uniphier_set_fdt_file();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment