mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-23 11:09:28 -05:00
Apply release changes to main branch (#759)
* Update History.txt and README.md for December release (#744) * Update History.txt and README.md for release * Bump mbedtls submodule to v2.28.0 (#745) * Patch project files for mbedtls (#751) * Apply group 1 patches * Apply patches for group 2 * Update project files for mbedTLS new version Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Fix warnings in projects Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Fix warnings in HTTP_S3_Download demo Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> * Update changelog and history for corePKCS11 update (#752) * Update submodule pointer and manifest.yml for corePKCS11 (#754) * Update readme and history.txt to show that Sigv4 is a newly added library (#756) * Revert update to v143 of VS toolset (#757) * [AUTO][RELEASE]: Bump file header version to "202112.00" * Update file headers to satisfy core checks Co-authored-by: Muneeb Ahmed <54290492+muneebahmed10@users.noreply.github.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: johnrhen <johnrhen@users.noreply.github.com>
This commit is contained in:
parent
4f71a94a70
commit
43defa566c
1707 changed files with 7253 additions and 6354 deletions
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
@ -19,10 +19,9 @@
|
|||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*
|
||||
* 1 tab == 4 spaces!
|
||||
*/
|
||||
|
||||
#ifndef FREERTOS_CONFIG_H
|
||||
|
|
@ -36,7 +35,7 @@
|
|||
*
|
||||
* THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
|
||||
* FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
|
||||
* http://www.freertos.org/a00110.html
|
||||
* https://www.FreeRTOS.org/a00110.html
|
||||
*
|
||||
* The bottom of this file contains some constants specific to running the UDP
|
||||
* stack in this demo. Constants specific to FreeRTOS+TCP itself (rather than
|
||||
|
|
|
|||
|
|
@ -169,6 +169,7 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cipher.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cipher_wrap.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cmac.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\constant_time.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ctr_drbg.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\debug.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\des.c" />
|
||||
|
|
@ -190,6 +191,8 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\md4.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\md5.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\memory_buffer_alloc.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\mps_reader.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\mps_trace.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\net_sockets.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\nist_kw.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\oid.c" />
|
||||
|
|
@ -205,6 +208,14 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\platform.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\platform_util.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\poly1305.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_aead.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_cipher.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_client.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_driver_wrappers.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_ecp.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_hash.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_mac.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_rsa.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_se.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_slot_management.c" />
|
||||
|
|
@ -224,6 +235,7 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_srv.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_ticket.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_tls.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_tls13_keys.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\threading.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\timing.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\version.c" />
|
||||
|
|
@ -236,7 +248,6 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\x509_crt.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\x509_csr.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\xtea.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\error.c" />
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\dependency\3rdparty\mbedtls_utils\mbedtls_utils.c" />
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\core_pkcs11.c" />
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\core_pki_utils.c" />
|
||||
|
|
@ -348,7 +359,6 @@
|
|||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_slot_management.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_storage.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\ssl_invasive.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\include\mbedtls\error.h" />
|
||||
<ClInclude Include="..\..\Source\corePKCS11\source\dependency\3rdparty\pkcs11\pkcs11.h" />
|
||||
<ClInclude Include="..\..\Source\corePKCS11\source\dependency\3rdparty\pkcs11\pkcs11f.h" />
|
||||
<ClInclude Include="..\..\Source\corePKCS11\source\dependency\3rdparty\pkcs11\pkcs11t.h" />
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
@ -19,10 +19,9 @@
|
|||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*
|
||||
* 1 tab == 4 spaces!
|
||||
*/
|
||||
|
||||
/***
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue