A custom OS for the xteink x4 ebook reader
1// plump-kernel -- hardware drivers, scheduling, and system core
2//
3// generic over AppLayer; never imports concrete apps or fonts
4// ships a built-in mono font (FONT_9X18) for boot console and
5// sleep screen; distros bring their own proportional fonts
6
7#![no_std]
8
9extern crate alloc;
10
11pub mod board;
12pub mod drivers;
13pub mod error;
14pub mod kernel;
15pub mod perf;
16pub mod ui;
17pub mod util;
18
19// re-export core error types at crate root
20pub use error::{Error, ErrorKind, Result, ResultExt};