@ BIOS ...
Fast Boot : if enabled grub only boots to /dev/sda1
PS2 Keyboard power on : cannot be actually be disabled
. enabled : fails to resume properly
. disabled : works as if enabled... lol... :)
Disable HDMI Audio : to make the sound card the default audio output.
Fails to enable the mouse on resume : choose a permanent usb (ohci) port for the mouse and add the following text to a new file (check that your device id is correct in the `echo' bellow)... make the file executable.
#!/bin/sh
#
# @ "/etc/pm/sleep.d/20_custom-ohci_pci".
case "${1}" in
hibernate|suspend)
# Unbind ohci device
echo '0000:00:13.0' > /sys/bus/pci/drivers/ohci-pci/unbind
;;
resume|thaw)
# Bind ohci device
echo '0000:00:13.0' > /sys/bus/pci/drivers/ohci-pci/bind
;;
esac
... and now the board works just fine as expected... :)