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 5f286fc92 flashtool: Fix compile error due to missing statement after
default label
new 859c014d4 examples/fdpicxip: Demonstrate FDPIC modules executed in
place.
new 20dc5e516 testing/fs/xipfs: Cover the FDPIC module loader.
The 2 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:
examples/{bridge => fdpicxip}/CMakeLists.txt | 6 +-
examples/fdpicxip/Kconfig | 39 ++
{audioutils/lame => examples/fdpicxip}/Make.defs | 6 +-
{boot/nxboot => examples/fdpicxip}/Makefile | 19 +-
examples/fdpicxip/cxxuser_bin.h | 400 +++++++++++
examples/fdpicxip/fdpicxip_main.c | 538 +++++++++++++++
examples/fdpicxip/lazymod_bin.h | 220 ++++++
examples/fdpicxip/libcounter_bin.h | 208 ++++++
examples/fdpicxip/libshape_bin.h | 389 +++++++++++
examples/fdpicxip/modules/.gitignore | 5 +
examples/fdpicxip/modules/Makefile | 205 ++++++
examples/fdpicxip/modules/callback.c | 517 ++++++++++++++
examples/fdpicxip/modules/cxxuser.cpp | 210 ++++++
examples/fdpicxip/modules/funcdesc.c | 156 +++++
.../fdpicxip/modules/lazymod.c | 29 +-
.../modules/libcounter.c} | 37 +-
examples/fdpicxip/modules/libshape.cpp | 160 +++++
.../fdpicxip/modules/missingsym.c | 20 +-
.../fdpicxip/modules/qsorter.c | 91 ++-
.../fdpicxip/modules/user.c | 58 +-
examples/fdpicxip/qsorter_bin.h | 268 ++++++++
examples/fdpicxip/user_bin.h | 265 ++++++++
testing/fs/xipfs/Kconfig | 9 +-
testing/fs/xipfs/callback_bin.h | 748 +++++++++++++++++++++
testing/fs/xipfs/counteruser_bin.h | 265 ++++++++
testing/fs/xipfs/cxxuser_bin.h | 400 +++++++++++
testing/fs/xipfs/funcdesc_bin.h | 304 +++++++++
testing/fs/xipfs/lazymod_bin.h | 220 ++++++
testing/fs/xipfs/libcounter_bin.h | 208 ++++++
testing/fs/xipfs/libshape_bin.h | 389 +++++++++++
testing/fs/xipfs/manyneeded_bin.h | 302 +++++++++
testing/fs/xipfs/missingsym_bin.h | 200 ++++++
testing/fs/xipfs/xipfs_main.c | 714 ++++++++++++++++++++
33 files changed, 7467 insertions(+), 138 deletions(-)
copy examples/{bridge => fdpicxip}/CMakeLists.txt (88%)
create mode 100644 examples/fdpicxip/Kconfig
copy {audioutils/lame => examples/fdpicxip}/Make.defs (89%)
copy {boot/nxboot => examples/fdpicxip}/Makefile (75%)
create mode 100644 examples/fdpicxip/cxxuser_bin.h
create mode 100644 examples/fdpicxip/fdpicxip_main.c
create mode 100644 examples/fdpicxip/lazymod_bin.h
create mode 100644 examples/fdpicxip/libcounter_bin.h
create mode 100644 examples/fdpicxip/libshape_bin.h
create mode 100644 examples/fdpicxip/modules/.gitignore
create mode 100644 examples/fdpicxip/modules/Makefile
create mode 100644 examples/fdpicxip/modules/callback.c
create mode 100644 examples/fdpicxip/modules/cxxuser.cpp
create mode 100644 examples/fdpicxip/modules/funcdesc.c
copy system/flash_eraseall/flash_eraseall_main.c =>
examples/fdpicxip/modules/lazymod.c (77%)
copy examples/{tcpblaster/tcpblaster_host.c => fdpicxip/modules/libcounter.c}
(75%)
create mode 100644 examples/fdpicxip/modules/libshape.cpp
copy crypto/openssl_mbedtls_wrapper/mbedtls/ec_key.c =>
examples/fdpicxip/modules/missingsym.c (66%)
copy testing/testsuites/kernel/fs/cases/fs_eventfd_test.c =>
examples/fdpicxip/modules/qsorter.c (61%)
copy testing/testsuites/kernel/mm/cases/mm_test_005.c =>
examples/fdpicxip/modules/user.c (56%)
create mode 100644 examples/fdpicxip/qsorter_bin.h
create mode 100644 examples/fdpicxip/user_bin.h
create mode 100644 testing/fs/xipfs/callback_bin.h
create mode 100644 testing/fs/xipfs/counteruser_bin.h
create mode 100644 testing/fs/xipfs/cxxuser_bin.h
create mode 100644 testing/fs/xipfs/funcdesc_bin.h
create mode 100644 testing/fs/xipfs/lazymod_bin.h
create mode 100644 testing/fs/xipfs/libcounter_bin.h
create mode 100644 testing/fs/xipfs/libshape_bin.h
create mode 100644 testing/fs/xipfs/manyneeded_bin.h
create mode 100644 testing/fs/xipfs/missingsym_bin.h