Blame view

include/version.h 507 Bytes
5b1d71372   wdenk   Initial revision
1
  /*
881a87ecb   Wolfgang Denk   Add GIT version i...
2
   * (C) Copyright 2000-2006
5b1d71372   wdenk   Initial revision
3
4
   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
5
   * SPDX-License-Identifier:	GPL-2.0+
5b1d71372   wdenk   Initial revision
6
7
8
9
   */
  
  #ifndef	__VERSION_H__
  #define	__VERSION_H__
09c2e90c1   Andreas Bießmann   unify version_string
10
  #include <timestamp.h>
1510b82d5   Wolfgang Denk   Makefile: fix "er...
11
  #ifndef DO_DEPS_ONLY
efb2172ec   Simon Glass   Move timestamp an...
12
  #include "generated/version_autogenerated.h"
1510b82d5   Wolfgang Denk   Makefile: fix "er...
13
  #endif
5b1d71372   wdenk   Initial revision
14

09c2e90c1   Andreas Bießmann   unify version_string
15
  #define U_BOOT_VERSION_STRING U_BOOT_VERSION " (" U_BOOT_DATE " - " \
e186851ae   Chris Packham   Makefile: Add U_B...
16
  	U_BOOT_TIME " " U_BOOT_TZ ")" CONFIG_IDENT_STRING
09c2e90c1   Andreas Bießmann   unify version_string
17

85f3df1c3   Wolfgang Denk   Fix build error c...
18
  #ifndef __ASSEMBLY__
09c2e90c1   Andreas Bießmann   unify version_string
19
  extern const char version_string[];
85f3df1c3   Wolfgang Denk   Fix build error c...
20
  #endif	/* __ASSEMBLY__ */
5b1d71372   wdenk   Initial revision
21
  #endif	/* __VERSION_H__ */