Changed version numbers to 2.4.0 in order to start final testing.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3812 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
e2448aac99
commit
eb9622aa4a
|
@ -107,16 +107,20 @@ ASFLAGS = -Wa,-amhls=$(<:.s=.lst) $(ADEFS)
|
||||||
CPFLAGS = $(OPT) -Wall -Wextra -Wstrict-prototypes -fverbose-asm $(DEFS)
|
CPFLAGS = $(OPT) -Wall -Wextra -Wstrict-prototypes -fverbose-asm $(DEFS)
|
||||||
|
|
||||||
ifeq ($(HOST_OSX),yes)
|
ifeq ($(HOST_OSX),yes)
|
||||||
OSX_SDK = /Developer/SDKs/MacOSX10.5.sdk
|
ifeq ($(OSX_SDK),)
|
||||||
OSX_ARCH = -mmacosx-version-min=10.3 -arch i386
|
OSX_SDK = /Developer/SDKs/MacOSX10.7.sdk
|
||||||
|
endif
|
||||||
|
ifeq ($(OSX_ARCH),)
|
||||||
|
OSX_ARCH = -mmacosx-version-min=10.3 -arch i386
|
||||||
|
endif
|
||||||
|
|
||||||
CPFLAGS += -isysroot $(OSX_SDK) $(OSX_ARCH)
|
CPFLAGS += -isysroot $(OSX_SDK) $(OSX_ARCH)
|
||||||
LDFLAGS = -Wl -Map=$(PROJECT).map,-syslibroot,$(OSX_SDK),$(LIBDIR)
|
LDFLAGS = -Wl -Map=$(PROJECT).map,-syslibroot,$(OSX_SDK),$(LIBDIR)
|
||||||
LIBS += $(OSX_ARCH)
|
LIBS += $(OSX_ARCH)
|
||||||
else
|
else
|
||||||
# Linux, or other
|
# Linux, or other
|
||||||
CPFLAGS += -Wa,-alms=$(<:.c=.lst)
|
CPFLAGS += -Wa,-alms=$(<:.c=.lst)
|
||||||
LDFLAGS += -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)
|
LDFLAGS += -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Generate dependency information
|
# Generate dependency information
|
||||||
|
|
|
@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
|
||||||
# This could be handy for archiving the generated documentation or
|
# This could be handy for archiving the generated documentation or
|
||||||
# if some version control system is used.
|
# if some version control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2.3.5
|
PROJECT_NUMBER = 2.4.0
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer
|
# for a project that appears at the top of each page and should give viewer
|
||||||
|
|
|
@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
|
||||||
# This could be handy for archiving the generated documentation or
|
# This could be handy for archiving the generated documentation or
|
||||||
# if some version control system is used.
|
# if some version control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2.3.5
|
PROJECT_NUMBER = 2.4.0
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer
|
# for a project that appears at the top of each page and should give viewer
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version string.
|
* @brief Kernel version string.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_VERSION "2.3.5unstable"
|
#define CH_KERNEL_VERSION "2.4.0"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Kernel version
|
* @name Kernel version
|
||||||
|
@ -54,12 +54,12 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version minor number.
|
* @brief Kernel version minor number.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_MINOR 3
|
#define CH_KERNEL_MINOR 4
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version patch number.
|
* @brief Kernel version patch number.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_PATCH 5
|
#define CH_KERNEL_PATCH 0
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
2
todo.txt
2
todo.txt
|
@ -6,8 +6,6 @@ X = In progress, some work done.
|
||||||
N = Decided against.
|
N = Decided against.
|
||||||
|
|
||||||
Current Pipeline (2.4.0):
|
Current Pipeline (2.4.0):
|
||||||
X Revision of the RTCv1 driver implementation.
|
|
||||||
- Posix simulator tickets and test.
|
|
||||||
- Complete test cycle.
|
- Complete test cycle.
|
||||||
- Complete documentation cycle.
|
- Complete documentation cycle.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue