2003-04-22 21:02:15 +02:00
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
|
|
|
/* Motherboard Information */
|
|
|
|
extern const char mainboard_vendor[];
|
|
|
|
extern const char mainboard_part_number[];
|
|
|
|
|
2008-01-18 16:08:58 +01:00
|
|
|
/* coreboot Version */
|
|
|
|
extern const char coreboot_version[];
|
|
|
|
extern const char coreboot_extra_version[];
|
|
|
|
extern const char coreboot_build[];
|
2014-08-23 01:08:09 +02:00
|
|
|
extern const unsigned int coreboot_version_timestamp;
|
2003-04-22 21:02:15 +02:00
|
|
|
|
2008-01-18 16:08:58 +01:00
|
|
|
/* When coreboot was compiled */
|
|
|
|
extern const char coreboot_compile_time[];
|
2014-11-18 11:41:16 +01:00
|
|
|
extern const char coreboot_dmi_date[];
|
|
|
|
|
|
|
|
struct bcd_date {
|
|
|
|
unsigned char century;
|
|
|
|
unsigned char year;
|
|
|
|
unsigned char month;
|
|
|
|
unsigned char day;
|
|
|
|
unsigned char weekday;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct bcd_date coreboot_build_date;
|
2003-04-22 21:02:15 +02:00
|
|
|
|
|
|
|
#endif /* VERSION_H */
|