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.git
from 5a7f1b5005a drivers/syslog: fix syslog_write() returning -EIO on every
write
new e0cc0244c50 fs/xipfs: Add a contiguous execute-in-place file system.
new a104fb80479 fs/mount: Name xipfs in statfs and fs_gettype.
new ba826dd7380 boards/rp23xx: Mount xipfs on the flash MTD device.
new d3c25e77546 boards/sim: Add a xipfs configuration.
new 385b945ea91 boards/mps2: Mount xipfs on a RAM MTD device.
new b7eabe73a00 Documentation/xipfs: Document the execute-in-place file
system.
new 5dba9d3f5be boards/rp23xx: Add a xipfs configuration and name the
NXFLAT tools.
new 1f3358e991b Documentation: Document the xipfs command, test suite and
NXFLAT demo.
new df107380ade boards/rp23xx: Split the xipfs configuration into xipfs
and xipfs-nxflat.
new a9e4af4f0d4 Documentation: Describe the pimoroni-pico-2-plus xipfs
configurations.
The 10 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:
.../applications/examples/nxflatxip/index.rst | 87 +
Documentation/applications/system/xipfs/index.rst | 68 +
Documentation/applications/testing/xipfs/index.rst | 98 +
Documentation/components/filesystem/index.rst | 3 +-
Documentation/components/filesystem/xipfs.rst | 272 +++
Documentation/components/nxflat.rst | 18 +-
.../rp23xx/boards/pimoroni-pico-2-plus/index.rst | 13 +
.../mps2-an500/configs/{nsh => xipfs}/defconfig | 12 +-
boards/arm/mps/mps2-an500/src/mps2_bringup.c | 58 +
.../mps2-an521/configs/{nsh => xipfs}/defconfig | 12 +-
boards/arm/mps/mps2-an521/src/mps2_bringup.c | 58 +
.../arm/rp23xx/common/src/rp23xx_common_bringup.c | 12 +
.../configs/{nsh => xipfs-nxflat}/defconfig | 14 +-
.../configs/{nsh => xipfs}/defconfig | 12 +-
.../rp23xx/pimoroni-pico-2-plus/scripts/Make.defs | 3 +
.../rp23xx/raspberrypi-pico-2/scripts/Make.defs | 3 +
boards/arm/rp23xx/xiao-rp2350/scripts/Make.defs | 3 +
.../sim/sim/configs/{btuart => xipfs}/defconfig | 21 +-
boards/sim/sim/sim/src/sim_bringup.c | 16 +
fs/Kconfig | 1 +
fs/Makefile | 1 +
fs/mount/fs_gettype.c | 6 +
fs/mount/fs_mount.c | 9 +-
.../lpc43xx/spifi/src => fs/xipfs}/CMakeLists.txt | 7 +-
fs/xipfs/Kconfig | 42 +
{drivers/efuse => fs/xipfs}/Make.defs | 19 +-
fs/xipfs/xipfs.h | 392 ++++
fs/xipfs/xipfs_alloc.c | 272 +++
fs/xipfs/xipfs_defrag.c | 468 +++++
fs/xipfs/xipfs_flash.c | 455 +++++
fs/xipfs/xipfs_meta.c | 873 +++++++++
fs/xipfs/xipfs_mmap.c | 253 +++
fs/xipfs/xipfs_vfs.c | 1893 ++++++++++++++++++++
include/nuttx/fs/ioctl.h | 31 +
include/nuttx/fs/xipfs.h | 168 ++
include/sys/mman.h | 10 +
include/sys/statfs.h | 1 +
tools/ci/testlist/arm-06.dat | 2 +
38 files changed, 5644 insertions(+), 42 deletions(-)
create mode 100644 Documentation/applications/examples/nxflatxip/index.rst
create mode 100644 Documentation/applications/system/xipfs/index.rst
create mode 100644 Documentation/applications/testing/xipfs/index.rst
create mode 100644 Documentation/components/filesystem/xipfs.rst
copy boards/arm/mps/mps2-an500/configs/{nsh => xipfs}/defconfig (90%)
copy boards/arm/mps/mps2-an521/configs/{nsh => xipfs}/defconfig (89%)
copy boards/arm/rp23xx/pimoroni-pico-2-plus/configs/{nsh =>
xipfs-nxflat}/defconfig (83%)
copy boards/arm/rp23xx/pimoroni-pico-2-plus/configs/{nsh => xipfs}/defconfig
(86%)
copy boards/sim/sim/sim/configs/{btuart => xipfs}/defconfig (67%)
copy {arch/arm/src/lpc43xx/spifi/src => fs/xipfs}/CMakeLists.txt (84%)
create mode 100644 fs/xipfs/Kconfig
copy {drivers/efuse => fs/xipfs}/Make.defs (76%)
create mode 100644 fs/xipfs/xipfs.h
create mode 100644 fs/xipfs/xipfs_alloc.c
create mode 100644 fs/xipfs/xipfs_defrag.c
create mode 100644 fs/xipfs/xipfs_flash.c
create mode 100644 fs/xipfs/xipfs_meta.c
create mode 100644 fs/xipfs/xipfs_mmap.c
create mode 100644 fs/xipfs/xipfs_vfs.c
create mode 100644 include/nuttx/fs/xipfs.h