X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=common%2Fcmd_version.c;h=1be0667f0938982158b34aedc3fb6c22c444db91;hb=995a54cc120e2a1e56a79ea9abb0ba9d343c8997;hp=7f165c7b7078a1978b6bde4838077077da1c7b85;hpb=e598dfc22c8789991d165714bec53b2390fc999d;p=u-boot diff --git a/common/cmd_version.c b/common/cmd_version.c index 7f165c7b70..1be0667f09 100644 --- a/common/cmd_version.c +++ b/common/cmd_version.c @@ -2,39 +2,36 @@ * Copyright 2000-2009 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * - * See file CREDITS for list of people who contributed to this - * project. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * SPDX-License-Identifier: GPL-2.0+ */ #include #include +#include +#include +#ifdef CONFIG_SYS_COREBOOT +#include +#endif -extern char version_string[]; +const char __weak version_string[] = U_BOOT_VERSION_STRING; -int do_version(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) +static int do_version(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { printf("\n%s\n", version_string); - +#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 version", + "print monitor, compiler and linker version", "" );