stoneyridge: Enable legacy IO
[coreboot.git] / src / include / version.h
blobf24b893e0a205e1893841c50f12d387c4cde0b2c
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;
14 /* When coreboot was compiled */
15 extern const char coreboot_compile_time[];
16 extern const char coreboot_dmi_date[];
18 struct bcd_date {
19 unsigned char century;
20 unsigned char year;
21 unsigned char month;
22 unsigned char day;
23 unsigned char weekday;
26 extern const struct bcd_date coreboot_build_date;
28 #endif /* VERSION_H */