From 41b7734c464cbdcd0d447a4de697ce9b3fcd9e04 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 14 Jun 2020 16:23:09 +1000 Subject: [PATCH] zephyr/make-minimal: Disable FAT and LFS2 options to make it build. Signed-off-by: Damien George --- ports/zephyr/make-minimal | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ports/zephyr/make-minimal b/ports/zephyr/make-minimal index 1fc143e4d6..d7dddc3342 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=""' \ + MICROPY_VFS_FAT=0 \ + MICROPY_VFS_LFS2=0 \ FROZEN_DIR= \ QEMU_NET=0 \ "$@"