software/bios: change boot order

This commit is contained in:
Sebastien Bourdeauducq 2013-03-21 10:41:56 +01:00
parent 0a14c3714b
commit bb566c9e7c
1 changed files with 2 additions and 2 deletions

View File

@ -498,13 +498,13 @@ static void boot_sequence(void)
{ {
if(test_user_abort()) { if(test_user_abort()) {
if(rescue) { if(rescue) {
netboot();
serialboot(); serialboot();
netboot();
flashboot(); flashboot();
} else { } else {
flashboot(); flashboot();
netboot();
serialboot(); serialboot();
netboot();
} }
printf("No boot medium found\n"); printf("No boot medium found\n");
} }