26071aaadf
Change-Id: I91b54b43c8bb5cb17ff86a6d9afa95f265ee49df Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/31431 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
33 lines
830 B
C
33 lines
830 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
/* Motherboard Information */
|
|
extern const char mainboard_vendor[];
|
|
extern const char mainboard_part_number[];
|
|
|
|
/* coreboot Version */
|
|
extern const char coreboot_version[];
|
|
extern const char coreboot_extra_version[];
|
|
extern const char coreboot_build[];
|
|
extern const unsigned int coreboot_version_timestamp;
|
|
extern const unsigned int coreboot_major_revision;
|
|
extern const unsigned int coreboot_minor_revision;
|
|
|
|
/* When coreboot was compiled */
|
|
extern const char coreboot_compile_time[];
|
|
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;
|
|
|
|
/* IASL version */
|
|
extern const unsigned int asl_revision;
|
|
|
|
#endif /* VERSION_H */
|