From 6f4b1339986345fda940c611c2df6936aedf8014 Mon Sep 17 00:00:00 2001 From: Sungwoo Kim Date: Sat, 3 Apr 2021 12:54:42 +0900 Subject: [PATCH] nshlib: Disable mb, mh, and mw by default - Fix https://github.com/apache/incubator-nuttx/issues/3011 Co-authored-by: Gisu Yeo Co-authored-by: Taegyu Kim --- nshlib/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nshlib/Kconfig b/nshlib/Kconfig index 4e3c84f40..c9e842c87 100644 --- a/nshlib/Kconfig +++ b/nshlib/Kconfig @@ -365,7 +365,7 @@ config NSH_DISABLE_LS config NSH_DISABLE_MB bool "Disable mb" - default n + default y config NSH_DISABLE_MD5 bool "Disable md5" @@ -402,7 +402,7 @@ config NSH_DISABLE_MKSMARTFS config NSH_DISABLE_MH bool "Disable mh" - default n + default y config NSH_DISABLE_MODCMDS bool "Disable modules commands (insmod, rmmod, lsmod)" @@ -419,7 +419,7 @@ config NSH_DISABLE_MV config NSH_DISABLE_MW bool "Disable mw" - default n + default y config NSH_DISABLE_NSFMOUNT bool "Disable nfsmount"