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/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 410ca7d88 apps/nshlib: Remove the deprecated config NSH_LINELEN
410ca7d88 is described below
commit 410ca7d88e101b0c76aa94f5ac18c41f12613d8d
Author: wangjianyu3 <[email protected]>
AuthorDate: Wed Jan 15 11:00:40 2025 +0800
apps/nshlib: Remove the deprecated config NSH_LINELEN
NSH_LINELEN is replaced by POSIX standard LINE_MAX.
https://github.com/apache/nuttx/pull/15541
https://github.com/apache/nuttx-apps/pull/2943
Signed-off-by: wangjianyu3 <[email protected]>
---
nshlib/Kconfig | 8 --------
1 file changed, 8 deletions(-)
diff --git a/nshlib/Kconfig b/nshlib/Kconfig
index 78633e9da..77533466e 100644
--- a/nshlib/Kconfig
+++ b/nshlib/Kconfig
@@ -125,14 +125,6 @@ config NSH_CLE
endchoice
-config NSH_LINELEN
- int "Max command line length"
- default 64 if DEFAULT_SMALL
- default 80 if !DEFAULT_SMALL
- ---help---
- The maximum length of one command line and of one output line.
- Default: 64/80
-
config NSH_DISABLE_SEMICOLON
bool "Disable multiple commands per line"
default DEFAULT_SMALL