This is an automated email from the ASF dual-hosted git repository.
xiaoxiang781216 pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nuttx-ntfc.git
from 7344b43 add advanced debugging tools
new 55b926d envconfig: remove unused reboot_timeout recovery option
new 1922d76 lib/elf: add AppBinDir for kernel-mode application discovery
new 1fe209f coreconfig.py: add per-core kernel-mode options
new 121a313 device: honor per-core exec_cwd and boot_timeout when
starting targets
The 4 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:
Documentation/config-yaml.rst | 11 ++++
Documentation/config.yaml | 8 ++-
Documentation/usage.rst | 1 -
src/ntfc/coreconfig.py | 32 ++++++++++
src/ntfc/device/host.py | 4 +-
src/ntfc/device/serial.py | 2 +-
src/ntfc/envconfig.py | 4 +-
src/ntfc/lib/elf/app_bindir.py | 137 +++++++++++++++++++++++++++++++++++++++++
src/ntfc/pytest/configure.py | 4 +-
tests/device/test_host.py | 33 ++++++++++
tests/device/test_serial.py | 28 +++++++++
tests/lib/test_app_bindir.py | 103 +++++++++++++++++++++++++++++++
tests/test_coreconfig.py | 62 +++++++++++++++++++
tests/test_envconfig.py | 2 -
14 files changed, 419 insertions(+), 12 deletions(-)
create mode 100644 src/ntfc/lib/elf/app_bindir.py
create mode 100644 tests/lib/test_app_bindir.py