summaryrefslogtreecommitdiffstats
path: root/common/version.c
blob: 945475fc3d6360db0fc354fffcb630946669d255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <common.h>
#include <reloc.h>
#include <generated/utsrelease.h>

const char version_string[] =
	"barebox " UTS_RELEASE " (" __DATE__ " - " __TIME__ ")";

void barebox_banner (void)
{
	printf (RELOC("\n\n%s\n\n"), RELOC_VAR(version_string));
	printf(RELOC("Board: " CONFIG_BOARDINFO "\n"));
}