xref: /OK3568_Linux_fs/kernel/drivers/virt/vboxguest/vboxguest_version.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: (GPL-2.0 OR CDDL-1.0) */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * VBox Guest additions version info, this is used by the host to determine
4*4882a593Smuzhiyun  * supported guest-addition features in some cases. So this will need to be
5*4882a593Smuzhiyun  * synced with vbox upstreams versioning scheme when we implement / port
6*4882a593Smuzhiyun  * new features from the upstream out-of-tree vboxguest driver.
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #ifndef __VBOX_VERSION_H__
10*4882a593Smuzhiyun #define __VBOX_VERSION_H__
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #define VBG_VERSION_MAJOR 6
13*4882a593Smuzhiyun #define VBG_VERSION_MINOR 0
14*4882a593Smuzhiyun #define VBG_VERSION_BUILD 0
15*4882a593Smuzhiyun #define VBG_SVN_REV 127566
16*4882a593Smuzhiyun #define VBG_VERSION_STRING "6.0.0"
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #endif
19