Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TianhuaTao/uCore-SMP
A Symmetric Multiprocessing OS Kernel over RISC-V
https://github.com/TianhuaTao/uCore-SMP
Last synced: 3 days ago
JSON representation
A Symmetric Multiprocessing OS Kernel over RISC-V
- Host: GitHub
- URL: https://github.com/TianhuaTao/uCore-SMP
- Owner: TianhuaTao
- License: mit
- Created: 2021-03-29T14:02:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-03T10:55:06.000Z (over 2 years ago)
- Last Synced: 2024-08-02T07:01:58.362Z (3 months ago)
- Language: C
- Size: 6.6 MB
- Stars: 27
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uCore-SMP
A Symmetric Multiprocessing OS Kernel over RISC-V## Usage
Compile:
```shell
git clone https://github.com/TianhuaTao/uCore-SMP.git
cd uCore-SMP# make user programs (e.g. shell)
make user# make kernel
make
```Run with QEMU:
```shell
make run
```Build doc:
```shell
make doc
```## Documentation
You can always build doc from source with `make doc`.
Also you can checkout:
[Online version](http://taotianhua.com/ucore-smp/doc)
[PDF version](http://taotianhua.com/ucore-smp/ucore-smp.pdf)
## Available Branches
- main: Fully functional OS.
- ch3-smp: Batch Processing OS + Time Sharing + SMP.
- ch4-smp: Batch Processing OS + Time Sharing + Virtual Memory + SMP.
- ch5-smp: Batch Processing OS + Time Sharing + Virtual Memory + Process Management + SMP.
- ch6-smp: Batch Processing OS + Time Sharing + Virtual Memory + Process Management + Pipe(Mail) + SMP.
- label-riscv: A experimental branch trying to run uCore-SMP on a specialized FPGA with data labeling.