git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.0.x@2008 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
74ca86cb66
commit
1c58084bc8
|
@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
|
|||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = 1.5.9
|
||||
PROJECT_NUMBER = 2.0.0
|
||||
|
||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||
# base path where the generated documentation will be put.
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
GPL Exception Text
|
||||
|
||||
In addition, as a special exception, the copyright holder of ChibiOS/RT,
|
||||
gives You the additional right to link the unmodified code of this Program with
|
||||
code not covered under the GNU General Public License ("Non-GPL Code") and to
|
||||
distribute linked combinations including the two, subject to the limitations
|
||||
in this paragraph.
|
||||
|
||||
1. Non-GPL Code permitted under this exception must only link to the
|
||||
unmodified code of this Program through those well defined interfaces
|
||||
identified as "Approved Interfaces".
|
||||
2. Every copy of the combined work is accompanied by a written statement
|
||||
that details to the recipient the version of ChibiOS/RT used and an
|
||||
offer by yourself to provide the ChibiOS/RT source code should the
|
||||
recipient request it.
|
||||
3. The combined work is not itself an RTOS, scheduler, kernel or related
|
||||
product.
|
||||
4. The combined work is not itself a binary library intended for linking
|
||||
into other software applications.
|
||||
|
||||
The Approved Interfaces
|
||||
|
||||
1. The files of Non-GPL Code may include the unmodified ChibiOS/RT
|
||||
distribution header files contained under:
|
||||
./os/kernel/include
|
||||
./os/hal/include
|
||||
./os/hal/platforms
|
||||
./os/various
|
||||
without causing the resulting work to be covered by the GNU General
|
||||
Public License.
|
||||
2. The files of Non-GPL Code may link to the unmodified ChibiOS/RT
|
||||
distribution files contained under:
|
||||
./os/kernel/src
|
||||
./os/hal/src
|
||||
./os/hal/platforms
|
||||
./os/various
|
||||
without causing the resulting work to be covered by the GNU General
|
||||
Public License.
|
||||
3. The files of Non-GPL Code may link to, or include, the modified or
|
||||
unmodified ChibiOS/RT distribution files contained under:
|
||||
./os/kernel/templates
|
||||
./os/hal/templates
|
||||
./os/ports
|
||||
./boards
|
||||
./demos
|
||||
without causing the resulting work to be covered by the GNU General
|
||||
Public License.
|
||||
|
||||
Only the copyright holder of ChibiOS/RT may make changes or additions to the
|
||||
list of Approved Interfaces.
|
||||
|
||||
You must obey the GNU General Public License in all respects for all of the
|
||||
Program code and other code used in conjunction with the Program except the
|
||||
Non-GPL Code covered by this exception.
|
|
@ -39,22 +39,22 @@
|
|||
/**
|
||||
* @brief Kernel version string.
|
||||
*/
|
||||
#define CH_KERNEL_VERSION "1.5.9unstable"
|
||||
#define CH_KERNEL_VERSION "2.0.0"
|
||||
|
||||
/**
|
||||
* @brief Kernel version major number.
|
||||
*/
|
||||
#define CH_KERNEL_MAJOR 1
|
||||
#define CH_KERNEL_MAJOR 2
|
||||
|
||||
/**
|
||||
* @brief Kernel version minor number.
|
||||
*/
|
||||
#define CH_KERNEL_MINOR 5
|
||||
#define CH_KERNEL_MINOR 0
|
||||
|
||||
/**
|
||||
* @brief Kernel version patch number.
|
||||
*/
|
||||
#define CH_KERNEL_PATCH 9
|
||||
#define CH_KERNEL_PATCH 0
|
||||
|
||||
/*
|
||||
* Common values.
|
||||
|
|
1506
readme.txt
1506
readme.txt
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue