:doc: 新增了文件系统的文档框架(待填充)

This commit is contained in:
longjin 2022-06-28 23:53:50 +08:00
parent 9eb9d759e6
commit 6a2ed3c4ee
6 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1 @@
# FAT32文件系统

View File

@ -0,0 +1,12 @@
具体文件系统
====================================
具体文件系统实现了VFS中所规定的接口并挂载到VFS之中。
.. toctree::
:maxdepth: 1
:caption: 目录
fat32

View File

@ -0,0 +1,11 @@
文件系统
====================================
DragonOS的文件系统模块由VFS虚拟文件系统及具体的文件系统组成。
.. toctree::
:maxdepth: 1
:caption: 目录
vfs/overview
fs/index

View File

@ -0,0 +1 @@
# VFS API文档

View File

@ -0,0 +1,12 @@
VFS虚拟文件系统
====================================
在DragonOS中VFS作为适配器遮住了具体文件系统之间的差异对外提供统一的文件操作接口抽象。
.. toctree::
:maxdepth: 1
:caption: 目录
api

View File

@ -6,3 +6,4 @@
:caption: 目录
bootloader/index
filesystem/index