From 838d3cf3241938e3dfbbca90d7672f4af3289af1 Mon Sep 17 00:00:00 2001 From: wangjianyu3 Date: Wed, 15 Jan 2025 11:00:40 +0800 Subject: [PATCH] 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 --- nshlib/Kconfig | 8 -------- 1 file changed, 8 deletions(-) diff --git a/nshlib/Kconfig b/nshlib/Kconfig index 78633e9da41..77533466e6e 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