ports: Update for move of crypto-algorithms, uzlib to lib.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
94dfaff18b
commit
925878b2f8
|
@ -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>
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue