You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/04/03 14:40:25 UTC

[incubator-nuttx-apps] branch master updated: nshlib: Disable mb, mh, and mw by default

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f4b133  nshlib: Disable mb, mh, and mw by default
6f4b133 is described below

commit 6f4b1339986345fda940c611c2df6936aedf8014
Author: Sungwoo Kim <ki...@purdue.edu>
AuthorDate: Sat Apr 3 12:54:42 2021 +0900

    nshlib: Disable mb, mh, and mw by default
    
    - Fix https://github.com/apache/incubator-nuttx/issues/3011
    
    Co-authored-by: Gisu Yeo <wc...@gmail.com>
    Co-authored-by: Taegyu Kim <tg...@purdue.edu>
---
 nshlib/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/nshlib/Kconfig b/nshlib/Kconfig
index 4e3c84f..c9e842c 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"