blob: f24b893e0a205e1893841c50f12d387c4cde0b2c [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001#ifndef VERSION_H
2#define VERSION_H
3
4/* Motherboard Information */
5extern const char mainboard_vendor[];
6extern const char mainboard_part_number[];
7
Stefan Reinauerf8ee1802008-01-18 15:08:58 +00008/* coreboot Version */
9extern const char coreboot_version[];
10extern const char coreboot_extra_version[];
11extern const char coreboot_build[];
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +020012extern const unsigned int coreboot_version_timestamp;
Eric Biederman8ca8d762003-04-22 19:02:15 +000013
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000014/* When coreboot was compiled */
15extern const char coreboot_compile_time[];
Kyösti Mälkkic36af7b2014-11-18 12:41:16 +020016extern const char coreboot_dmi_date[];
17
18struct bcd_date {
19 unsigned char century;
20 unsigned char year;
21 unsigned char month;
22 unsigned char day;
23 unsigned char weekday;
24};
25
26extern const struct bcd_date coreboot_build_date;
Eric Biederman8ca8d762003-04-22 19:02:15 +000027
28#endif /* VERSION_H */