ports: Update for move of crypto-algorithms, uzlib to lib.

Signed-off-by: Damien George <damien@micropython.org>
pull/5036/head
Damien George 2021-07-12 16:34:43 +10:00
rodzic 94dfaff18b
commit 925878b2f8
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

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

Wyświetl plik

@ -114,10 +114,10 @@ LIB_SRC_C += \
lib/littlefs/lfs2_util.c \
lib/oofatfs/ff.c \
lib/oofatfs/ffunicode.c \
extmod/uzlib/crc32.c \
extmod/uzlib/adler32.c \
extmod/uzlib/tinflate.c \
extmod/uzlib/tinfgzip.c
lib/uzlib/adler32.c \
lib/uzlib/crc32.c \
lib/uzlib/tinfgzip.c \
lib/uzlib/tinflate.c
SRC_C += \
main.c \

Wyświetl plik

@ -27,7 +27,7 @@
#include <string.h>
#include "py/mphal.h"
#include "extmod/uzlib/uzlib.h"
#include "lib/uzlib/uzlib.h"
#include "gzstream.h"
#include "mboot.h"

Wyświetl plik

@ -28,7 +28,7 @@
#include <string.h>
#include "py/mphal.h"
#include "extmod/crypto-algorithms/sha256.c"
#include "lib/crypto-algorithms/sha256.c"
#include "boardctrl.h"
#include "usbd_core.h"
#include "storage.h"