Crates.io | fbspinner |
lib.rs | fbspinner |
version | 0.1.0 |
source | src |
created_at | 2018-10-15 11:37:50.611798 |
updated_at | 2018-10-15 11:37:50.611798 |
description | Show a spinner on the framebuffer during system boot |
homepage | |
repository | https://github.com/Mortal/fbspinner |
max_upload_size | |
id | 90298 |
size | 100,551 |
Show a spinner on the framebuffer during system boot.
When combined with a silent boot, the resulting boot experience mimics that of another popular desktop OS.
Since fbspinner is written in Rust, you need to install Rust and Cargo.
Your kernel should be compiled with CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
to retain the vendor logo during kernel boot.
Check this with zgrep FRAMEBUFFER_CONSOLE /proc/config.gz
.
Note that the config option was added recently in Linux 4.19 (released on October 21, 2018);
if your kernel is out of date or does not have this option, you should consider compiling a kernel with the option.
Build fbspinner with cargo build --release
sudo cp target/release/fbspinner /usr/local/bin/
sudo mkdir -p /usr/local/share/fbspinner && sudo cp share/* /usr/local/share/fbspinner/
sudo cp systemd/*.service /etc/systemd/system && sudo systemctl daemon-reload
sudo systemctl enable fbspinner
Append to your kernel command line: quiet loglevel=3 rd.udev.log_priority=3 rd.systemd.show_status=false systemd.show_status=false splash
If you use Intel graphics, also append i915.fastboot=1
.
Reboot!