FelipeMdeO commented on PR #19209: URL: https://github.com/apache/nuttx/pull/19209#issuecomment-4997477007
Hello @acassis , @Abhishekmishra2808 , sorry, combining your 2 PR will "crash" dropbear. I followed the steps below to have this conclusion: ``` git clone [email protected]:apache/nuttx.git nuttx-repro && cd nuttx-repro git fetch origin pull/19209/head:pr-19209 && git checkout pr-19209 cd .. && git clone [email protected]:apache/nuttx-apps.git apps && cd apps git fetch origin pull/3557/head:pr-3557 && git checkout pr-3557 cd ../nuttx-repro ./tools/configure.sh sim:dropbear make -j$(nproc) # builda com sucesso, sem dropbear dentro ``` After build, you will see: ``` ➜ nuttx-repro git:(pr-19209) grep CONFIG_NETUTILS_DROPBEAR .config ➜ nuttx-repro git:(pr-19209) ./nuttx NuttShell (NSH) NuttX-13.0.0 nsh> help help usage: help [-v] [<cmd>] . cmp free mkfifo rmdir uname [ dirname help mkrd set umount ? df hexdump mount kill unset alias dmesg ifconfig mv pkill uptime unalias echo ifdown nslookup sleep watch arp env ifup pidof usleep xd basename exec losetup printf source wait break exit ln ps test cat expr ls pwd time cd false mkdir readlink true cp fdinfo mkfatfs rm truncate Builtin Apps: aescbc aesxts des3cbc gpio hmac ping aesctr dd dumpstack hello nsh sh nsh> ``` So the dropbear was silently disabled. I will start to look right now why its happen when how can we solve this issue. -- 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]
