This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from 5ed85ef  tools: Adapt Zephyr/zephyr to Nuttx/nuttx
     new 985cc4f  hosfs_rpmsg: merge hostfs_rpmsg to rpmsgfs
     new 4dfefb4  boards/sim: update sim for 'merge hostfs_rpmsg to rpmsgfs'

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:
 boards/sim/sim/sim/README.txt                  |  19 +-
 boards/sim/sim/sim/configs/rpproxy/defconfig   |   3 +-
 boards/sim/sim/sim/configs/rpserver/defconfig  |   2 +-
 boards/sim/sim/sim/src/sim_bringup.c           |  10 +-
 fs/Kconfig                                     |   1 +
 fs/Makefile                                    |   1 +
 fs/hostfs/Kconfig                              |  20 -
 fs/hostfs/Make.defs                            |   8 -
 fs/hostfs/hostfs_rpmsg.c                       | 775 ----------------------
 fs/hostfs/hostfs_rpmsg.h                       | 203 ------
 fs/hostfs/hostfs_rpmsg_server.c                | 883 -------------------------
 fs/mount/fs_gettype.c                          |   6 +
 fs/mount/fs_mount.c                            |   6 +
 fs/rpmsgfs/Kconfig                             |  12 +
 {drivers/efuse => fs/rpmsgfs}/Make.defs        |  15 +-
 fs/{hostfs/hostfs.c => rpmsgfs/rpmsgfs.c}      | 657 +++++++++---------
 fs/rpmsgfs/rpmsgfs.h                           | 246 +++++++
 fs/rpmsgfs/rpmsgfs_client.c                    | 819 +++++++++++++++++++++++
 fs/rpmsgfs/rpmsgfs_server.c                    | 883 +++++++++++++++++++++++++
 include/nuttx/fs/dirent.h                      |  14 +
 include/nuttx/fs/{hostfs_rpmsg.h => rpmsgfs.h} |  10 +-
 include/sys/statfs.h                           |   1 +
 22 files changed, 2358 insertions(+), 2236 deletions(-)
 delete mode 100644 fs/hostfs/hostfs_rpmsg.c
 delete mode 100644 fs/hostfs/hostfs_rpmsg.h
 delete mode 100644 fs/hostfs/hostfs_rpmsg_server.c
 create mode 100644 fs/rpmsgfs/Kconfig
 copy {drivers/efuse => fs/rpmsgfs}/Make.defs (83%)
 copy fs/{hostfs/hostfs.c => rpmsgfs/rpmsgfs.c} (63%)
 create mode 100644 fs/rpmsgfs/rpmsgfs.h
 create mode 100644 fs/rpmsgfs/rpmsgfs_client.c
 create mode 100644 fs/rpmsgfs/rpmsgfs_server.c
 rename include/nuttx/fs/{hostfs_rpmsg.h => rpmsgfs.h} (87%)

Reply via email to