diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-02-15 17:39:56 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-21 19:07:18 +0000 |
commit | 94ad37619f95a07b94a6a9a570bd74727eb830c4 (patch) | |
tree | cf3fd05368dc981b120cd3c070f110789ea57023 /src/lib | |
parent | 16d05daffa827f4e6ec26e34aaf20caae6600cc9 (diff) |
SMBIOS: Fix bios version
Change-Id: I142f08ed3c2704b8fde6d176f23772f5d6b33e85
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/31437
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/version.c b/src/lib/version.c index 63235b3262..c84a7275e6 100644 --- a/src/lib/version.c +++ b/src/lib/version.c @@ -30,6 +30,8 @@ const char coreboot_version[] = COREBOOT_VERSION; const char coreboot_extra_version[] = COREBOOT_EXTRA_VERSION; const char coreboot_build[] = COREBOOT_BUILD; const unsigned int coreboot_version_timestamp = COREBOOT_VERSION_TIMESTAMP; +const unsigned int coreboot_major_revision = COREBOOT_MAJOR_VERSION; +const unsigned int coreboot_minor_revision = COREBOOT_MINOR_VERSION; const char coreboot_compile_time[] = COREBOOT_COMPILE_TIME; const char coreboot_dmi_date[] = COREBOOT_DMI_DATE; |