mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] boot: fix multiple boot sources
@ 2014-05-13  6:23 Sascha Hauer
  2014-05-13  6:23 ` [PATCH 2/2] boot: iterate over directories in alphabetical order Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Sascha Hauer @ 2014-05-13  6:23 UTC (permalink / raw)
  To: barebox

When there are multiple bootsources barebox should try booting them
until one succeeds. This is broken because we bail out of the iteration
loop with a goto. Remove the goto to fix this.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 commands/boot.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/commands/boot.c b/commands/boot.c
index 4a83979..468d473 100644
--- a/commands/boot.c
+++ b/commands/boot.c
@@ -446,7 +446,6 @@ static int do_boot(int argc, char *argv[])
 		ret = boot(sources[i]);
 		if (!ret)
 			break;
-		goto out;
 	}
 
 out:
-- 
2.0.0.rc0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-13  6:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-13  6:23 [PATCH 1/2] boot: fix multiple boot sources Sascha Hauer
2014-05-13  6:23 ` [PATCH 2/2] boot: iterate over directories in alphabetical order Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox