git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@6233 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2013-08-31 08:29:25 +00:00
parent 3363239d73
commit da174a1aa8
17 changed files with 20 additions and 4 deletions

View File

@ -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 = 2.4.5
PROJECT_NUMBER = 2.4.6
# 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

View File

@ -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 = 2.4.5
PROJECT_NUMBER = 2.4.6
# 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

View File

@ -47,7 +47,7 @@
/**
* @brief Kernel version string.
*/
#define CH_KERNEL_VERSION "2.4.5"
#define CH_KERNEL_VERSION "2.4.6"
/**
* @name Kernel version
@ -66,7 +66,7 @@
/**
* @brief Kernel version patch number.
*/
#define CH_KERNEL_PATCH 5
#define CH_KERNEL_PATCH 6
/** @} */
/*

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -106,6 +106,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -107,6 +107,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -107,6 +107,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -107,6 +107,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -105,6 +105,7 @@ SECTIONS
. = ALIGN(8);
} > flash
. = ALIGN(4);
_etext = .;
_textdata = _etext;

View File

@ -78,6 +78,9 @@
*** Releases ***
*****************************************************************************
*** 2.4.6 ***
- FIX: Fixed possible unalignment in GCC Cortex-M scatter files (bug #430).
*** 2.4.5 ***
- FIX: Fixed PAL driver errors (bug #429).
- FIX: Fixed USB HAL driver compile error (bug #428).