]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/version.c
Merge branch 'master' of git://git.denx.de/u-boot-i2c
[thirdparty/u-boot.git] / cmd / version.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
6b8f5ad1
PT
2/*
3 * Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6b8f5ad1
PT
5 */
6
7#include <common.h>
8#include <command.h>
89ffa8db 9#include <version.h>
09c2e90c 10#include <linux/compiler.h>
e56cdd77
SR
11#ifdef CONFIG_SYS_COREBOOT
12#include <asm/arch/sysinfo.h>
13#endif
6b8f5ad1 14
09c2e90c 15const char __weak version_string[] = U_BOOT_VERSION_STRING;
6b8f5ad1 16
088f1b19 17static int do_version(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
6b8f5ad1 18{
6c519f2d
SG
19 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
20
21 printf(display_options_get_banner(false, buf, sizeof(buf)));
89ffa8db
AH
22#ifdef CC_VERSION_STRING
23 puts(CC_VERSION_STRING "\n");
24#endif
25#ifdef LD_VERSION_STRING
26 puts(LD_VERSION_STRING "\n");
27#endif
e56cdd77
SR
28#ifdef CONFIG_SYS_COREBOOT
29 printf("coreboot-%s (%s)\n", lib_sysinfo.version, lib_sysinfo.build);
30#endif
6b8f5ad1
PT
31 return 0;
32}
33
34U_BOOT_CMD(
35 version, 1, 1, do_version,
89ffa8db 36 "print monitor, compiler and linker version",
6b8f5ad1
PT
37 ""
38);