acassis commented on code in PR #18967: URL: https://github.com/apache/nuttx/pull/18967#discussion_r3311004466
########## Documentation/applications/system/init/index.rst: ########## @@ -0,0 +1,157 @@ +====================== +``init`` Init +====================== + +Overview +======== + +In NuttX, there are various options for the init entry point, with NSH being +one of the commonly used ones. However, taking NSH as an example, it is not +suitable for all usage scenarios. For instance, the code size required by +NSH and NSH_LIBRARY is relatively large, and NSH lacks management +capabilities for daemons/services (such as restarting services). + +Therefore, we have newly implemented an Init component that is compatible +with most of the syntax of Android Init. It is lightweight, supports Review Comment: But we need a transition words between the first paragraph and the second one, just starting the 2nd paragraph with "NXInit is ..." is not a good option. I will start with something like: "NXInit was created to solve these issues ..." this way the transition will be more smooth -- 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]
