Contribute
Register

[Help] Fix Brightness, Audio and USB mapping with OC

Status
Not open for further replies.
Joined
Oct 7, 2016
Messages
268
Motherboard
Broadwell, UEFI
CPU
Core i3-5005U
Graphics
Intel HD 5500 (1366 x 768), AMD Radeon R5 M330 2GB
Mobile Phone
  1. Android
  2. iOS
I want to fix everything with OpenCore as I had fully working laptop with Clover. So please help me out fixing everything.
 

Attachments

  • EFI.zip
    4.5 MB · Views: 52
I want to fix everything with OpenCore as I had fully working laptop with Clover. So please help me out fixing everything.
audio, you can use this:

usb setup guide:
 
how do I disable dGPU in OpenCore?
should I add patched SSDT for disabling dGPU which I used in clover?
 
how do I disable dGPU in OpenCore?
should I add patched SSDT for disabling dGPU which I used in clover?
yes but you also have to add it into your config.plist
 
how do I get these 2 DSDT Patches for OpenCore?
Code:
RTC fix

into device name_hid PNP0B00 code_regex (IO\s\((?:\s*[^,]+,\s*(?:\/\/\s.*)?\s*\n)+\s*)(\dx\d+)(,\s*(?:\/\/\s.*)?\s*\n\s*\)) replace_matched begin %10x02%3 end;

Code:
Fix _WAK Arg0 v2

into method label _WAK code_regex ([\s\S]*) replace_matched
begin
If (LOr(LLess(Arg0,1),LGreater(Arg0,5))) { Store(3,Arg0) }\n
%1
end;

into method label \_WAK code_regex ([\s\S]*) replace_matched
begin
If (LOr(LLess(Arg0,1),LGreater(Arg0,5))) { Store(3,Arg0) }\n
%1
end;
 
Status
Not open for further replies.
Back
Top