9
0
Fork 0
barebox/common/version.c

14 lines
302 B
C

#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"));
}