Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/georglauterbach/uncore
Modern operating system kernel completely written in pure, idiomatic Rust.
https://github.com/georglauterbach/uncore
documentation education kernel operating-system operating-system-kernel rust rust-lang
Last synced: 2 days ago
JSON representation
Modern operating system kernel completely written in pure, idiomatic Rust.
- Host: GitHub
- URL: https://github.com/georglauterbach/uncore
- Owner: georglauterbach
- License: other
- Created: 2020-11-22T21:14:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T20:55:36.000Z (2 months ago)
- Last Synced: 2024-08-28T22:12:31.025Z (2 months ago)
- Topics: documentation, education, kernel, operating-system, operating-system-kernel, rust, rust-lang
- Language: Rust
- Homepage: https://georglauterbach.github.io/uncore/
- Size: 780 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# unCORE
[![Code Tests][badge::ci::code-tests]][badge::ci::code-tests::link]
[![Linting][badge::ci::linting]][badge::ci::linting::link]
[![Security Audit][badge::ci::security]][badge::ci::security::link]## :page_with_curl: About
This project is
- an educational, modern [**operating system kernel**][www::wiki::operating-system-kernel]
- completely written in pure, idiomatic [**Rust**][www::homepage::rust] (and assembly where required),
- licensed under the [**GNU Public License v3 or later**][www::homepage::gpl-v3-license], except for those parts (lines of code from libraries used in this project) already licensed under other licenses,
- **documented** in its entirety: the code via [Doc comments][www::docs::rustdoc], the rest via [Markdown and GitHub Pages][docs::main-landing-page].## :bulb: Getting Started
The [documentation][docs::main-landing-page] is hosted on [GitHub Pages][docs::github-pages]; it contains instructions on how to get started. If you want to serve the documentation locally, you can run the following command from the repository root:
```bash
docker run --rm -it -v ./documentation:/docs -p 8080:8080 docker.io/squidfunk/mkdocs-material:9.5.4 serve --dev-addr 0.0.0.0:8080
```[//]: # (Badges)
[badge::ci::code-tests]: https://github.com/georglauterbach/uncore/actions/workflows/code_tests_and_checks.yml/badge.svg?branch=master
[badge::ci::code-tests::link]: https://github.com/georglauterbach/uncore/actions/workflows/code_tests_and_checks.yml[badge::ci::linting]: https://github.com/georglauterbach/uncore/actions/workflows/code_linting.yml/badge.svg?branch=master
[badge::ci::linting::link]: https://github.com/georglauterbach/uncore/actions/workflows/code_linting.yml[badge::ci::security]: https://github.com/georglauterbach/uncore/actions/workflows/code_security.yml/badge.svg
[badge::ci::security::link]: https://github.com/georglauterbach/uncore/actions/workflows/code_security.yml[//]: # (Links)
[www::wiki::operating-system-kernel]: https://en.wikipedia.org/wiki/Kernel_(operating_system)
[www::homepage::rust]: https://www.rust-lang.org/
[www::homepage::gpl-v3-license]: https://opensource.org/license/gpl-3-0/
[www::docs::rustdoc]: https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html
[docs::main-landing-page]: https://georglauterbach.github.io/uncore/
[docs::github-pages]: https://pages.github.com/