telepati Posted February 27, 2020 Share Posted February 27, 2020 Guys, I don't get it what is this "#" sign doing exactly? Explanation this; Fixed drivers starting with # not being skipped But what does exactly mean? Cause when we compile AppSupportPkg. AudioDxe.efi coming without the "#" sign. But now the default sample.plist adding efi with "#AudioDxe.efi" If I do not add "#" to AudioDxe.efi will not work or with and without work? Link to comment Share on other sites More sharing options...
Matgen84 Posted February 27, 2020 Share Posted February 27, 2020 14 minutes ago, telepati said: Guys, I don't get it what is this "#" sign doing exactly? Explanation this; Fixed drivers starting with # not being skipped But what does exactly mean? Cause when we compile AppSupportPkg. AudioDxe.efi coming without the "#" sign. But now the default sample.plist adding efi with "#AudioDxe.efi" If I do not add "#" to AudioDxe.efi will not work or with and without work? Just a opinion, take a look at commit lines: # = commented = skip. 1 Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 27, 2020 Share Posted February 27, 2020 (edited) @vit9696 I can't boot with latest commit of OpenCore. i got this message with latest commit of OpenCorePkg (boot in verbose). Edited February 27, 2020 by Andres ZeroCross Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 27, 2020 Share Posted February 27, 2020 Solved with this commit https://github.com/acidanthera/OcSupportPkg/commit/479a3dd65986230686c329a768ae078498fd2744 Thanks 1 Link to comment Share on other sites More sharing options...
telepati Posted February 27, 2020 Share Posted February 27, 2020 macbuild.tool fatal error; how can I fix that? 1 Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 27, 2020 Share Posted February 27, 2020 8 minutes ago, telepati said: macbuild.tool fatal error; how can I fix that? Delete your OpenCorePkg or AppleSupportPkg, then git clone again and try it again 1 Link to comment Share on other sites More sharing options...
stehor Posted February 27, 2020 Share Posted February 27, 2020 (edited) https://github.com/Pavo-IM/ocbuilder/releases latest build works fine.z390-EFI.zip Edited February 27, 2020 by stehor added data 1 Link to comment Share on other sites More sharing options...
milekekin Posted February 28, 2020 Share Posted February 28, 2020 Asus Z77 Gene V + 3770k - problem with PM and SSDT Hi guys, I'm having some issues with PM I guess. When I'm using NullCPUPowerManagement.kext my CPU is working at 3.5-3.6GHz max.. so no proper turbo boots and also when in IDLE it's constantly 2+GHz... but at least everything else works fine. No freeze or crashing. My MBO Bios is patched with UEFIPatch... Using latest OpenCore (EFI folder attached).. I have generated SSDT.aml file with ssdtprgen.sh and it's added to config and proper folder. After I disable NullCPUPowerManagement it boots properly and checking with Intel Power Gadget Max frequency is 3.9GHz, IDLE 1.6GHz and everything seems fine.. but after 1min or so everything just freeze... Do I have to apply some patch? Really not sure why I'm getting that complete freeze each time I disable NullCPUPowerManagement and enable generated SSDT.aml.. Thank you for your help and suggestions! EFI.zip Link to comment Share on other sites More sharing options...
mikorist Posted February 28, 2020 Share Posted February 28, 2020 On 2/27/2020 at 3:54 PM, mikorist said: Maybe someone can fix it. Thanks for help. I made it. Thanks to everyone for the explanations backwards. I just haven't figured out how to have battery percentage. G50-70-EFI.zip Link to comment Share on other sites More sharing options...
MacNB Posted February 28, 2020 Share Posted February 28, 2020 40 minutes ago, milekekin said: Asus Z77 Gene V + 3770k - problem with PM and SSDT Hi guys, I'm having some issues with PM I guess. When I'm using NullCPUPowerManagement.kext my CPU is working at 3.5-3.6GHz max.. so no proper turbo boots and also when in IDLE it's constantly 2+GHz... but at least everything else works fine. No freeze or crashing. My MBO Bios is patched with UEFIPatch... Using latest OpenCore (EFI folder attached).. I have generated SSDT.aml file with ssdtprgen.sh and it's added to config and proper folder. After I disable NullCPUPowerManagement it boots properly and checking with Intel Power Gadget Max frequency is 3.9GHz, IDLE 1.6GHz and everything seems fine.. but after 1min or so everything just freeze... Do I have to apply some patch? Really not sure why I'm getting that complete freeze each time I disable NullCPUPowerManagement and enable generated SSDT.aml.. Thank you for your help and suggestions! EFI.zip What do you mean by "My MBO Bios is patched with UEFIPatch..." ? To get CPU PM, you do not use NullCPUPowerManagement.kext - that kext was an old trick to disable AppleIntelCPUPowerManagement.kext which helped to stop panicking when it could not write to CPU MSR's because many BIOS did not enable it. In OpenCore, to disable AppleIntelCPUPowerManagement.kext, set kernel->quirks->DummyPowerManagement=true. BUT, instead, try this: Kernel->Quirks->AppleCpuPmCfgLock = true You do you really need the FOUR LAPIC Kernel patches ? If you really want to do that, set Kernel->Quirks->LapicKernelPanic=true You have set Kernel->Quirks->AppleXcpmCfgLock=true. This will not do anything on Ivy Bridge without enabling XCPM CPU Power management (which is not documented). Read the Configuration.pdf document for the above. Link to comment Share on other sites More sharing options...
milekekin Posted February 29, 2020 Share Posted February 29, 2020 I managed to fix my problem by regenerating SSDT with -c 3 -x 0 ... and also enabling HPET in bios.. not sure how that's related, but no more freezes... NullCPUPowerManagement is now completely removed and boost is working fine. Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 29, 2020 Share Posted February 29, 2020 @vit9696 doc for Audio Feature is documented in OC and i tried to follow it. I got this message with debug version and i only get "single short beep" audio in builtin picker. Or it's by designed?? Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 29, 2020 Share Posted February 29, 2020 My mistake, i didn't copy audio sampel yet. Will report soon Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 29, 2020 Share Posted February 29, 2020 OpenCore latest Commit with External GUI + Audio (Boot Chime and VoiceAssistant) IMG_4096.MOV 3 Link to comment Share on other sites More sharing options...
HmO Posted February 29, 2020 Share Posted February 29, 2020 47 minutes ago, Andres ZeroCross said: OpenCore latest Commit with External GUI + Audio (Boot Chime and VoiceAssistant) IMG_4096.MOV NEW OpenCore include fog effects, AMAZING 1 Link to comment Share on other sites More sharing options...
mhaeuser Posted February 29, 2020 Share Posted February 29, 2020 1 hour ago, Andres ZeroCross said: OpenCore latest Commit with External GUI + Audio (Boot Chime and VoiceAssistant) IMG_4096.MOV @n.d.k Your GUI seems to not handle entry hiding properly with VoiceOver (it takes 3 for 4, etc) 1 Link to comment Share on other sites More sharing options...
btwise Posted February 29, 2020 Share Posted February 29, 2020 (edited) After updating to the latest version, I want to experience the sound effect of the boot interface, but I found that it could not play. After getting the log, I found that the prompt was not supported. I wonder if this is my sound card model not supported? Is this my sound card not supported? My sound card is Conexant CX20724! Edited February 29, 2020 by btwise Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 29, 2020 Share Posted February 29, 2020 (edited) 55 minutes ago, btwise said: After updating to the latest version, I want to experience the sound effect of the boot interface, but I found that it could not play. After getting the log, I found that the prompt was not supported. I wonder if this is my sound card model not supported? Is this my sound card not supported? My sound card is Conexant CX20724! I don't know,, change zh-Hans:25 to en:252 for prev-lang:kbd maybe Edited February 29, 2020 by Andres ZeroCross Link to comment Share on other sites More sharing options...
Mike Ranger Posted February 29, 2020 Share Posted February 29, 2020 Hi Trying to get the Chime sound..... this is what I get 03:565 00:010 OCAU: System volume is 32 (calculated from 32) - Success 03:576 00:010 OCAU: Matching PciRoot(0x0)/Pci(0x3,0x2)/Pci(0x0,0x0)/Pci(0x0,0x0)/Pci(0x0,0x1)/VenMsg(A9003FEB-D806-41DB-A491-5405FEEF46C3,01000000)... 03:586 00:010 HdaCodecAudioIoGetOutputs(): start 03:598 00:012 HdaCodecGetSupportedPcmRates(): start 03:609 00:011 HdaCodecGetOutputDac(): start 03:621 00:012 HdaCodecGetSupportedPcmRates(): start 03:631 00:010 HdaCodecGetOutputDac(): start 03:642 00:010 HdaCodecGetSupportedPcmRates(): start 03:652 00:010 HdaCodecGetOutputDac(): start 03:662 00:010 HdaCodecGetSupportedPcmRates(): start 03:672 00:010 HdaCodecGetOutputDac(): start 03:682 00:010 HdaCodecGetSupportedPcmRates(): start 03:693 00:010 HdaCodecGetOutputDac(): start 03:703 00:010 HdaCodecGetSupportedPcmRates(): start 03:713 00:010 HdaCodecGetOutputDac(): start 03:725 00:012 OCAU: 1/1 PciRoot(0x0)/Pci(0x3,0x2)/Pci(0x0,0x0)/Pci(0x0,0x0)/Pci(0x0,0x1)/VenMsg(A9003FEB-D806-41DB-A491-5405FEEF46C3,00000000) (6 outputs) - Success 03:735 00:010 OCAU: Cannot find specified audio device - Not Found 03:746 00:010 OC: Audio connection failed - Not Found I try to use Audio over HDMI of my Vega56.... not sure what the not found Audio device means. What could I try next? Link to comment Share on other sites More sharing options...
btwise Posted February 29, 2020 Share Posted February 29, 2020 1 hour ago, Andres ZeroCross said: I don't know,, change zh-Hans:25 to en:252 for prev-lang:kbd maybe I think it has nothing to do with language! Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 29, 2020 Share Posted February 29, 2020 (edited) 18 minutes ago, btwise said: I think it has nothing to do with language! Did you really read the doc???? however if Zh language is not found it should be used EN as default language, but it's bug or other. But the fact is, prev-lang:kbd is related to Voice assistant Edited February 29, 2020 by Andres ZeroCross Link to comment Share on other sites More sharing options...
btwise Posted February 29, 2020 Share Posted February 29, 2020 2 minutes ago, Andres ZeroCross said: Did you really read the doc???? however if Zh language is not found it should be used EN as default language, but it's bug or other. But the fact is, prev-lang:kbd is related to Voice assistant I just need the sound "ocefiaudio_voiceover_boot.wav", whose file name has no language attribute! Link to comment Share on other sites More sharing options...
Andres ZeroCross Posted February 29, 2020 Share Posted February 29, 2020 39 minutes ago, Mike Ranger said: Hi Trying to get the Chime sound..... this is what I get 03:565 00:010 OCAU: System volume is 32 (calculated from 32) - Success 03:576 00:010 OCAU: Matching PciRoot(0x0)/Pci(0x3,0x2)/Pci(0x0,0x0)/Pci(0x0,0x0)/Pci(0x0,0x1)/VenMsg(A9003FEB-D806-41DB-A491-5405FEEF46C3,01000000)... 03:586 00:010 HdaCodecAudioIoGetOutputs(): start 03:598 00:012 HdaCodecGetSupportedPcmRates(): start 03:609 00:011 HdaCodecGetOutputDac(): start 03:621 00:012 HdaCodecGetSupportedPcmRates(): start 03:631 00:010 HdaCodecGetOutputDac(): start 03:642 00:010 HdaCodecGetSupportedPcmRates(): start 03:652 00:010 HdaCodecGetOutputDac(): start 03:662 00:010 HdaCodecGetSupportedPcmRates(): start 03:672 00:010 HdaCodecGetOutputDac(): start 03:682 00:010 HdaCodecGetSupportedPcmRates(): start 03:693 00:010 HdaCodecGetOutputDac(): start 03:703 00:010 HdaCodecGetSupportedPcmRates(): start 03:713 00:010 HdaCodecGetOutputDac(): start 03:725 00:012 OCAU: 1/1 PciRoot(0x0)/Pci(0x3,0x2)/Pci(0x0,0x0)/Pci(0x0,0x0)/Pci(0x0,0x1)/VenMsg(A9003FEB-D806-41DB-A491-5405FEEF46C3,00000000) (6 outputs) - Success 03:735 00:010 OCAU: Cannot find specified audio device - Not Found 03:746 00:010 OC: Audio connection failed - Not Found I try to use Audio over HDMI of my Vega56.... not sure what the not found Audio device means. What could I try next? Can you upload your config.plist?? How did you write the AudioDevice properties??? 2 minutes ago, btwise said: I just need the sound "ocefiaudio_voiceover_boot.wav", whose file name has no language attribute! For BootChime is yes (universal), but not for VoiceAssistant (it's depend your prev-lang:kbd) Link to comment Share on other sites More sharing options...
vit9696 Posted February 29, 2020 Share Posted February 29, 2020 @btwise, either your audio card is unsupported, or your AudioOut is not correct, try to bruteforce all the values from 0 to N-1 outputs. @Mike Ranger, you have incorrect AudioCodec. If you look closely, your card has it at address 1, while you have address 0 requested. Link to comment Share on other sites More sharing options...
Andrey1970 Posted February 29, 2020 Share Posted February 29, 2020 1 hour ago, Mike Ranger said: I try to use Audio over HDMI of my Vega56 HDMI not support. 2 hours ago, Andres ZeroCross said: I don't know,, change zh-Hans:25 to en:252 for prev-lang:kbd maybe If there is no specified language, there will be an English automatically. Link to comment Share on other sites More sharing options...
Recommended Posts