]> Git Repo - J-u-boot.git/blob - common/version.c
Merge patch series "Add support for MediaTek MT8365 EVK Board"
[J-u-boot.git] / common / version.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2000-2009
4  * Wolfgang Denk, DENX Software Engineering, [email protected].
5  */
6
7 #include <timestamp.h>
8 #include <version.h>
9 #include <version_string.h>
10
11 #define U_BOOT_VERSION_STRING U_BOOT_VERSION " (" U_BOOT_DATE " - " \
12         U_BOOT_TIME " " U_BOOT_TZ ")" CONFIG_IDENT_STRING
13
14 const char version_string[] = U_BOOT_VERSION_STRING;
15 const unsigned short version_num = U_BOOT_VERSION_NUM;
16 const unsigned char version_num_patch = U_BOOT_VERSION_NUM_PATCH;
This page took 0.024125 seconds and 4 git commands to generate.