This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1475 from aws/release-candidate
Release candidate merge for 201910.00
- Loading branch information
Showing
3,008 changed files
with
431,316 additions
and
321,433 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[submodule "http-parser"] | ||
path = libraries/3rdparty/http_parser | ||
url = https://github.com/nodejs/http-parser.git | ||
branch = v2.9.2 | ||
[submodule "unity"] | ||
path = libraries/3rdparty/unity | ||
url = https://github.com/ThrowTheSwitch/Unity.git | ||
branch = v2.4.3 | ||
[submodule "freertos_kernel"] | ||
path = freertos_kernel | ||
url = https://github.com/FreeRTOS/FreeRTOS-Kernel.git | ||
branch = V10.2.1-convergence-FreeRTOS-Source | ||
[submodule "pkcs11"] | ||
path = libraries/3rdparty/pkcs11 | ||
url = https://github.com/amazon-freertos/pkcs11.git | ||
branch = v2.40_errata01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
## Cloning | ||
This repo uses [Git Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) to bring in dependent components. | ||
|
||
Note: If you download the ZIP file provided by GitHub UI, you will not get the contents of the submodules. (The ZIP file is also not a valid git repository) | ||
|
||
To clone using HTTPS: | ||
``` | ||
git clone https://github.com/aws/amazon-freertos.git --recurse-submodules | ||
``` | ||
Using SSH: | ||
``` | ||
git clone [email protected]:aws/amazon-freertos.git --recurse-submodules | ||
``` | ||
|
||
If you have downloaded the repo without using the `--recurse-submodules` argument, you need to run: | ||
``` | ||
git submodule update --init --recursive | ||
``` | ||
|
||
## Important branches to know | ||
master --> Development is done continuously on this branch | ||
release --> Fully tested released source code | ||
release-candidate --> Preview of upcoming release | ||
feature/* --> Alpha/beta of an upcoming feature | ||
|
||
## Getting Started | ||
|
||
For more information on Amazon FreeRTOS, refer to the [Getting Started section of Amazon FreeRTOS webpage](https://aws.amazon.com/freertos). | ||
|
Oops, something went wrong.