Documentation: Fix sphinx configuration
[coreboot.git] / src / include / version.h
blob6b0d53df0f2072a6d33a27734e0a81fff70065ba
1 #ifndef VERSION_H
2 #define VERSION_H
4 /* Motherboard Information */
5 extern const char mainboard_vendor[];
6 extern const char mainboard_part_number[];
8 /* coreboot Version */
9 extern const char coreboot_version[];
10 extern const char coreboot_extra_version[];
11 extern const char coreboot_build[];
12 extern const unsigned int coreboot_version_timestamp;
13 extern const unsigned int coreboot_major_revision;
14 extern const unsigned int coreboot_minor_revision;
16 /* When coreboot was compiled */
17 extern const char coreboot_compile_time[];
18 extern const char coreboot_dmi_date[];
20 struct bcd_date {
21 unsigned char century;
22 unsigned char year;
23 unsigned char month;
24 unsigned char day;
25 unsigned char weekday;
28 extern const struct bcd_date coreboot_build_date;
30 /* IASL version */
31 extern const unsigned int asl_revision;
33 #endif /* VERSION_H */