JianyuWang0623 commented on PR #2850: URL: https://github.com/apache/nuttx-apps/pull/2850#issuecomment-2485812357
As @jasonbu suggested, the defconfig who`s nsh_linelen is large (e.g. greater than 256 bytes) should be careful with stacksize CC: @lipengfei28 - Command ``` find boards/ -name defconfig | while read i; do line="$(grep CONFIG_NSH_LINELEN $i)"; if [[ "$line" != "" ]]; then line=$(echo $line | cut -d'=' -f2-); if [[ $line -gt 128 ]]; then echo $i: CONFIG_NSH_LINELEN:$line; fi; fi; done ``` - Search result ``` boards/xtensa/esp32/esp32-devkitc/configs/wifi_smp/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/wifinsh/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/efuse/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/mcuboot_update_agent/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/blewifi/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/nxlooper/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/audio/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/wifi/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-devkitc/configs/wifishare/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-lyrat/configs/rtptools/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-lyrat/configs/nxrecorder/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-lyrat/configs/audio/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-lyrat/configs/wifi/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-audio-kit/configs/audio/defconfig: CONFIG_NSH_LINELEN:300 boards/xtensa/esp32/esp32-audio-kit/configs/wifi/defconfig: CONFIG_NSH_LINELEN:300 boards/arm/tiva/lm3s6965-ek/configs/qemu-flat/defconfig: CONFIG_NSH_LINELEN:1000 boards/arm/tiva/lm3s6965-ek/configs/qemu-protected/defconfig: CONFIG_NSH_LINELEN:1000 ``` Mark https://github.com/apache/nuttx/pull/2845. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
