Contribute
Register

HP Probook Installer Clover Edition

Yes, but you would have to read the rest of the scripts to understand what it really means. There is some complex patching going on with range comparisons, which is why I did the binary compare. See patch_hda.pl for more info.

I know it will zero codecs between the patched codec and the desired codec. I just run the script manually (download from PBI source), and only see 8419 D411 -> D976 1D11:
9TsvJzm.png
 
I know it will zero codecs between the patched codec and the desired codec. I just run the script manually (download from PBI source), and only see 8419 D411 -> D976 1D11:
9TsvJzm.png

Using bcc9's patch-hda3.0 script, I see more... Not sure now if ProBook Installer is using the correct/latest script... (maybe philip_petev never updated?)

Screen Shot 2014-05-20 at 7.33.53 PM.png
Screen Shot 2014-05-20 at 7.34.20 PM.png

I've always done my own HDA patching... And I try to stay up with bcc9's latest.

I haven't checked for a new bcc9 script in a while... perhaps I should check. Edit: I see new 3.1 script. I'll look at it tomorrow.
 
I just check latest original bcc9's script, and there is no codec maps for IDT 76D9. So the script will just suggest a codec to patch (in RehabMan's case, it's ADI 1984B).

Code:
%codecs_map = (
    'ADI AD2000B' => 'ADI 1984B',    #per hda wizard
    'IDT 7603' => 'ADI 1984',        #per hda wizard
    'IDT 7605' => 'ADI 1984B',        #per hda wizard
    'IDT 7675' => 'ADI 1984',        #per bcc9
    'IDT 76d1' => 'ADI 1984',
    'IDT 76e0' => 'ADI 1984B',
    'Realtek ALC269' => 'ADI 1984',
    'Realtek ALC270' => 'ADI 1984',    #per mirone23
    'Realtek ALC272' => 'ADI 1984',    #per mirone23
    'Realtek ALC662' => 'ALC 885',    #per hda wizard
    'Realtek ALC882' => 'ALC 885',    #per hda wizard
    'Realtek ALC883' => 'ALC 885',    #per hda wizard
    'Realtek ALC887' => 'ADI 1984B',    #per mirone23
    'Realtek ALC888' => 'ALC 885',    #per hda wizard
#ADI 1984 is Slice's version
#Timewalker75a says this allows for working audio inputs
#alc885 however avoids some sound assertion errors
    'Realtek ALC889' => ['ALC 885', 'ADI 1984'],
#For gigabyte alc892 motherboards: adi 1984b
# http://www.insanelymac.com/forum/topic/284004-script-to-patch-applehda-binary-for-osx107108/?p=1888843
    'Realtek ALC892' => ['ALC 885', 'ADI 1984B'],
#Works with gigabyte z77mx-d3h, per bcc9
    'VIA VT2021'  => 'ADI 1984',
    );
 
I just check latest original bcc9's script, and there is no codec maps for IDT 76D9. So the script will just suggest a codec to patch (in RehabMan's case, it's ADI 1984B).

Code:
%codecs_map = (
    'ADI AD2000B' => 'ADI 1984B',    #per hda wizard
    'IDT 7603' => 'ADI 1984',        #per hda wizard
    'IDT 7605' => 'ADI 1984B',        #per hda wizard
    'IDT 7675' => 'ADI 1984',        #per bcc9
    'IDT 76d1' => 'ADI 1984',
    'IDT 76e0' => 'ADI 1984B',
    'Realtek ALC269' => 'ADI 1984',
    'Realtek ALC270' => 'ADI 1984',    #per mirone23
    'Realtek ALC272' => 'ADI 1984',    #per mirone23
    'Realtek ALC662' => 'ALC 885',    #per hda wizard
    'Realtek ALC882' => 'ALC 885',    #per hda wizard
    'Realtek ALC883' => 'ALC 885',    #per hda wizard
    'Realtek ALC887' => 'ADI 1984B',    #per mirone23
    'Realtek ALC888' => 'ALC 885',    #per hda wizard
#ADI 1984 is Slice's version
#Timewalker75a says this allows for working audio inputs
#alc885 however avoids some sound assertion errors
    'Realtek ALC889' => ['ALC 885', 'ADI 1984'],
#For gigabyte alc892 motherboards: adi 1984b
# http://www.insanelymac.com/forum/topic/284004-script-to-patch-applehda-binary-for-osx107108/?p=1888843
    'Realtek ALC892' => ['ALC 885', 'ADI 1984B'],
#Works with gigabyte z77mx-d3h, per bcc9
    'VIA VT2021'  => 'ADI 1984',
    );

Script needs modifications for the IDT codecs...

I keep meaning to send the mods to bcc9... And yes, it is 1984b
 
Hi there :)

I have Mavericks installed with the old clover guide, now that Clover has his own installer. Can we update kext, repatch DSDT, generate SSDT etc.. with PBI Clover Edition ?
 
Hi there :)

I have Mavericks installed with the old clover guide, now that Clover has his own installer. Can we update kext, repatch DSDT, generate SSDT etc.. with PBI Clover Edition ?

Just follow first post, and you're fine.
 
Back
Top