blob: 250cb27ea189abcd98d054843de489697654529d [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[];
Eric Biederman8ca8d762003-04-22 19:02:15 +000012
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000013/* When coreboot was compiled */
14extern const char coreboot_compile_time[];
15extern const char coreboot_compile_by[];
16extern const char coreboot_compile_host[];
17extern const char coreboot_compile_domain[];
Kyösti Mälkkic36af7b2014-11-18 12:41:16 +020018extern const char coreboot_dmi_date[];
19
20struct bcd_date {
21 unsigned char century;
22 unsigned char year;
23 unsigned char month;
24 unsigned char day;
25 unsigned char weekday;
26};
27
28extern const struct bcd_date coreboot_build_date;
Eric Biederman8ca8d762003-04-22 19:02:15 +000029
30#endif /* VERSION_H */