1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| /*
| * \file version.h
| * \brief
| *
| * \version 1.0.0
| * \date 2012年07月02日
| * \author James Deng <csjamesdeng@allwinnertech.com>
| *
| * Copyright (c) 2012 Allwinner Technology. All Rights Reserved.
| *
| */
|
| #ifndef __VERSION_H__
| #define __VERSION_H__
|
| #define DRAGONBOARD_VERSION 0x00010300
| #define COPYRIGHT "DragonBoard V2.0 Copyright (C) 2012 Allwinner"
|
| #endif /* __VERSION_H__ */
|
|