summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2018-05-17 14:29:15 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2018-05-18 08:31:32 +0200
commitbb64685c7dc96a14d4ec5d7b2355e40343cf094a (patch)
tree515fc7145f0de395a07941f9cca603d86999705b /include
parentd0a6fd63f1cf6a5dac5ef40e26e5df7b9880c7f5 (diff)
downloadbarebox-bb64685c7dc96a14d4ec5d7b2355e40343cf094a.tar.gz
barebox-bb64685c7dc96a14d4ec5d7b2355e40343cf094a.tar.xz
bootsource: Add bootsource alias name API
Add API allowing to query and override the name of the alias pointing at DTB node representing current bootsource. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/bootsource.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bootsource.h b/include/bootsource.h
index 064f6b9a28..29347aaeb0 100644
--- a/include/bootsource.h
+++ b/include/bootsource.h
@@ -25,5 +25,7 @@ enum bootsource bootsource_get(void);
int bootsource_get_instance(void);
void bootsource_set(enum bootsource src);
void bootsource_set_instance(int instance);
+void bootsource_set_alias_name(const char *name);
+char *bootsource_get_alias_name(void);
#endif /* __BOOTSOURCE_H__ */