mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 17:52:07 +02:00
More C files do not use compile time timestamp macros and do not have to be recompiled every time when SOURCE_DATE_EPOCH changes. This patch moves version_string[] from version.h to version_string.h and updates other C files which only needs version_string[] string to include version_string.h instead of version.h. After applying this patch these files are not recompiled every time when SOURCE_DATE_EPOCH changes. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Tom Rini <trini@konsulko.com>
41 lines
907 B
C
41 lines
907 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2000-2009
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <command.h>
|
|
#include <version.h>
|
|
#include <version_string.h>
|
|
#include <linux/compiler.h>
|
|
#ifdef CONFIG_SYS_COREBOOT
|
|
#include <asm/cb_sysinfo.h>
|
|
#endif
|
|
|
|
const char __weak version_string[] = U_BOOT_VERSION_STRING;
|
|
|
|
static int do_version(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
char *const argv[])
|
|
{
|
|
char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
|
|
|
|
printf(display_options_get_banner(false, buf, sizeof(buf)));
|
|
#ifdef CC_VERSION_STRING
|
|
puts(CC_VERSION_STRING "\n");
|
|
#endif
|
|
#ifdef LD_VERSION_STRING
|
|
puts(LD_VERSION_STRING "\n");
|
|
#endif
|
|
#ifdef CONFIG_SYS_COREBOOT
|
|
printf("coreboot-%s (%s)\n", lib_sysinfo.version, lib_sysinfo.build);
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
U_BOOT_CMD(
|
|
version, 1, 1, do_version,
|
|
"print monitor, compiler and linker version",
|
|
""
|
|
);
|