-
Notifications
You must be signed in to change notification settings - Fork 11
/
version
27 lines (24 loc) · 981 Bytes
/
version
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
26
27
# Version.Subersion.Revision (8bits.8bits.8bits) #
##################################################
#
# * The version is only changed when the XtratuM internal philosophy
# has changed. For example, XtratuM v1 is a nanokernel which requires
# Linux to be executed whereas XtratuM v2 is stand-alone baremetal
# hypervisor.
#
# * An ODD subversion indicates a development serie (ABI or API
# incompatibility between revisions of the same serie). A new
# revision could implement new functionalities.
#
# * An EVEN subversion shows a production serie (compatibility at
# ABI and API level among revisions of the same serie). A new
# revision only reflect bug fixing.
#
##################################################
XM_VERSION=2
XM_SUBVERSION=6
XM_REVISION=0
XM_EXTRAVERSION=
XTRATUMVERSION=${XM_VERSION}.${XM_SUBVERSION}.${XM_REVISION}${XM_EXTRAVERSION}
export XTRATUMVERSION
export XM_VERSION XM_SUBVERSION XM_REVISION XM_EXTRAVERSION