forked from mcu-tools/mcuboot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add files from 2.16.000 MCUXpresso SDK release
Merge in MCUCORE/mcuboot from release/2.16.000_major_rfp_gh_review to release/2.16.000_major_rfp_gh
- Loading branch information
1 parent
fd3a47c
commit 20b45dc
Showing
67 changed files
with
7,657 additions
and
3,234 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
/** | ||
@page middleware_log Middleware Change Log | ||
@section mcuboot_opensource MCUBoot for MCUXpresso SDK | ||
Current version is MCUBoot 2.0.0. | ||
|
||
- 2.0.0 | ||
- Changed %zx to %x in printf's to make it compatible with internal formatting function | ||
- Used original version of hmac.c in TinyCrypt to make it compatible with IAR | ||
*/ |
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,7 +1,7 @@ | ||
Release Name: MCUBoot | ||
Release Version: 1.9.0 | ||
Release Version: 2.0.0 | ||
Outgoing License: Apache License Version 2.0, January 2004 | ||
License File: LICENSE | ||
Format: Source | ||
Description: MCUboot is a secure bootloader for 32-bits microcontrollers. | ||
Origin: https://github.com/mcu-tools/mcuboot | ||
Origin: https://github.com/mcu-tools/mcuboot |
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
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,19 +1,20 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Copyright (c) 2021 Arm Limited | ||
*/ | ||
|
||
#ifndef __BOOTUTIL_CRYPTO_COMMON_H__ | ||
#define __BOOTUTIL_CRYPTO_COMMON_H__ | ||
|
||
/* TODO May need to update this in a future 3.x version of Mbed TLS. | ||
* Extract a member of the mbedtls context structure. | ||
*/ | ||
#if MBEDTLS_VERSION_NUMBER >= 0x03000000 | ||
#define MBEDTLS_CONTEXT_MEMBER(X) MBEDTLS_PRIVATE(X) | ||
#else | ||
#define MBEDTLS_CONTEXT_MEMBER(X) X | ||
#endif | ||
|
||
#endif /* __BOOTUTIL_CRYPTO_COMMON_H__ */ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Copyright (c) 2021 Arm Limited | ||
*/ | ||
|
||
#ifndef __BOOTUTIL_CRYPTO_COMMON_H__ | ||
#define __BOOTUTIL_CRYPTO_COMMON_H__ | ||
|
||
/* The check below can be performed even for those cases | ||
* where MCUBOOT_USE_MBED_TLS has not been defined | ||
*/ | ||
#include "mbedtls/version.h" | ||
#if MBEDTLS_VERSION_NUMBER >= 0x03000000 | ||
#define MBEDTLS_CONTEXT_MEMBER(X) MBEDTLS_PRIVATE(X) | ||
#else | ||
#define MBEDTLS_CONTEXT_MEMBER(X) X | ||
#endif | ||
|
||
#endif /* __BOOTUTIL_CRYPTO_COMMON_H__ */ |
Oops, something went wrong.