diff options
author | Damien George <damien@micropython.org> | 2020-06-14 16:23:09 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-06-30 22:33:41 +1000 |
commit | 41b7734c464cbdcd0d447a4de697ce9b3fcd9e04 (patch) | |
tree | 8191888498f70f9f65555cbd1addd3b727161cb0 | |
parent | f84145bea1bc962b5aecf24bef6ea64202d905ee (diff) |
zephyr/make-minimal: Disable FAT and LFS2 options to make it build.
Signed-off-by: Damien George <damien@micropython.org>
-rwxr-xr-x | ports/zephyr/make-minimal | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/zephyr/make-minimal b/ports/zephyr/make-minimal index 1fc143e4d..d7dddc334 100755 --- a/ports/zephyr/make-minimal +++ b/ports/zephyr/make-minimal @@ -11,6 +11,8 @@ make \ CONF_FILE=prj_minimal.conf \ CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_minimal.h>"' \ + MICROPY_VFS_FAT=0 \ + MICROPY_VFS_LFS2=0 \ FROZEN_DIR= \ QEMU_NET=0 \ "$@" |