510d1bd3b0
They don't contain any useful information and also block us from having reproducible builds. Change-Id: Ib03887f6a548230de9f75fb308c73a800e180c48 Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-on: http://review.coreboot.org/8616 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <gaumless@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
28 lines
668 B
C
28 lines
668 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;
|
|
|
|
/* 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;
|
|
|
|
#endif /* VERSION_H */
|