blob: e117e35629a3aa76a494e642abb09cb858d5d855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef _KERNEL_VERSION_H_
#define _KERNEL_VERSION_H_
/* values come from cmake/version.cmake
* BUILD_VERSION related values will be 'git describe',
* alternatively user defined BUILD_VERSION.
*/
#define ZEPHYR_VERSION_CODE 198243
#define ZEPHYR_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#define KERNELVERSION 0x3066300
#define KERNEL_VERSION_NUMBER 0x30663
#define KERNEL_VERSION_MAJOR 3
#define KERNEL_VERSION_MINOR 6
#define KERNEL_PATCHLEVEL 99
#define KERNEL_TWEAK 0
#define KERNEL_VERSION_STRING "3.6.99"
#define KERNEL_VERSION_EXTENDED_STRING "3.6.99+0"
#define KERNEL_VERSION_TWEAK_STRING "3.6.99+0"
#define BUILD_VERSION v3.6.99-ncs2
#endif /* _KERNEL_VERSION_H_ */
|