mb/google/brya: Create rull variant
[coreboot2.git] / src / include / version.h
blob926756a534572be04890b40a5b57a616731e738e
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef VERSION_H
4 #define VERSION_H
6 /* coreboot Version */
7 extern const char coreboot_version[];
8 extern const char coreboot_extra_version[];
9 extern const char coreboot_build[];
10 extern const unsigned int coreboot_version_timestamp;
11 extern const unsigned int coreboot_major_revision;
12 extern const unsigned int coreboot_minor_revision;
14 /* When coreboot was compiled */
15 extern const char coreboot_compile_time[];
16 extern const char coreboot_dmi_date[];
18 struct bcd_date {
19 unsigned char century;
20 unsigned char year;
21 unsigned char month;
22 unsigned char day;
23 unsigned char weekday;
26 extern const struct bcd_date coreboot_build_date;
28 /* IASL version */
29 extern const unsigned int asl_revision;
31 #endif /* VERSION_H */