-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
boards: Replace CONFIG_NSH_LINELEN
with CONFIG_LINE_MAX
#15541
boards: Replace CONFIG_NSH_LINELEN
with CONFIG_LINE_MAX
#15541
Conversation
Details: apache/nuttx-apps#2943 1. find boards/ -name defconfig | xargs sed -i 's/CONFIG_NSH_LINELEN/CONFIG_LINE_MAX/g' 2. ./tools/refresh.sh --silent --defaults all Signed-off-by: wangjianyu3 <[email protected]>
[Experimental Bot, please feedback here] Yes, this PR appears to meet the NuttX requirements, although some sections could be more detailed. Here's a breakdown with suggestions for improvement:
Example of improved Impact and Testing sections: Impact:
Testing: Tested the change by building and running NSH on the qemu-x86_64 target. Verification steps:
CI: All CI checks passed. [Link to CI run] By adding these clarifications, the PR becomes more robust and easier for reviewers to understand and approve. |
apache/nuttx#15541 apache#2943 Signed-off-by: wangjianyu3 <[email protected]>
apache#15541 apache/nuttx-apps#2943 Signed-off-by: wangjianyu3 <[email protected]>
NSH_LINELEN is replaced by POSIX standard LINE_MAX. apache/nuttx#15541 apache#2943 Signed-off-by: wangjianyu3 <[email protected]>
NSH_LINELEN is replaced by POSIX standard LINE_MAX. apache/nuttx#15541 #2943 Signed-off-by: wangjianyu3 <[email protected]>
NSH_LINELEN is replaced by POSIX standard LINE_MAX. apache/nuttx#15541 apache/nuttx-apps#2943 Signed-off-by: wangjianyu3 <[email protected]>
NSH_LINELEN is replaced by POSIX standard LINE_MAX. apache/nuttx#15541 apache/nuttx-apps#2943 Signed-off-by: wangjianyu3 <[email protected]>
NSH_LINELEN is replaced by POSIX standard LINE_MAX. apache/nuttx#15541 apache/nuttx-apps#2943 Signed-off-by: wangjianyu3 <[email protected]>
Summary
boards: Replace
CONFIG_NSH_LINELEN
withCONFIG_LINE_MAX
Details: apache/nuttx-apps#2943
1. find boards/ -name defconfig | xargs sed -i 's/CONFIG_NSH_LINELEN/CONFIG_LINE_MAX/g'
2. ./tools/refresh.sh --silent --defaults all
Impact
boards/*
Testing