From: Sebastien Bourdeauducq Date: Thu, 21 Mar 2013 09:41:56 +0000 (+0100) Subject: software/bios: change boot order X-Git-Tag: 24jan2021_ls180~3017 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb566c9e7ca03c5619cea160bfe6fcfe85399b7e;p=litex.git software/bios: change boot order --- diff --git a/software/bios/main.c b/software/bios/main.c index d8113ddc..8d9ff80c 100644 --- a/software/bios/main.c +++ b/software/bios/main.c @@ -498,13 +498,13 @@ static void boot_sequence(void) { if(test_user_abort()) { if(rescue) { - netboot(); serialboot(); + netboot(); flashboot(); } else { flashboot(); - netboot(); serialboot(); + netboot(); } printf("No boot medium found\n"); }