4948f4b8d5
Executive is a library that can be used by standalone applications and kernels to abstract access to Octeon SoC and board-specific hardware and facilities. The FreeBSD port to Octeon will be updated to use this where possible.
13 lines
576 B
C
13 lines
576 B
C
/* Version information is made available at compile time in two forms:
|
|
** 1) a version string for printing
|
|
** 2) a combined SDK version and build number, suitable for comparisons
|
|
** to determine what SDK version is being used.
|
|
** SDK 1.2.3 build 567 => 102030567
|
|
** Note that 2 digits are used for each version number, so that:
|
|
** 1.9.0 == 01.09.00 < 01.10.00 == 1.10.0
|
|
** 10.9.0 == 10.09.00 > 09.10.00 == 9.10.0
|
|
**
|
|
*/
|
|
#define OCTEON_SDK_VERSION_NUM 109000312ull
|
|
#define OCTEON_SDK_VERSION_STRING "Cavium Networks Octeon SDK version 1.9.0, build 312"
|