Contribute
Register

[Guide] HP ProBook/EliteBook/Zbook using Clover UEFI hotpatch (10.11)

Status
Not open for further replies.
Yeah it was marketed as USB3 compatible had to wait for almost two weeks for it to arrive, will keep on trying n see whether i can get a better

Test on Windows too, to make sure there is not something funky.
 
Test on Windows too, to make sure there is not something funky.
How do i test with Windows? I mean how will i notice the difference when i connect a USB 2 device or a USB 3 device, thanks
 
Reverted to 10.12.3 installed intelbacklight, then in SSDT-HACK. dsl BKLT type i changed to 0 that's using Intelbacklight after that ./build.sh and everything is okay now
what if I don't revert to 10.12.3? BTW Can you explain clearly? I don't understand BKLT meaning :(
 
RehabMan

Would you be willing to modify install_acpi.sh to support some local customizations? I have been using the following change to insure my SSDT for NVMe gets included when I run install_acpi.sh.
index 4a13067..4605e7b 100755
--- a/install_acpi.sh
+++ b/install_acpi.sh
@@ -19,6 +19,10 @@ EFIDIR=`sudo ./mount_efi.sh /`
BUILDDIR=./build

source install_acpi_include.sh
+export CORE;
+if [ -f ~/.acpi_extra.sh ]; then
+ . ~/.acpi_extra.sh
+fi

if [[ "$2" != "" ]]; then
FANPREF=$2
@@ -419,4 +423,3 @@ case "$1" in
echo "Error: Unknown model, \"$1\", specifed."
;;
esac
-
In my ~/.acpi_extra.sh I have the following:
export CORE="${CORE} ${HOME}/Projects/patch-nvme.git/SSDT-NVMe-Pcc.aml"

I am sure there are other/better ways to do this, but this is how I have it working right now.
 
Status
Not open for further replies.
Back
Top