This is an automated email from the ASF dual-hosted git repository.
xiaoxiang781216 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from ce49ac905 examples/microwindows: add mwdemo demo application
new b695ec057 system/xipfs: Add a command to compact a xipfs volume and
report it.
new 3a03552c6 testing/fs/xipfs: Add a test suite for the xipfs file system.
new 2492317f1 examples/nxflatxip: Run an NXFLAT module in place out of
xipfs.
The 3 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/nxflatxip/.gitignore | 2 +
.../canlib => examples/nxflatxip}/CMakeLists.txt | 11 +-
examples/nxflatxip/Kconfig | 38 +
{audioutils/lame => examples/nxflatxip}/Make.defs | 6 +-
examples/{foc => nxflatxip}/Makefile | 53 +-
examples/nxflatxip/module/.gitignore | 4 +
.../tests/longjmp => nxflatxip/module}/Makefile | 45 +-
examples/nxflatxip/module/xipmod.c | 116 ++
examples/nxflatxip/nxflatxip_main.c | 895 +++++++++
{examples/cpuhog => system/xipfs}/CMakeLists.txt | 18 +-
system/xipfs/Kconfig | 38 +
{examples/adc => system/xipfs}/Make.defs | 6 +-
{boot/nxboot => system/xipfs}/Makefile | 16 +-
system/xipfs/xipfs_main.c | 610 ++++++
.../ajoystick => testing/fs/xipfs}/CMakeLists.txt | 10 +-
testing/fs/xipfs/Kconfig | 38 +
{audioutils/lame => testing/fs/xipfs}/Make.defs | 6 +-
{examples/dac => testing/fs/xipfs}/Makefile | 14 +-
testing/fs/xipfs/xipfs_main.c | 2034 ++++++++++++++++++++
19 files changed, 3872 insertions(+), 88 deletions(-)
create mode 100644 examples/nxflatxip/.gitignore
copy {canutils/canlib => examples/nxflatxip}/CMakeLists.txt (75%)
create mode 100644 examples/nxflatxip/Kconfig
copy {audioutils/lame => examples/nxflatxip}/Make.defs (88%)
copy examples/{foc => nxflatxip}/Makefile (62%)
create mode 100644 examples/nxflatxip/module/.gitignore
copy examples/{nxflat/tests/longjmp => nxflatxip/module}/Makefile (55%)
create mode 100644 examples/nxflatxip/module/xipmod.c
create mode 100644 examples/nxflatxip/nxflatxip_main.c
copy {examples/cpuhog => system/xipfs}/CMakeLists.txt (83%)
create mode 100644 system/xipfs/Kconfig
copy {examples/adc => system/xipfs}/Make.defs (90%)
copy {boot/nxboot => system/xipfs}/Makefile (80%)
create mode 100644 system/xipfs/xipfs_main.c
copy {examples/ajoystick => testing/fs/xipfs}/CMakeLists.txt (89%)
create mode 100644 testing/fs/xipfs/Kconfig
copy {audioutils/lame => testing/fs/xipfs}/Make.defs (89%)
copy {examples/dac => testing/fs/xipfs}/Makefile (88%)
create mode 100644 testing/fs/xipfs/xipfs_main.c