Hi everyone,
Just wanted to share a quick tip for anyone running into this issue on FreeBSD 14.3, especially on Gigabyte GA-970A-DS3P motherboards..
Problem:
When running FreeBSD 14.3 in UEFI mode, poweroff (or shutdown -p now) would stop the OS, turn off USB ports, but the CPU and fans would keep spinning — the system never actually powered down.
Solution:
I found that disabling EFI poweroff fixes the issue.
Add the following line to /boot/loader.conf:
Test:
This might help others who see FreeBSD "hang" with fans still running after shutdown. It seems some UEFI firmwares do not handle EFI_RESET_SHUTDOWN properly, but using the ACPI S5 path (hw.efi.poweroff=0) works fine.
Just wanted to share a quick tip for anyone running into this issue on FreeBSD 14.3, especially on Gigabyte GA-970A-DS3P motherboards..
Problem:
When running FreeBSD 14.3 in UEFI mode, poweroff (or shutdown -p now) would stop the OS, turn off USB ports, but the CPU and fans would keep spinning — the system never actually powered down.
Solution:
I found that disabling EFI poweroff fixes the issue.
Add the following line to /boot/loader.conf:
Code:
hw.efi.poweroff="0"
Test:
# sysctl hw.efi.poweroff=0
# poweroffThis might help others who see FreeBSD "hang" with fans still running after shutdown. It seems some UEFI firmwares do not handle EFI_RESET_SHUTDOWN properly, but using the ACPI S5 path (hw.efi.poweroff=0) works fine.