This is an automated email from the ASF dual-hosted git repository.
acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from ed063a098 nshlib: fix infinite loop on broken stdout in nsh_catfile
new 492a86691 system/nxinit: Add NuttX Init
new 8594627d8 system/nxinit: Add class start/stop for service
new 7c02e7f55 system/nxinit: Add NSH builtin support for action
new 4281a1096 system/nxinit: Warning for long commands
new 8049d91a9 system/nxinit: Add oneshot support for service
new 84f798d43 system/nxinit: Add exec_start support for action
new 84e87a515 system/nxinit: Add reboot_on_failure for service
new 610de9816 system/nxinit: Add comments to the Kconfig
new 7af8ed81f system/nxinit: Fix name[0] issue
new cdb89a54f system/nxinit: Let use a define to define the class max cmds
new 820eb64f1 system/nxinit: Change LOG_DEBUG to LOG_USER
new d8ead1a0f system/nxinit: Remove deprecated BOARDIOC_INIT ioctl
new 5341a2fc9 system/nxinit: Add final event
new c28e61fd3 system/nxinit: Change NXInit to EXPERIMENTAL
The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
{games/cgol => system/nxinit}/CMakeLists.txt | 22 +-
system/nxinit/Kconfig | 123 ++++
{builtin => system/nxinit}/Make.defs | 6 +-
{boot/nxboot => system/nxinit}/Makefile | 21 +-
system/nxinit/action.c | 346 +++++++++++
.../netloop/netloop.h => system/nxinit/action.h | 86 +--
system/nxinit/builtin.c | 237 +++++++
.../openssl/des.h => system/nxinit/builtin.h | 20 +-
.../flowc_mktestdata.c => system/nxinit/import.c | 29 +-
.../openssl/des.h => system/nxinit/import.h | 22 +-
system/nxinit/init.c | 252 ++++++++
system/nxinit/init.h | 93 +++
system/nxinit/parser.c | 288 +++++++++
include/netutils/cmux.h => system/nxinit/parser.h | 46 +-
system/nxinit/service.c | 683 +++++++++++++++++++++
system/nxinit/service.h | 148 +++++
16 files changed, 2301 insertions(+), 121 deletions(-)
copy {games/cgol => system/nxinit}/CMakeLists.txt (79%)
create mode 100644 system/nxinit/Kconfig
copy {builtin => system/nxinit}/Make.defs (90%)
copy {boot/nxboot => system/nxinit}/Makefile (76%)
create mode 100644 system/nxinit/action.c
copy examples/netloop/netloop.h => system/nxinit/action.h (51%)
create mode 100644 system/nxinit/builtin.c
copy crypto/openssl_mbedtls_wrapper/include/openssl/des.h =>
system/nxinit/builtin.h (83%)
copy examples/flowc/flowc_mktestdata.c => system/nxinit/import.c (72%)
copy crypto/openssl_mbedtls_wrapper/include/openssl/des.h =>
system/nxinit/import.h (82%)
create mode 100644 system/nxinit/init.c
create mode 100644 system/nxinit/init.h
create mode 100644 system/nxinit/parser.c
copy include/netutils/cmux.h => system/nxinit/parser.h (70%)
create mode 100644 system/nxinit/service.c
create mode 100644 system/nxinit/service.h