summaryrefslogtreecommitdiffstats
path: root/common/version.c
blob: 51d4d48b52a73b19742cf46a31158f99eef0ec9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <common.h>
#include <generated/compile.h>
#include <generated/utsrelease.h>

const char version_string[] =
	"barebox " UTS_RELEASE " " UTS_VERSION "\n";
EXPORT_SYMBOL(version_string);

const char release_string[] =
	"barebox-" UTS_RELEASE;
EXPORT_SYMBOL(release_string);

void barebox_banner (void)
{
	pr_info("\n\n%s\n\n", version_string);
	pr_info("Board: %s\n", barebox_get_model());
}