Skip to content

Commit

Permalink
docs: do some renaming work
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenRuiwei committed May 29, 2024
1 parent 1e9a379 commit 296203b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Phoenix

![哈工大深圳](docs/assets/哈工大深圳.jpg)
![哈工大深圳](./docs/assets/hitsz-logo.jpg)

## 项目描述

Expand All @@ -12,7 +12,7 @@ Phoenix 是使用 Rust 编写、基于 RISCV-64 硬件平台、支持多核、

VisionFive 2 赛道,初赛功能测试满分:

![preliminary_contest_result](docs/assets/preliminary_contest_rank.png)
![初赛排行榜](./docs/assets/leaderboard-pre.png)

### Phoenix 内核介绍

Expand All @@ -29,12 +29,13 @@ docs 文件夹下 [README.md](./docs/README.md)
### 项目结构

```
.
├── arch/ # 平台相关的包装函数与启动函数
├── config/ # 配置常量
├── crates/ # 自己编写的功能单一的库
│   ├── async_utils/
│   └── recycle_allocator/
│   ├── async_utils/ # 异步工具
│   └── recycle_allocator/ # ID分配器
├── docs/ # 文档
├── driver/ # 驱动模块
├── kernel/ # 内核
Expand All @@ -50,18 +51,17 @@ docs 文件夹下 [README.md](./docs/README.md)
│   │   ├── impls.rs # 模块接口实现
│   │   ├── link_app.asm
│   │   ├── loader.rs
│   │   ├── main.rs # 入口函数
│   │   ├── main.rs # 主函数
│   │   ├── panic.rs
│   │   └── trampoline.asm
│   │   └── trampoline.asm # 信号跳板代码
│   ├── build.rs
│   ├── Cargo.toml
│   ├── linker.ld
│   ├── linker.ld # 链接脚本
│   └── Makefile
├── modules/ # 内核各个模块
│   ├── executor/ # 异步调度器
│   ├── fat32/ # fat32 文件系统支持
│   ├── futex/ # futex 机制
│   ├── fat32/ # FAT32文件系统支持
│   ├── futex/ # futex机制
│   ├── logging/ # 日志系统
│   ├── memory/ # 基础内存模块
│   ├── signal/ # 基础信号模块
Expand All @@ -72,8 +72,8 @@ docs 文件夹下 [README.md](./docs/README.md)
│   ├── vfs/ # 虚拟文件系统模块
│   └── vfs-core/ # 虚拟文件系统接口
├── testcase/ # 测试用例
├── third-party/
│   └── vendor/
├── third-party/ # 第三方库
│   └── vendor/ # Rust库缓存
├── user/ # 用户程序
├── Cargo.lock
├── Cargo.toml
Expand Down
File renamed without changes
File renamed without changes

0 comments on commit 296203b

Please sign in to comment.