Skip to content

Commit 925878b

Browse files
committed
ports: Update for move of crypto-algorithms, uzlib to lib.
Signed-off-by: Damien George <[email protected]>
1 parent 94dfaff commit 925878b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ports/esp32/memory.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
// this is needed for extmod/crypto-algorithms/sha256.c
1+
// this is needed for lib/crypto-algorithms/sha256.c
22
#include <string.h>

ports/stm32/mboot/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ LIB_SRC_C += \
114114
lib/littlefs/lfs2_util.c \
115115
lib/oofatfs/ff.c \
116116
lib/oofatfs/ffunicode.c \
117-
extmod/uzlib/crc32.c \
118-
extmod/uzlib/adler32.c \
119-
extmod/uzlib/tinflate.c \
120-
extmod/uzlib/tinfgzip.c
117+
lib/uzlib/adler32.c \
118+
lib/uzlib/crc32.c \
119+
lib/uzlib/tinfgzip.c \
120+
lib/uzlib/tinflate.c
121121

122122
SRC_C += \
123123
main.c \

ports/stm32/mboot/gzstream.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <string.h>
2828

2929
#include "py/mphal.h"
30-
#include "extmod/uzlib/uzlib.h"
30+
#include "lib/uzlib/uzlib.h"
3131
#include "gzstream.h"
3232
#include "mboot.h"
3333

ports/stm32/mboot/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <string.h>
2929

3030
#include "py/mphal.h"
31-
#include "extmod/crypto-algorithms/sha256.c"
31+
#include "lib/crypto-algorithms/sha256.c"
3232
#include "boardctrl.h"
3333
#include "usbd_core.h"
3434
#include "storage.h"

0 commit comments

Comments
 (0)