blob: c908bd30138f49258b29e73cda23b4b8cbd19fc8 [file] [log] [blame]
wdenk5b1d7132002-11-03 00:07:02 +00001/*
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002 * (C) Copyright 2000-2006
wdenk5b1d7132002-11-03 00:07:02 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __VERSION_H__
25#define __VERSION_H__
26
Andreas Bießmann09c2e902011-07-18 20:24:04 +020027#include <timestamp.h>
28
Wolfgang Denk1510b822008-05-13 23:15:52 +020029#ifndef DO_DEPS_ONLY
Simon Glassefb21722011-10-10 08:55:19 +000030#include "generated/version_autogenerated.h"
Wolfgang Denk1510b822008-05-13 23:15:52 +020031#endif
wdenk5b1d7132002-11-03 00:07:02 +000032
Andreas Bießmann09c2e902011-07-18 20:24:04 +020033#ifndef CONFIG_IDENT_STRING
34#define CONFIG_IDENT_STRING ""
35#endif
36
37#define U_BOOT_VERSION_STRING U_BOOT_VERSION " (" U_BOOT_DATE " - " \
38 U_BOOT_TIME ")" CONFIG_IDENT_STRING
39
Wolfgang Denk85f3df12011-07-28 22:14:26 +020040#ifndef __ASSEMBLY__
Andreas Bießmann09c2e902011-07-18 20:24:04 +020041extern const char version_string[];
Wolfgang Denk85f3df12011-07-28 22:14:26 +020042#endif /* __ASSEMBLY__ */
wdenk5b1d7132002-11-03 00:07:02 +000043#endif /* __VERSION_H__ */