feat: custom grub bootloader - bee branding, 5s auto-boot, no splash

This commit is contained in:
Mikhail Chusavitin
2026-03-08 20:35:23 +03:00
parent 2252c5af56
commit 83e1910281
4 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
source /boot/grub/config.cfg
menuentry "Bee Hardware Audit" {
linux @KERNEL_LIVE@ @APPEND_LIVE@
initrd @INITRD_LIVE@
}
menuentry "Bee Hardware Audit (fail-safe)" {
linux @KERNEL_LIVE@ @APPEND_LIVE@ memtest noapic noapm nodma nomce nolapic nosmp vga=normal
initrd @INITRD_LIVE@
}
if [ "${grub_platform}" = "efi" ]; then
menuentry "UEFI Firmware Settings" {
fwsetup
}
fi