summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-04-05 16:29:36 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-04-06 10:49:04 +0200
commit9653eefe40c7945a85b8c17657f17dc9e2ed3776 (patch)
tree6ab3676dae9ad66d86198a749e3420bd652f4df0 /include
parent18c05a168124a027aa481ab79d4527f1767939e6 (diff)
downloadbarebox-9653eefe40c7945a85b8c17657f17dc9e2ed3776.tar.gz
barebox-9653eefe40c7945a85b8c17657f17dc9e2ed3776.tar.xz
bootchooser: export bootchooser_boot
Some boards that boot directly from C code do already know that they want to boot from bootchooser and nothing else. For these it's easiest to call bootchooser_boot directly, so export this function. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/bootchooser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bootchooser.h b/include/bootchooser.h
index 246258e8c9..7822c01459 100644
--- a/include/bootchooser.h
+++ b/include/bootchooser.h
@@ -13,6 +13,8 @@ int bootchooser_put(struct bootchooser *bootchooser);
void bootchooser_info(struct bootchooser *bootchooser);
+int bootchooser_boot(struct bootchooser *bc);
+
struct bootchooser_target *bootchooser_get_last_chosen(struct bootchooser *bootchooser);
const char *bootchooser_target_name(struct bootchooser_target *target);
struct bootchooser_target *bootchooser_target_by_name(struct bootchooser *bootchooser,