bump: 202510
This commit is contained in:
parent
fa579eba0b
commit
b0add9b2cd
20 changed files with 75 additions and 98 deletions
11
install.sh
11
install.sh
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue