saramonteiro commented on a change in pull request #4077: URL: https://github.com/apache/incubator-nuttx/pull/4077#discussion_r664438584
########## File path: boards/risc-v/esp32c3/esp32c3-devkit/src/README.txt ########## @@ -0,0 +1,120 @@ +README +====== + + Overview + -------- + This directory contains logic to support a custom ROMFS start-up script. + This startup script is used by by the NSH when it starts provided that + CONFIG_NSH_ARCHROMFS=y. The script provides a ROMFS volume that will be + mounted at /etc and will look like this at run-time: + + NuttShell (NSH) NuttX-10.1.0-RC1 + MOTD: username=admin password=Administrator + nsh> ls -Rl /etc + /etc: + dr-xr-xr-x 0 . + -r--r--r-- 20 group + dr-xr-xr-x 0 init.d/ + -r--r--r-- 35 passwd + /etc/init.d: + dr-xr-xr-x 0 .. + -r--r--r-- 110 rcS + nsh> + + /etc/init.d/rcS is the start-up script; /etc/passwd is a the password + file. It supports a single user: + + USERNAME: admin + PASSWORD: Administrator + + nsh> cat /etc/passwd + admin:8Tv+Hbmr3pLddSjtzL0kwC:0:0:/ + + The encrypted passwords in the provided passwd file are only valid if the + TEA key is set to: 012345678 9abcdef0 012345678 9abcdef0. Changes to either + the key or the password word will require regeneration of the nsh_romfimg.h Review comment: ```suggestion the key or the password word will require regeneration of the nsh_romfsimg.h ``` -- 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: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org