arch-maride-flavour/checks/uefi.check

17 lines
383 B
Plaintext
Raw Normal View History

2017-07-30 20:51:32 +00:00
#!/bin/sh
2017-08-12 14:01:00 +00:00
if [ "$bootloader" == "EFI" ]; then
echo "~> Not an EFI host, not checking for EFI."
amf_return=0
2017-08-12 14:01:00 +00:00
fi
2017-07-30 20:51:32 +00:00
ls /sys/firmware/efi/efivars 2>/tmp/arch-maride-flavour_checks_uefi_error.log 1>/tmp/arch-maride-flavour_checks_uefi_out.log
return=$?
if [ "$return" -eq 0 ]; then
amf_return=0
2017-07-30 20:51:32 +00:00
else
echo "~> This doesn't seem to be an UEFI boot. Please boot UEFI."
amf_return=1
2017-07-30 20:51:32 +00:00
fi