version.c (83d290c56fab2d38cd1ab4c4cc7099559c1d5046) | version.c (f486b9d081be90f749b35af0c02883fdd6739c50) |
---|---|
1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Copyright 2000-2009 4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 */ 6 7#include <common.h> 8#include <command.h> 9#include <version.h> | 1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Copyright 2000-2009 4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 */ 6 7#include <common.h> 8#include <command.h> 9#include <version.h> |
10#include <version_string.h> |
|
10#include <linux/compiler.h> 11#ifdef CONFIG_SYS_COREBOOT 12#include <asm/arch/sysinfo.h> 13#endif 14 15const char __weak version_string[] = U_BOOT_VERSION_STRING; 16 17static int do_version(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) --- 21 unchanged lines hidden --- | 11#include <linux/compiler.h> 12#ifdef CONFIG_SYS_COREBOOT 13#include <asm/arch/sysinfo.h> 14#endif 15 16const char __weak version_string[] = U_BOOT_VERSION_STRING; 17 18static int do_version(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) --- 21 unchanged lines hidden --- |