f8ee1806ac
Due to the automatic nature of this update, I am self-acking. It worked in abuild. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3053 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
22 lines
636 B
C
22 lines
636 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[];
|
|
|
|
/* When coreboot was compiled */
|
|
extern const char coreboot_compile_time[];
|
|
extern const char coreboot_compile_by[];
|
|
extern const char coreboot_compile_host[];
|
|
extern const char coreboot_compile_domain[];
|
|
extern const char coreboot_compiler[];
|
|
extern const char coreboot_linker[];
|
|
extern const char coreboot_assembler[];
|
|
|
|
#endif /* VERSION_H */
|