blob: 404f50d73072fb4a552955d367ded68177a8e6e8 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001#include <version.h>
2
Eric Biederman8ca8d762003-04-22 19:02:15 +00003#ifndef MAINBOARD_VENDOR
4#error MAINBOARD_VENDOR not defined
5#endif
6#ifndef MAINBOARD_PART_NUMBER
7#error MAINBOARD_PART_NUMBER not defined
8#endif
9
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000010#ifndef COREBOOT_VERSION
11#error COREBOOT_VERSION not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000012#endif
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000013#ifndef COREBOOT_BUILD
14#error COREBOOT_BUILD not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000015#endif
16
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000017#ifndef COREBOOT_COMPILE_TIME
18#error COREBOOT_COMPILE_TIME not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000019#endif
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000020#ifndef COREBOOT_COMPILE_BY
21#error COREBOOT_COMPILE_BY not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000022#endif
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000023#ifndef COREBOOT_COMPILE_HOST
24#error COREBOOT_COMPILE_HOST not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000025#endif
26
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000027#ifndef COREBOOT_COMPILER
28#error COREBOOT_COMPILER not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000029#endif
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000030#ifndef COREBOOT_LINKER
31#error COREBOOT_LINKER not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000032#endif
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000033#ifndef COREBOOT_ASSEMBLER
34#error COREBOOT_ASSEMBLER not defined
Eric Biederman8ca8d762003-04-22 19:02:15 +000035#endif
36
37
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000038#ifndef COREBOOT_EXTRA_VERSION
39#define COREBOOT_EXTRA_VERSION ""
Eric Biederman8ca8d762003-04-22 19:02:15 +000040#endif
41
Eric Biederman7003ba42004-10-16 06:20:29 +000042const char mainboard_vendor[] = MAINBOARD_VENDOR;
43const char mainboard_part_number[] = MAINBOARD_PART_NUMBER;
Eric Biederman8ca8d762003-04-22 19:02:15 +000044
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000045const char coreboot_version[] = COREBOOT_VERSION;
46const char coreboot_extra_version[] = COREBOOT_EXTRA_VERSION;
47const char coreboot_build[] = COREBOOT_BUILD;
Eric Biederman8ca8d762003-04-22 19:02:15 +000048
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000049const char coreboot_compile_time[] = COREBOOT_COMPILE_TIME;
50const char coreboot_compile_by[] = COREBOOT_COMPILE_BY;
51const char coreboot_compile_host[] = COREBOOT_COMPILE_HOST;
52const char coreboot_compile_domain[] = COREBOOT_COMPILE_DOMAIN;
53const char coreboot_compiler[] = COREBOOT_COMPILER;
54const char coreboot_linker[] = COREBOOT_LINKER;
55const char coreboot_assembler[] = COREBOOT_ASSEMBLER;
Eric Biederman8ca8d762003-04-22 19:02:15 +000056
57
58
59