1 /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <----
3 Copyright (c) 2014-2015 Datalight, Inc.
4 All Rights Reserved Worldwide.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; use version 2 of the License.
10 This program is distributed in the hope that it will be useful,
11 but "AS-IS," WITHOUT ANY WARRANTY; without even the implied warranty
12 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 /* Businesses and individuals that for commercial or other reasons cannot
20 comply with the terms of the GPLv2 license may obtain a commercial license
21 before incorporating Reliance Edge into proprietary software for
22 distribution in any form. Visit http://www.datalight.com/reliance-edge for
26 @brief Macros for version numbers, build number, and product information.
32 /** @brief Consecutive number assigned to each automated build.
34 <!-- This macro is updated automatically: do not edit! -->
36 #define RED_BUILD_NUMBER "700"
38 #define RED_KIT_GPL 0U /* Open source GPL kit. */
39 #define RED_KIT_COMMERCIAL 1U /* Commercially-licensed kit. */
40 #define RED_KIT_SANDBOX 2U /* Not a kit: developer sandbox. */
42 /** @brief Indicates the Reliance Edge kit.
44 <!-- This macro is updated automatically: do not edit! -->
46 #define RED_KIT RED_KIT_GPL
49 /** @brief Version number to display in output.
51 #define RED_VERSION "v2.0"
53 /** @brief Version number in hex.
55 The most significant byte is the major version number, etc.
57 #define RED_VERSION_VAL 0x02000000U
59 /** @brief On-disk version number.
61 This is incremented only when the on-disk layout is updated in such a way
62 which is incompatible with previously released versions of the file system.
64 #define RED_DISK_LAYOUT_VERSION 1U
67 /** @brief Base name of the file system product.
69 #define RED_PRODUCT_BASE_NAME "Reliance Edge"
72 /* Specifies whether the product is in alpha stage, beta stage, or neither.
76 #define ALPHABETA " (Alpha)"
78 #define ALPHABETA " (Beta)"
84 /** @brief Full product name and version.
86 #define RED_PRODUCT_NAME "Datalight " RED_PRODUCT_BASE_NAME " " RED_VERSION " Build " RED_BUILD_NUMBER ALPHABETA
89 /** @brief Product copyright.
91 #define RED_PRODUCT_LEGAL "Copyright (c) 2014-2017 Datalight, Inc. All Rights Reserved Worldwide."
94 /** @brief Product patents.
96 #define RED_PRODUCT_PATENT "Patents: US#7284101."
99 /** @brief Product edition.
101 #if RED_KIT == RED_KIT_GPL
102 #define RED_PRODUCT_EDITION "Open-Source GPLv2 Edition -- Compiled " __DATE__ " at " __TIME__
103 #elif RED_KIT == RED_KIT_COMMERCIAL
104 #define RED_PRODUCT_EDITION "Commercial Edition -- Compiled " __DATE__ " at " __TIME__
106 #define RED_PRODUCT_EDITION "Developer Sandbox -- Compiled " __DATE__ " at " __TIME__