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 ee17ae5 tool: add code coverage tool
new aaf1a5e fs/partition: support parse mbr partition
new b5b00c6 fs/partition: support parse gpt partition
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:
fs/partition/Kconfig | 8 +
fs/partition/Make.defs | 8 +
fs/partition/fs_gpt.c | 482 ++++++++++++++++++++++++++++++++++++++++++++
fs/partition/fs_mbr.c | 214 ++++++++++++++++++++
fs/partition/fs_partition.c | 9 +
fs/partition/partition.h | 12 ++
6 files changed, 733 insertions(+)
create mode 100644 fs/partition/fs_gpt.c
create mode 100644 fs/partition/fs_mbr.c