unfettered-keyboard/src/stdio/mod.rs
Richard Acayan c92b571c16 add evfbo (evdev + fbdev + stdout) backend
During a normal boot in the postmarketOS initramfs, the TTY is not
easily accessible. The on-screen keyboard is expected to send the
password to stdout instead of to a uinput device. Add the evfbo backend
to support full-disk encryption.
2025-07-21 19:25:35 -04:00

8 lines
152 B
Rust

// SPDX-License-Identifier: GPL-3.0-only
/*
* Copyright (c) 2025, Richard Acayan. All rights reserved.
*/
mod output;
pub use self::output::Output;