xref: /DragonStub/README.md (revision 5c0de15d4340616a8f0cd6c9ec9776e1153d7fae)
1# DragonStub
2
3A generic standalone EFI stub for DragonOS kernel, which based on the Linux EFI stub.
4
5## Requirements
6
7To build the stub, you need to have the following packages installed:
8
9```bash
10sudo apt install -y gcc-riscv64-linux-gnu
11```
12
13## Building
14
15```bash
16ARCH=riscv64 make -j $(nproc)
17```
18
19## Run
20
21```bash
22make run
23```
24
25## Maintainer
26
27- longjin <longjin@dragonos.org>
28
29## License
30
31DragonStub is licensed under the GPLv2 License. See [LICENSE](LICENSE) for details.
32
33## References
34
35- GNU-EFI: DragonStub built with gnu-efi
36- Linux-EFIStub: In Linux kernel source tree: firmware/efi/libstub
37