Skip to content

Commit f7520fb

Browse files
committed
Track the wolfSSL mlkem.h rename and give RT1060 the SDK name it selects on
1 parent decbdc5 commit f7520fb

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/cross-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,12 +437,16 @@ jobs:
437437
|| { echo "FAIL: $h not where the Makefile looks"; exit 1; }
438438
done
439439
440+
# $(SDK) is a selector, not a path: the Makefile gates the CPU define, the
441+
# board objects and the linker script on it matching one of two literal
442+
# strings, so the tree has to sit at that exact name.
440443
- name: Build
441444
run: |
442445
set -euo pipefail
443446
git clone -q --depth 1 https://github.com/wolfSSL/wolfssl /tmp/wolfssl
444447
cd RT1060
445-
make SDK=/tmp/sdk WOLFSSL=/tmp/wolfssl
448+
ln -s /tmp/sdk ./SDK_2_13_1_MIMXRT1060-EVKB
449+
make WOLFSSL=/tmp/wolfssl
446450
447451
- name: Assert it really cross-compiled
448452
run: |

uefi-library/src/test_app.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include <wolfssl/wolfcrypt/sha3.h>
3333
#include <wolfssl/wolfcrypt/cmac.h>
3434
#include <wolfssl/wolfcrypt/chacha20_poly1305.h>
35-
#include <wolfssl/wolfcrypt/mlkem.h>
35+
#include <wolfssl/wolfcrypt/wc_mlkem.h>
3636
#include <wolfssl/wolfcrypt/wc_mlkem.h>
3737
#include <wolfssl/wolfcrypt/wc_mldsa.h>
3838

uefi-library/wolfcrypt_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <wolfssl/wolfcrypt/logging.h>
1919
#include <wolfssl/wolfcrypt/error-crypt.h>
2020
#include <wolfssl/wolfcrypt/asn_public.h>
21-
#include <wolfssl/wolfcrypt/mlkem.h>
21+
#include <wolfssl/wolfcrypt/wc_mlkem.h>
2222
#include <wolfssl/wolfcrypt/ecc.h>
2323
#include <wolfssl/wolfcrypt/dh.h>
2424
#include <wolfssl/wolfcrypt/chacha.h>

0 commit comments

Comments
 (0)