bump: 202510

This commit is contained in:
ange 2025-10-03 10:10:06 +00:00
parent fa579eba0b
commit b0add9b2cd
Signed by: ange
GPG key ID: 9E0C4157BB7BEB1D
20 changed files with 75 additions and 98 deletions

View file

@ -1,7 +1,14 @@
#!/bin/bash
echo 'If you want Secure Boot support, you need to put your system in Setup Mode'
read -r
if ! sbctl status | grep -q '^Setup Mode:.*Enabled$'; then
printf '%s\n' \
'If you want Secure Boot support, you need to put your system in Setup Mode' \
'See https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot'
read -rp "Reboot into the firmware setup interface? [Y/n] " ANS
if ! [[ "${ANS,}" =~ ^$|^y ]]; then
systemctl reboot --firmware-setup
fi
fi
exec &> >(tee logs.out)