From bb566c9e7ca03c5619cea160bfe6fcfe85399b7e Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 21 Mar 2013 10:41:56 +0100 Subject: [PATCH] software/bios: change boot order --- software/bios/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software/bios/main.c b/software/bios/main.c index d8113ddcd..8d9ff80c3 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"); }