Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkinos/kinos
A microkernel-like operating system based on MikanOS
https://github.com/kkinos/kinos
microkernel operating-system uefi x86-64
Last synced: about 2 months ago
JSON representation
A microkernel-like operating system based on MikanOS
- Host: GitHub
- URL: https://github.com/kkinos/kinos
- Owner: kkinos
- License: apache-2.0
- Created: 2021-05-30T18:23:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-13T13:38:29.000Z (over 2 years ago)
- Last Synced: 2024-02-18T00:23:30.368Z (12 months ago)
- Topics: microkernel, operating-system, uefi, x86-64
- Language: C++
- Homepage: https://kinpokoblog.com/posts/read-zero-os-dev/
- Size: 4.16 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kinOS
kinOS is a microkernel-like operating system based on [MikanOS](https://github.com/uchan-nos/mikanos).
![screenshot](screenshot.png)
## Build
The tools required for building are the same as for [MikanOS](https://github.com/uchan-nos/mikanos)
### Clone EDK2
In `tools/`
```bash
git clone https://github.com/tianocore/edk2.git
```### Setting
In `edk2/`
```bash
git submodule update --init
``````bash
make -C BaseTools/Source/C
``````bash
source edksetup.sh
```### Edit Conf/target.txt
| item | value |
| --------------- | ----------------------------- |
| ACTIVE_PLATFORM | kinLoaderPkg/kinLoaderPkg.dsc |
| TARGET | DEBUG |
| TARGET_ARCH | X64 |
| TOOL_CHAIN_TAG | CLANG38 |### Make a symbolic link
In `edk2/`
```bash
ln -s ../../kinLoaderPkg ./```
### Build and run
```bash
make
```