├── .DS_Store
├── .gitignore
├── EFI
    ├── .DS_Store
    └── OC
    │   ├── ACPI
    │       ├── DSDT.aml
    │       ├── SSDT-ALS0.aml
    │       ├── SSDT-EC.aml
    │       └── SSDT-PM.aml
    │   ├── Bootstrap
    │       └── Bootstrap.efi
    │   ├── Drivers
    │       ├── AudioDxe.efi
    │       ├── HfsPlus.efi
    │       ├── OpenCanopy.efi
    │       └── OpenRuntime.efi
    │   ├── Kexts
    │       ├── AirportBrcmFixup.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── AirportBrcmFixup
    │       │   │   └── PlugIns
    │       │   │       ├── AirPortBrcm4360_Injector.kext
    │       │   │           └── Contents
    │       │   │           │   └── Info.plist
    │       │   │       └── AirPortBrcmNIC_Injector.kext
    │       │   │           └── Contents
    │       │   │               └── Info.plist
    │       ├── AppleALC.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   └── MacOS
    │       │   │       └── AppleALC
    │       ├── BrcmBluetoothInjector.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── BrcmBluetoothInjector
    │       │   │   └── _CodeSignature
    │       │   │       └── CodeResources
    │       ├── BrcmFirmwareData.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── BrcmFirmwareData
    │       │   │   └── _CodeSignature
    │       │   │       └── CodeResources
    │       ├── BrcmPatchRAM3.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── BrcmPatchRAM3
    │       │   │   └── _CodeSignature
    │       │   │       └── CodeResources
    │       ├── Lilu.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   └── MacOS
    │       │   │       └── Lilu
    │       ├── RealtekRTL8111.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── RealtekRTL8111
    │       │   │   └── Resources
    │       │   │       └── en.lproj
    │       │   │           └── InfoPlist.strings
    │       ├── SMCBatteryManager.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── SMCBatteryManager
    │       │   │   └── Resources
    │       │   │       └── SSDT-BATC.dsl
    │       ├── SMCProcessor.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   └── MacOS
    │       │   │       └── SMCProcessor
    │       ├── SMCSuperIO.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   └── MacOS
    │       │   │       └── SMCSuperIO
    │       ├── VirtualSMC.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   └── MacOS
    │       │   │       └── VirtualSMC
    │       ├── VoodooPS2Controller.kext
    │       │   └── Contents
    │       │   │   ├── Info.plist
    │       │   │   ├── MacOS
    │       │   │       └── VoodooPS2Controller
    │       │   │   └── PlugIns
    │       │   │       ├── VoodooInput.kext
    │       │   │           └── Contents
    │       │   │           │   ├── Info.plist
    │       │   │           │   └── MacOS
    │       │   │           │       └── VoodooInput
    │       │   │       ├── VoodooPS2Keyboard.kext
    │       │   │           └── Contents
    │       │   │           │   ├── Info.plist
    │       │   │           │   └── MacOS
    │       │   │           │       └── VoodooPS2Keyboard
    │       │   │       ├── VoodooPS2Mouse.kext
    │       │   │           └── Contents
    │       │   │           │   ├── Info.plist
    │       │   │           │   └── MacOS
    │       │   │           │       └── VoodooPS2Mouse
    │       │   │       └── VoodooPS2Trackpad.kext
    │       │   │           └── Contents
    │       │   │               ├── Info.plist
    │       │   │               └── MacOS
    │       │   │                   └── VoodooPS2Trackpad
    │       └── WhateverGreen.kext
    │       │   └── Contents
    │       │       ├── Info.plist
    │       │       └── MacOS
    │       │           └── WhateverGreen
    │   ├── OpenCore.efi
    │   ├── Resources
    │       ├── Audio
    │       │   └── OCEFIAudio_VoiceOver_Boot.wav
    │       ├── Font
    │       │   ├── Font_1x.bin
    │       │   ├── Font_1x.png
    │       │   ├── Font_2x.bin
    │       │   └── Font_2x.png
    │       ├── Image
    │       │   ├── AppleRecv.icns
    │       │   ├── AppleTM.icns
    │       │   ├── Cursor.icns
    │       │   ├── ExtAppleRecv.icns
    │       │   ├── ExtAppleTM.icns
    │       │   ├── ExtHardDrive.icns
    │       │   ├── HardDrive.icns
    │       │   ├── OldAppleRecv.icns
    │       │   ├── OldAppleTM.icns
    │       │   ├── OldCursor.icns
    │       │   ├── OldExtAppleRecv.icns
    │       │   ├── OldExtAppleTM.icns
    │       │   ├── OldExtHardDrive.icns
    │       │   ├── OldHardDrive.icns
    │       │   ├── OldSelected.icns
    │       │   ├── OldSelector.icns
    │       │   ├── OldShell.icns
    │       │   ├── OldTool.icns
    │       │   ├── OldWindows.icns
    │       │   ├── Selected.icns
    │       │   ├── Selector.icns
    │       │   ├── Shell.icns
    │       │   ├── Tool.icns
    │       │   └── Windows.icns
    │       └── Label
    │       │   ├── Apple.l2x
    │       │   ├── Apple.lbl
    │       │   ├── AppleRecv.l2x
    │       │   ├── AppleRecv.lbl
    │       │   ├── AppleTM.l2x
    │       │   ├── AppleTM.lbl
    │       │   ├── EFIBoot.l2x
    │       │   ├── EFIBoot.lbl
    │       │   ├── Other.l2x
    │       │   ├── Other.lbl
    │       │   ├── ResetNVRAM.l2x
    │       │   ├── ResetNVRAM.lbl
    │       │   ├── Shell.l2x
    │       │   ├── Shell.lbl
    │       │   ├── Tool.l2x
    │       │   ├── Tool.lbl
    │       │   ├── Windows.l2x
    │       │   └── Windows.lbl
    │   └── config.plist
└── README.md
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/.DS_Store
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # IDEA IDE
2 | .idea/
3 | 
4 | # MacOS related files
5 | **/.DS_Store
--------------------------------------------------------------------------------
/EFI/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/.DS_Store
--------------------------------------------------------------------------------
/EFI/OC/ACPI/DSDT.aml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/ACPI/DSDT.aml
--------------------------------------------------------------------------------
/EFI/OC/ACPI/SSDT-ALS0.aml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/ACPI/SSDT-ALS0.aml
--------------------------------------------------------------------------------
/EFI/OC/ACPI/SSDT-EC.aml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/ACPI/SSDT-EC.aml
--------------------------------------------------------------------------------
/EFI/OC/ACPI/SSDT-PM.aml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/ACPI/SSDT-PM.aml
--------------------------------------------------------------------------------
/EFI/OC/Bootstrap/Bootstrap.efi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Bootstrap/Bootstrap.efi
--------------------------------------------------------------------------------
/EFI/OC/Drivers/AudioDxe.efi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Drivers/AudioDxe.efi
--------------------------------------------------------------------------------
/EFI/OC/Drivers/HfsPlus.efi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Drivers/HfsPlus.efi
--------------------------------------------------------------------------------
/EFI/OC/Drivers/OpenCanopy.efi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Drivers/OpenCanopy.efi
--------------------------------------------------------------------------------
/EFI/OC/Drivers/OpenRuntime.efi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Drivers/OpenRuntime.efi
--------------------------------------------------------------------------------
/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleDevelopmentRegion
  8 | 	en
  9 | 	CFBundleExecutable
 10 | 	AirportBrcmFixup
 11 | 	CFBundleIdentifier
 12 | 	as.lvs1974.AirportBrcmFixup
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	AirportBrcmFixup
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	2.1.1
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	2.1.1
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		as.lvs1974.AirportBrcmFixup
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.lvs1974.AirportBrcmFixup
 49 | 			IOClass
 50 | 			AirportBrcmFixup
 51 | 			IOMatchCategory
 52 | 			AirportBrcmFixup
 53 | 			IOProviderClass
 54 | 			IOResources
 55 | 			IOResourceMatch
 56 | 			IOKit
 57 | 		
 58 | 		as.lvs1974.FakeAirportBrcmFixup
 59 | 		
 60 | 			CFBundleIdentifier
 61 | 			as.lvs1974.AirportBrcmFixup
 62 | 			IOClass
 63 | 			FakeBrcm
 64 | 			IOMatchCategory
 65 | 			IODefaultMatchCategory
 66 | 			IONameMatch
 67 | 			
 68 | 				pci14e4,43ba
 69 | 				pci14e4,43a3
 70 | 				pci14e4,43a0
 71 | 				pci14e4,4331
 72 | 				pci14e4,4353
 73 | 				pci14e4,43b1
 74 | 				pci14e4,43b2
 75 | 				pci14e4,4357
 76 | 				pci14e4,432b
 77 | 				pci14e4,4311
 78 | 				pci14e4,4312
 79 | 				pci14e4,4313
 80 | 				pci14e4,4318
 81 | 				pci14e4,4319
 82 | 				pci14e4,431a
 83 | 				pci14e4,4320
 84 | 				pci14e4,4324
 85 | 				pci14e4,4325
 86 | 				pci14e4,4328
 87 | 				pci14e4,432c
 88 | 				pci14e4,432d
 89 | 			
 90 | 			IOProbeScore
 91 | 			6000
 92 | 			IOProviderClass
 93 | 			IOPCIDevice
 94 | 			TruePowerOff
 95 | 			
 96 | 		
 97 | 	
 98 | 	LSMinimumSystemVersion
 99 | 	10.8
100 | 	NSHumanReadableCopyright
101 | 	Copyright © 2017 lvs1974. All rights reserved.
102 | 	OSBundleCompatibleVersion
103 | 	1.0
104 | 	OSBundleLibraries
105 | 	
106 | 		as.vit9696.Lilu
107 | 		1.2.6
108 | 		com.apple.iokit.IOPCIFamily
109 | 		2.7
110 | 		com.apple.kpi.bsd
111 | 		12.0.0
112 | 		com.apple.kpi.dsep
113 | 		12.0.0
114 | 		com.apple.kpi.iokit
115 | 		12.0.0
116 | 		com.apple.kpi.libkern
117 | 		12.0.0
118 | 		com.apple.kpi.mach
119 | 		12.0.0
120 | 		com.apple.kpi.unsupported
121 | 		12.0.0
122 | 	
123 | 	OSBundleRequired
124 | 	Network-Root
125 | 
126 | 
127 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup
--------------------------------------------------------------------------------
/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	CFBundleGetInfoString
 6 | 	Copyright © 2020 lvs1974. All rights reserved.
 7 | 	CFBundleIdentifier
 8 | 	as.lvs1974.AirportBrcm4360Injector
 9 | 	CFBundleInfoDictionaryVersion
10 | 	6.0
11 | 	CFBundleName
12 | 	AirPortBrcm4360
13 | 	CFBundlePackageType
14 | 	KEXT
15 | 	CFBundleShortVersionString
16 | 	1.0
17 | 	CFBundleSignature
18 | 	????
19 | 	CFBundleVersion
20 | 	1.0
21 | 	IOKitPersonalities
22 | 	
23 | 		Airport_Brcm4360
24 | 		
25 | 			CFBundleIdentifier
26 | 			com.apple.driver.AirPort.Brcm4360
27 | 			IOClass
28 | 			AirPort_Brcm4360
29 | 			IOMatchCategory
30 | 			IODefaultMatchCategory
31 | 			IONameMatch
32 | 			
33 | 				pci14e4,4331
34 | 				pci14e4,4353
35 | 				pci14e4,4357
36 | 				pci14e4,43a3
37 | 				pci14e4,43b1
38 | 				pci14e4,43b2
39 | 			
40 | 			IOProbeScore
41 | 			1110
42 | 			IOProviderClass
43 | 			IOPCIDevice
44 | 			TruePowerOff
45 | 			
46 | 		
47 | 	
48 | 	OSBundleRequired
49 | 	Network-Root
50 | 
51 | 
52 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	CFBundleGetInfoString
 6 | 	Copyright © 2020 lvs1974. All rights reserved.
 7 | 	CFBundleIdentifier
 8 | 	as.lvs1974.AirportBrcmNICInjector
 9 | 	CFBundleInfoDictionaryVersion
10 | 	6.0
11 | 	CFBundleName
12 | 	AirPortBrcmNIC
13 | 	CFBundlePackageType
14 | 	KEXT
15 | 	CFBundleShortVersionString
16 | 	1.0
17 | 	CFBundleSignature
18 | 	????
19 | 	CFBundleVersion
20 | 	1.0
21 | 	IOKitPersonalities
22 | 	
23 | 		Airport_BrcmNIC
24 | 		
25 | 			CFBundleIdentifier
26 | 			com.apple.driver.AirPort.BrcmNIC
27 | 			IOClass
28 | 			AirPort_BrcmNIC
29 | 			IOMatchCategory
30 | 			IODefaultMatchCategory
31 | 			IONameMatch
32 | 			
33 | 				pci14e4,4331
34 | 				pci14e4,4353
35 | 				pci14e4,4357
36 | 				pci14e4,43ba
37 | 				pci14e4,43a3
38 | 				pci14e4,43a0
39 | 				pci14e4,43b1
40 | 				pci14e4,43b2
41 | 			
42 | 			IOProbeScore
43 | 			2048
44 | 			IOProviderClass
45 | 			IOPCIDevice
46 | 			TruePowerOff
47 | 			
48 | 		
49 | 	
50 | 	OSBundleRequired
51 | 	Network-Root
52 | 
53 | 
54 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmBluetoothInjector.kext/Contents/MacOS/BrcmBluetoothInjector:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/BrcmBluetoothInjector.kext/Contents/MacOS/BrcmBluetoothInjector
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmBluetoothInjector.kext/Contents/_CodeSignature/CodeResources:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	files
  6 | 	
  7 | 	files2
  8 | 	
  9 | 	rules
 10 | 	
 11 | 		^Resources/
 12 | 		
 13 | 		^Resources/.*\.lproj/
 14 | 		
 15 | 			optional
 16 | 			
 17 | 			weight
 18 | 			1000
 19 | 		
 20 | 		^Resources/.*\.lproj/locversion.plist$
 21 | 		
 22 | 			omit
 23 | 			
 24 | 			weight
 25 | 			1100
 26 | 		
 27 | 		^Resources/Base\.lproj/
 28 | 		
 29 | 			weight
 30 | 			1010
 31 | 		
 32 | 		^version.plist$
 33 | 		
 34 | 	
 35 | 	rules2
 36 | 	
 37 | 		.*\.dSYM($|/)
 38 | 		
 39 | 			weight
 40 | 			11
 41 | 		
 42 | 		^(.*/)?\.DS_Store$
 43 | 		
 44 | 			omit
 45 | 			
 46 | 			weight
 47 | 			2000
 48 | 		
 49 | 		^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
 50 | 		
 51 | 			nested
 52 | 			
 53 | 			weight
 54 | 			10
 55 | 		
 56 | 		^.*
 57 | 		
 58 | 		^Info\.plist$
 59 | 		
 60 | 			omit
 61 | 			
 62 | 			weight
 63 | 			20
 64 | 		
 65 | 		^PkgInfo$
 66 | 		
 67 | 			omit
 68 | 			
 69 | 			weight
 70 | 			20
 71 | 		
 72 | 		^Resources/
 73 | 		
 74 | 			weight
 75 | 			20
 76 | 		
 77 | 		^Resources/.*\.lproj/
 78 | 		
 79 | 			optional
 80 | 			
 81 | 			weight
 82 | 			1000
 83 | 		
 84 | 		^Resources/.*\.lproj/locversion.plist$
 85 | 		
 86 | 			omit
 87 | 			
 88 | 			weight
 89 | 			1100
 90 | 		
 91 | 		^Resources/Base\.lproj/
 92 | 		
 93 | 			weight
 94 | 			1010
 95 | 		
 96 | 		^[^/]+$
 97 | 		
 98 | 			nested
 99 | 			
100 | 			weight
101 | 			10
102 | 		
103 | 		^embedded\.provisionprofile$
104 | 		
105 | 			weight
106 | 			20
107 | 		
108 | 		^version\.plist$
109 | 		
110 | 			weight
111 | 			20
112 | 		
113 | 	
114 | 
115 | 
116 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	BuildMachineOSBuild
 6 | 	19F101
 7 | 	CFBundleExecutable
 8 | 	BrcmFirmwareData
 9 | 	CFBundleIdentifier
10 | 	as.acidanthera.BrcmFirmwareStore
11 | 	CFBundleInfoDictionaryVersion
12 | 	6.0
13 | 	CFBundleName
14 | 	BrcmFirmwareData
15 | 	CFBundlePackageType
16 | 	KEXT
17 | 	CFBundleShortVersionString
18 | 	2.5.5
19 | 	CFBundleSignature
20 | 	????
21 | 	CFBundleSupportedPlatforms
22 | 	
23 | 		MacOSX
24 | 	
25 | 	CFBundleVersion
26 | 	2.5.5
27 | 	DTCompiler
28 | 	com.apple.compilers.llvm.clang.1_0
29 | 	DTPlatformBuild
30 | 	11E708
31 | 	DTPlatformVersion
32 | 	GM
33 | 	DTSDKBuild
34 | 	19G68
35 | 	DTSDKName
36 | 	macosx10.15
37 | 	DTXcode
38 | 	1160
39 | 	DTXcodeBuild
40 | 	11E708
41 | 	IOKitPersonalities
42 | 	
43 | 		BrcmFirmwareStore
44 | 		
45 | 			CFBundleIdentifier
46 | 			as.acidanthera.BrcmFirmwareStore
47 | 			IOClass
48 | 			BrcmFirmwareStore
49 | 			IOMatchCategory
50 | 			BrcmFirmwareStore
51 | 			IOProviderClass
52 | 			IOResources
53 | 		
54 | 	
55 | 	LSMinimumSystemVersion
56 | 	10.8
57 | 	OSBundleCompatibleVersion
58 | 	2.5.5
59 | 	OSBundleLibraries
60 | 	
61 | 		com.apple.kpi.iokit
62 | 		9.0
63 | 		com.apple.kpi.libkern
64 | 		9.0
65 | 		com.apple.kpi.mach
66 | 		9.0
67 | 	
68 | 
69 | 
70 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/_CodeSignature/CodeResources:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	files
  6 | 	
  7 | 	files2
  8 | 	
  9 | 	rules
 10 | 	
 11 | 		^Resources/
 12 | 		
 13 | 		^Resources/.*\.lproj/
 14 | 		
 15 | 			optional
 16 | 			
 17 | 			weight
 18 | 			1000
 19 | 		
 20 | 		^Resources/.*\.lproj/locversion.plist$
 21 | 		
 22 | 			omit
 23 | 			
 24 | 			weight
 25 | 			1100
 26 | 		
 27 | 		^Resources/Base\.lproj/
 28 | 		
 29 | 			weight
 30 | 			1010
 31 | 		
 32 | 		^version.plist$
 33 | 		
 34 | 	
 35 | 	rules2
 36 | 	
 37 | 		.*\.dSYM($|/)
 38 | 		
 39 | 			weight
 40 | 			11
 41 | 		
 42 | 		^(.*/)?\.DS_Store$
 43 | 		
 44 | 			omit
 45 | 			
 46 | 			weight
 47 | 			2000
 48 | 		
 49 | 		^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
 50 | 		
 51 | 			nested
 52 | 			
 53 | 			weight
 54 | 			10
 55 | 		
 56 | 		^.*
 57 | 		
 58 | 		^Info\.plist$
 59 | 		
 60 | 			omit
 61 | 			
 62 | 			weight
 63 | 			20
 64 | 		
 65 | 		^PkgInfo$
 66 | 		
 67 | 			omit
 68 | 			
 69 | 			weight
 70 | 			20
 71 | 		
 72 | 		^Resources/
 73 | 		
 74 | 			weight
 75 | 			20
 76 | 		
 77 | 		^Resources/.*\.lproj/
 78 | 		
 79 | 			optional
 80 | 			
 81 | 			weight
 82 | 			1000
 83 | 		
 84 | 		^Resources/.*\.lproj/locversion.plist$
 85 | 		
 86 | 			omit
 87 | 			
 88 | 			weight
 89 | 			1100
 90 | 		
 91 | 		^Resources/Base\.lproj/
 92 | 		
 93 | 			weight
 94 | 			1010
 95 | 		
 96 | 		^[^/]+$
 97 | 		
 98 | 			nested
 99 | 			
100 | 			weight
101 | 			10
102 | 		
103 | 		^embedded\.provisionprofile$
104 | 		
105 | 			weight
106 | 			20
107 | 		
108 | 		^version\.plist$
109 | 		
110 | 			weight
111 | 			20
112 | 		
113 | 	
114 | 
115 | 
116 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3
--------------------------------------------------------------------------------
/EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/_CodeSignature/CodeResources:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	files
  6 | 	
  7 | 	files2
  8 | 	
  9 | 	rules
 10 | 	
 11 | 		^Resources/
 12 | 		
 13 | 		^Resources/.*\.lproj/
 14 | 		
 15 | 			optional
 16 | 			
 17 | 			weight
 18 | 			1000
 19 | 		
 20 | 		^Resources/.*\.lproj/locversion.plist$
 21 | 		
 22 | 			omit
 23 | 			
 24 | 			weight
 25 | 			1100
 26 | 		
 27 | 		^Resources/Base\.lproj/
 28 | 		
 29 | 			weight
 30 | 			1010
 31 | 		
 32 | 		^version.plist$
 33 | 		
 34 | 	
 35 | 	rules2
 36 | 	
 37 | 		.*\.dSYM($|/)
 38 | 		
 39 | 			weight
 40 | 			11
 41 | 		
 42 | 		^(.*/)?\.DS_Store$
 43 | 		
 44 | 			omit
 45 | 			
 46 | 			weight
 47 | 			2000
 48 | 		
 49 | 		^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
 50 | 		
 51 | 			nested
 52 | 			
 53 | 			weight
 54 | 			10
 55 | 		
 56 | 		^.*
 57 | 		
 58 | 		^Info\.plist$
 59 | 		
 60 | 			omit
 61 | 			
 62 | 			weight
 63 | 			20
 64 | 		
 65 | 		^PkgInfo$
 66 | 		
 67 | 			omit
 68 | 			
 69 | 			weight
 70 | 			20
 71 | 		
 72 | 		^Resources/
 73 | 		
 74 | 			weight
 75 | 			20
 76 | 		
 77 | 		^Resources/.*\.lproj/
 78 | 		
 79 | 			optional
 80 | 			
 81 | 			weight
 82 | 			1000
 83 | 		
 84 | 		^Resources/.*\.lproj/locversion.plist$
 85 | 		
 86 | 			omit
 87 | 			
 88 | 			weight
 89 | 			1100
 90 | 		
 91 | 		^Resources/Base\.lproj/
 92 | 		
 93 | 			weight
 94 | 			1010
 95 | 		
 96 | 		^[^/]+$
 97 | 		
 98 | 			nested
 99 | 			
100 | 			weight
101 | 			10
102 | 		
103 | 		^embedded\.provisionprofile$
104 | 		
105 | 			weight
106 | 			20
107 | 		
108 | 		^version\.plist$
109 | 		
110 | 			weight
111 | 			20
112 | 		
113 | 	
114 | 
115 | 
116 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	BuildMachineOSBuild
 6 | 	19H2
 7 | 	CFBundleDevelopmentRegion
 8 | 	en
 9 | 	CFBundleExecutable
10 | 	Lilu
11 | 	CFBundleIdentifier
12 | 	as.vit9696.Lilu
13 | 	CFBundleInfoDictionaryVersion
14 | 	6.0
15 | 	CFBundleName
16 | 	Lilu
17 | 	CFBundlePackageType
18 | 	KEXT
19 | 	CFBundleShortVersionString
20 | 	1.4.9
21 | 	CFBundleSignature
22 | 	????
23 | 	CFBundleSupportedPlatforms
24 | 	
25 | 		MacOSX
26 | 	
27 | 	CFBundleVersion
28 | 	1.4.9
29 | 	DTCompiler
30 | 	com.apple.compilers.llvm.clang.1_0
31 | 	DTPlatformBuild
32 | 	11E708
33 | 	DTPlatformVersion
34 | 	GM
35 | 	DTSDKBuild
36 | 	19G68
37 | 	DTSDKName
38 | 	macosx10.15
39 | 	DTXcode
40 | 	1160
41 | 	DTXcodeBuild
42 | 	11E708
43 | 	IOKitPersonalities
44 | 	
45 | 		as.vit9696.Lilu
46 | 		
47 | 			CFBundleIdentifier
48 | 			as.vit9696.Lilu
49 | 			IOClass
50 | 			Lilu
51 | 			IOMatchCategory
52 | 			Lilu
53 | 			IOProviderClass
54 | 			IOResources
55 | 			IOResourceMatch
56 | 			IOKit
57 | 		
58 | 	
59 | 	LSMinimumSystemVersion
60 | 	10.6
61 | 	NSHumanReadableCopyright
62 | 	Copyright © 2016-2020 vit9696. All rights reserved.
63 | 	OSBundleCompatibleVersion
64 | 	1.2.0
65 | 	OSBundleLibraries
66 | 	
67 | 		com.apple.kpi.bsd
68 | 		10.0.0
69 | 		com.apple.kpi.dsep
70 | 		10.0.0
71 | 		com.apple.kpi.iokit
72 | 		10.0.0
73 | 		com.apple.kpi.libkern
74 | 		10.0.0
75 | 		com.apple.kpi.mach
76 | 		10.0.0
77 | 		com.apple.kpi.unsupported
78 | 		10.0.0
79 | 	
80 | 	OSBundleRequired
81 | 	Root
82 | 
83 | 
84 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu
--------------------------------------------------------------------------------
/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	16G1114
  7 | 	CFBundleDevelopmentRegion
  8 | 	English
  9 | 	CFBundleExecutable
 10 | 	RealtekRTL8111
 11 | 	CFBundleIdentifier
 12 | 	com.insanelymac.RealtekRTL8111
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	RealtekRTL8111
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	2.2.2
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	2.2.2
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	8E3004b
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	16E185
 37 | 	DTSDKName
 38 | 	macosx10.12
 39 | 	DTXcode
 40 | 	0833
 41 | 	DTXcodeBuild
 42 | 	8E3004b
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		RTL8111 PCIe Adapter
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			com.insanelymac.RealtekRTL8111
 49 | 			Driver_Version
 50 | 			2.2.2
 51 | 			IOClass
 52 | 			RTL8111
 53 | 			IOPCIMatch
 54 | 			0x816810ec 0x81681186
 55 | 			IOProbeScore
 56 | 			1000
 57 | 			IOProviderClass
 58 | 			IOPCIDevice
 59 | 			Model
 60 | 			RTL8111
 61 | 			Vendor
 62 | 			Realtek
 63 | 			disableASPM
 64 | 			
 65 | 			enableCSO6
 66 | 			
 67 | 			enableEEE
 68 | 			
 69 | 			enableTSO4
 70 | 			
 71 | 			enableTSO6
 72 | 			
 73 | 			intrMitigate
 74 | 			53080
 75 | 			rxPolling
 76 | 			
 77 | 		
 78 | 	
 79 | 	NSHumanReadableCopyright
 80 | 	Copyright © 2013 Laura Müller. All rights reserved.
 81 | 	OSBundleLibraries
 82 | 	
 83 | 		com.apple.iokit.IONetworkingFamily
 84 | 		1.5.0
 85 | 		com.apple.iokit.IOPCIFamily
 86 | 		1.7
 87 | 		com.apple.kpi.bsd
 88 | 		8.10.0
 89 | 		com.apple.kpi.iokit
 90 | 		8.10.0
 91 | 		com.apple.kpi.libkern
 92 | 		8.10.0
 93 | 		com.apple.kpi.mach
 94 | 		8.10.0
 95 | 	
 96 | 	OSBundleRequired
 97 | 	Network-Root
 98 | 
 99 | 
100 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111
--------------------------------------------------------------------------------
/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleDevelopmentRegion
  8 | 	en
  9 | 	CFBundleExecutable
 10 | 	SMCBatteryManager
 11 | 	CFBundleIdentifier
 12 | 	ru.usrsse2.SMCBatteryManager
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	SMCBatteryManager
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	1.1.8
 21 | 	CFBundleSupportedPlatforms
 22 | 	
 23 | 		MacOSX
 24 | 	
 25 | 	CFBundleVersion
 26 | 	1.1.8
 27 | 	DTCompiler
 28 | 	com.apple.compilers.llvm.clang.1_0
 29 | 	DTPlatformBuild
 30 | 	11E708
 31 | 	DTPlatformVersion
 32 | 	GM
 33 | 	DTSDKBuild
 34 | 	19G68
 35 | 	DTSDKName
 36 | 	macosx10.15
 37 | 	DTXcode
 38 | 	1160
 39 | 	DTXcodeBuild
 40 | 	11E708
 41 | 	IOKitPersonalities
 42 | 	
 43 | 		IOSMBusController
 44 | 		
 45 | 			CFBundleIdentifier
 46 | 			ru.usrsse2.SMCBatteryManager
 47 | 			IOClass
 48 | 			SMCSMBusController
 49 | 			IOMatchCategory
 50 | 			SMCSMBusController
 51 | 			IOProviderClass
 52 | 			IOResources
 53 | 			IOResourceMatch
 54 | 			IOKit
 55 | 		
 56 | 		SMCBatteryManager
 57 | 		
 58 | 			CFBundleIdentifier
 59 | 			ru.usrsse2.SMCBatteryManager
 60 | 			IOClass
 61 | 			SMCBatteryManager
 62 | 			IOMatchCategory
 63 | 			SMCBatteryManager
 64 | 			IOProviderClass
 65 | 			IOResources
 66 | 			IOResourceMatch
 67 | 			IOKit
 68 | 		
 69 | 	
 70 | 	LSMinimumSystemVersion
 71 | 	10.6
 72 | 	NSHumanReadableCopyright
 73 | 	Copyright © 2018 usrsse2. All rights reserved.
 74 | 	OSBundleCompatibleVersion
 75 | 	1.0.0
 76 | 	OSBundleLibraries
 77 | 	
 78 | 		as.vit9696.Lilu
 79 | 		1.2.0
 80 | 		as.vit9696.VirtualSMC
 81 | 		1.0.0
 82 | 		com.apple.iokit.IOACPIFamily
 83 | 		1.0.0d1
 84 | 		com.apple.iokit.IOSMBusFamily
 85 | 		1.0.0
 86 | 		com.apple.kpi.bsd
 87 | 		10.0.0
 88 | 		com.apple.kpi.dsep
 89 | 		10.0.0
 90 | 		com.apple.kpi.iokit
 91 | 		10.0.0
 92 | 		com.apple.kpi.libkern
 93 | 		10.0.0
 94 | 		com.apple.kpi.mach
 95 | 		10.0.0
 96 | 		com.apple.kpi.unsupported
 97 | 		10.0.0
 98 | 	
 99 | 	OSBundleRequired
100 | 	Root
101 | 
102 | 
103 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl:
--------------------------------------------------------------------------------
  1 | // SSDT-BATC.dsl
  2 | //
  3 | // Based on https://github.com/RehabMan/OS-X-ACPI-Battery-Driver/blob/master/SSDT-BATC.dsl
  4 | //
  5 | // An SSDT to combine two batteries into one
  6 | // initial work/testing by ag6952563 (with assistance by RehabMan)
  7 | // finalize into generic SSDT by RehabMan
  8 | // some code cleanup/optimization/and bug fixing by RehabMan
  9 | // modifications to work VirtualSMC SMCBatteryManager by armenio
 10 | // add _BIX (easy, following the original code from RehabMan) by armenio
 11 | //
 12 | // OS X support for multiple batteries is a bit buggy.
 13 | // This SSDT can be used to combine two batteries into one,
 14 | // avoiding the bugs.
 15 | //
 16 | // It may need modification depending on the ACPI path of your
 17 | // existing battery objects.
 18 | //
 19 | 
 20 | // IMPORTANT:
 21 | //
 22 | // To use this SSDT, you must also patch any Notify for either BAT0 or BAT1
 23 | // objects.
 24 | //
 25 | // The Notify is used to tell the system when a battery is removed or added.
 26 | //
 27 | // Any code:
 28 | //   Notify (...BAT0, ...)
 29 | //         -or
 30 | //   Notify (...BAT1, ...)
 31 | //
 32 | // Must be changed to:
 33 | //   Notify (...BATC, ...)
 34 | //
 35 | // Refer to Dual Battery Support.md for patching details
 36 | //
 37 | 
 38 | DefinitionBlock ("", "SSDT", 2, "ACDT", "BATC", 0x00000000)
 39 | {
 40 |     External (_SB_.PCI0.LPCB.EC, DeviceObj)
 41 |     External (_SB_.PCI0.LPCB.EC.BAT0, DeviceObj)
 42 |     External (_SB_.PCI0.LPCB.EC.BAT0._BIF, MethodObj)
 43 |     External (_SB_.PCI0.LPCB.EC.BAT0._BIX, MethodObj)
 44 |     External (_SB_.PCI0.LPCB.EC.BAT0._BST, MethodObj)
 45 |     External (_SB_.PCI0.LPCB.EC.BAT0._HID, IntObj)
 46 |     External (_SB_.PCI0.LPCB.EC.BAT0._STA, MethodObj)
 47 |     External (_SB_.PCI0.LPCB.EC.BAT1, DeviceObj)
 48 |     External (_SB_.PCI0.LPCB.EC.BAT1._BIF, MethodObj)
 49 |     External (_SB_.PCI0.LPCB.EC.BAT1._BIX, MethodObj)
 50 |     External (_SB_.PCI0.LPCB.EC.BAT1._BST, MethodObj)
 51 |     External (_SB_.PCI0.LPCB.EC.BAT1._HID, IntObj)
 52 |     External (_SB_.PCI0.LPCB.EC.BAT1._STA, MethodObj)
 53 | 
 54 |     Scope (\_SB.PCI0.LPCB.EC)
 55 |     {
 56 |         Device (BATC)
 57 |         {
 58 |             Name (_HID, EisaId ("PNP0C0A"))
 59 |             Name (_UID, 0x02)
 60 | 
 61 |             Method (_INI)
 62 |             {
 63 |                 If (_OSI ("Darwin"))
 64 |                 {
 65 |                     // disable original battery objects by setting invalid _HID
 66 |                     ^^BAT0._HID = 0
 67 |                     ^^BAT1._HID = 0
 68 |                 }
 69 |             }
 70 | 
 71 |             Method (_STA)
 72 |             {
 73 |                 If (_OSI ("Darwin"))
 74 |                 {
 75 |                     // call original _STA for BAT0 and BAT1
 76 |                     // result is bitwise OR between them
 77 |                     Return (^^BAT0._STA () | ^^BAT1._STA ())
 78 |                 }
 79 |                 Else
 80 |                 {
 81 |                     Return (Zero)
 82 |                 }
 83 |             }
 84 | 
 85 |             Method (_BIF)
 86 |             {
 87 |                 // Local0 BAT0._BIF
 88 |                 // Local1 BAT1._BIF
 89 |                 // Local2 BAT0._STA
 90 |                 // Local3 BAT1._STA
 91 |                 // Local4/Local5 scratch
 92 | 
 93 |                 // gather and validate data from BAT0
 94 |                 Local0 = ^^BAT0._BIF ()
 95 |                 Local2 = ^^BAT0._STA ()
 96 |                 If (0x1f == Local2)
 97 |                 {
 98 |                     // check for invalid design capacity
 99 |                     Local4 = DerefOf (Local0 [1])
100 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
101 |                     // check for invalid last full charge capacity
102 |                     Local4 = DerefOf (Local0 [2])
103 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
104 |                     // check for invalid design voltage
105 |                     Local4 = DerefOf (Local0 [4])
106 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
107 |                 }
108 |                 // gather and validate data from BAT1
109 |                 Local1 = ^^BAT1._BIF ()
110 |                 Local3 = ^^BAT1._STA ()
111 |                 If (0x1f == Local3)
112 |                 {
113 |                     // check for invalid design capacity
114 |                     Local4 = DerefOf (Local1 [1])
115 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
116 |                     // check for invalid last full charge capacity
117 |                     Local4 = DerefOf (Local1 [2])
118 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
119 |                     // check for invalid design voltage
120 |                     Local4 = DerefOf (Local1 [4])
121 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
122 |                 }
123 |                 // find primary and secondary battery
124 |                 If (0x1f != Local2 && 0x1f == Local3)
125 |                 {
126 |                     // make primary use BAT1 data
127 |                     Local0 = Local1 // BAT1._BIF result
128 |                     Local2 = Local3 // BAT1._STA result
129 |                     Local3 = 0  // no secondary battery
130 |                 }
131 |                 // combine batteries into Local0 result if possible
132 |                 If (0x1f == Local2 && 0x1f == Local3)
133 |                 {
134 |                     // _BIF 0 Power Unit - leave BAT0 value
135 |                     // _BIF 1 Design Capacity - add BAT0 and BAT1 values
136 |                     Local4 = DerefOf (Local0 [1])
137 |                     Local5 = DerefOf (Local1 [1])
138 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
139 |                     {
140 |                         Local0 [1] = Local4 + Local5
141 |                     }
142 |                     // _BIF 2 Last Full Charge Capacity - add BAT0 and BAT1 values
143 |                     Local4 = DerefOf (Local0 [2])
144 |                     Local5 = DerefOf (Local1 [2])
145 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
146 |                     {
147 |                         Local0 [2] = Local4 + Local5
148 |                     }
149 |                     // _BIF 3 Battery Technology - leave BAT0 value
150 |                     // _BIF 4 Design Voltage - average between BAT0 and BAT1 values
151 |                     Local4 = DerefOf (Local0 [4])
152 |                     Local5 = DerefOf (Local1 [4])
153 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
154 |                     {
155 |                         Local0 [4] = (Local4 + Local5) / 2
156 |                     }
157 |                     // _BIF 5 Design Capacity of Warning - add BAT0 and BAT1 values
158 |                     Local0 [5] = DerefOf (Local0 [5]) + DerefOf (Local1 [5])
159 |                     // _BIF 6 Design Capacity of Low - add BAT0 and BAT1 values
160 |                     Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6])
161 |                     // _BIF 7 Battery Capacity Granularity 1 - add BAT0 and BAT1 values
162 |                     Local4 = DerefOf (Local0 [7])
163 |                     Local5 = DerefOf (Local1 [7])
164 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
165 |                     {
166 |                         Local0 [7] = Local4 + Local5
167 |                     }
168 |                     // _BIF 8 Battery Capacity Granularity 2 - add BAT0 and BAT1 values
169 |                     Local4 = DerefOf (Local0 [8])
170 |                     Local5 = DerefOf (Local1 [8])
171 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
172 |                     {
173 |                         Local0 [8] = Local4 + Local5
174 |                     }
175 |                     // _BIF 9 Model Number - concatenate BAT0 and BAT1 values
176 |                     Local0 [0x09] = Concatenate (Concatenate (DerefOf (Local0 [0x09]), " / "), DerefOf (Local1 [0x09]))
177 |                     // _BIF a Serial Number - concatenate BAT0 and BAT1 values
178 |                     Local0 [0x0a] = Concatenate (Concatenate (DerefOf (Local0 [0x0a]), " / "), DerefOf (Local1 [0x0a]))
179 |                     // _BIF b Battery Type - concatenate BAT0 and BAT1 values
180 |                     Local0 [0x0b] = Concatenate (Concatenate (DerefOf (Local0 [0x0b]), " / "), DerefOf (Local1 [0x0b]))
181 |                     // _BIF c OEM Information - concatenate BAT0 and BAT1 values
182 |                     Local0 [0x0c] = Concatenate (Concatenate (DerefOf (Local0 [0x0c]), " / "), DerefOf (Local1 [0x0c]))
183 |                 }
184 | 
185 |                 Return (Local0)
186 |             } // _BIF
187 | 
188 |             Method (_BIX)
189 |             {
190 |                 // Local0 BAT0._BIX
191 |                 // Local1 BAT1._BIX
192 |                 // Local2 BAT0._STA
193 |                 // Local3 BAT1._STA
194 |                 // Local4/Local5 scratch
195 | 
196 |                 // gather and validate data from BAT0
197 |                 Local0 = ^^BAT0._BIX ()
198 |                 Local2 = ^^BAT0._STA ()
199 |                 If (0x1f == Local2)
200 |                 {
201 |                     // check for invalid design capacity
202 |                     Local4 = DerefOf (Local0 [2])
203 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
204 |                     // check for invalid last full charge capacity
205 |                     Local4 = DerefOf (Local0 [3])
206 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
207 |                     // check for invalid design voltage
208 |                     Local4 = DerefOf (Local0 [5])
209 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
210 |                 }
211 |                 // gather and validate data from BAT1
212 |                 Local1 = ^^BAT1._BIX ()
213 |                 Local3 = ^^BAT1._STA ()
214 |                 If (0x1f == Local3)
215 |                 {
216 |                     // check for invalid design capacity
217 |                     Local4 = DerefOf (Local1 [2])
218 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
219 |                     // check for invalid last full charge capacity
220 |                     Local4 = DerefOf (Local1 [3])
221 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
222 |                     // check for invalid design voltage
223 |                     Local4 = DerefOf (Local1 [5])
224 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
225 |                 }
226 |                 // find primary and secondary battery
227 |                 If (0x1f != Local2 && 0x1f == Local3)
228 |                 {
229 |                     // make primary use BAT1 data
230 |                     Local0 = Local1 // BAT1._BIX result
231 |                     Local2 = Local3 // BAT1._STA result
232 |                     Local3 = 0  // no secondary battery
233 |                 }
234 |                 // combine batteries into Local0 result if possible
235 |                 If (0x1f == Local2 && 0x1f == Local3)
236 |                 {
237 |                     // _BIX 0 Revision - leave BAT0 value
238 |                     // _BIX 1 Power Unit - leave BAT0 value
239 |                     // _BIX 2 Design Capacity - add BAT0 and BAT1 values
240 |                     Local4 = DerefOf (Local0 [2])
241 |                     Local5 = DerefOf (Local1 [2])
242 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
243 |                     {
244 |                         Local0 [2] = Local4 + Local5
245 |                     }
246 |                     // _BIX 3 Last Full Charge Capacity - add BAT0 and BAT1 values
247 |                     Local4 = DerefOf (Local0 [3])
248 |                     Local5 = DerefOf (Local1 [3])
249 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
250 |                     {
251 |                         Local0 [3] = Local4 + Local5
252 |                     }
253 |                     // _BIX 4 Battery Technology - leave BAT0 value
254 |                     // _BIX 5 Design Voltage - average between BAT0 and BAT1 values
255 |                     Local4 = DerefOf (Local0 [5])
256 |                     Local5 = DerefOf (Local1 [5])
257 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
258 |                     {
259 |                         Local0 [5] = (Local4 + Local5) / 2
260 |                     }
261 |                     // _BIX 6 Design Capacity of Warning - add BAT0 and BAT1 values
262 |                     Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6])
263 |                     // _BIX 7 Design Capacity of Low - add BAT0 and BAT1 values
264 |                     Local0 [7] = DerefOf (Local0 [7]) + DerefOf (Local1 [7])
265 |                     // _BIX 8 Cycle Count - average between BAT0 and BAT1 values
266 |                     Local4 = DerefOf (Local0 [8])
267 |                     Local5 = DerefOf (Local1 [8])
268 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
269 |                     {
270 |                         Local0 [8] = (Local4 + Local5) / 2
271 |                     }
272 |                     // _BIX 9 Measurement Accuracy - average between BAT0 and BAT1 values
273 |                     Local0 [9] = (DerefOf (Local0 [9]) + DerefOf (Local1 [9])) / 2
274 |                     // _BIX 0xa Max Sampling Time - average between BAT0 and BAT1 values
275 |                     Local4 = DerefOf (Local0 [0xa])
276 |                     Local5 = DerefOf (Local1 [0xa])
277 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
278 |                     {
279 |                         Local0 [0xa] = (Local4 + Local5) / 2
280 |                     }
281 |                     // _BIX 0xb Min Sampling Time - average between BAT0 and BAT1 values
282 |                     Local4 = DerefOf (Local0 [0xb])
283 |                     Local5 = DerefOf (Local1 [0xb])
284 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
285 |                     {
286 |                         Local0 [0xb] = (Local4 + Local5) / 2
287 |                     }
288 |                     // _BIX 0xc Max Averaging Interval - average between BAT0 and BAT1 values
289 |                     Local0 [0xc] = (DerefOf (Local0 [0xc]) + DerefOf (Local1 [0xc])) / 2
290 |                     // _BIX 0xd Min Averaging Interval - average between BAT0 and BAT1 values
291 |                     Local0 [0xd] = (DerefOf (Local0 [0xd]) + DerefOf (Local1 [0xd])) / 2
292 |                     // _BIX 0xe Battery Capacity Granularity 1 - add BAT0 and BAT1 values
293 |                     Local4 = DerefOf (Local0 [0xe])
294 |                     Local5 = DerefOf (Local1 [0xe])
295 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
296 |                     {
297 |                         Local0 [0xe] = Local4 + Local5
298 |                     }
299 |                     // _BIX 0xf Battery Capacity Granularity 2 - add BAT0 and BAT1 values
300 |                     Local4 = DerefOf (Local0 [0xf])
301 |                     Local5 = DerefOf (Local1 [0xf])
302 |                     If (0xffffffff != Local4 && 0xffffffff != Local5)
303 |                     {
304 |                         Local0 [0xf] = Local4 + Local5
305 |                     }
306 |                     // _BIX 10 Model Number - concatenate BAT0 and BAT1 values
307 |                     Local0 [0x10] = Concatenate (Concatenate (DerefOf (Local0 [0x10]), " / "), DerefOf (Local1 [0x10]))
308 |                     // _BIX 11 Serial Number - concatenate BAT0 and BAT1 values
309 |                     Local0 [0x11] = Concatenate (Concatenate (DerefOf (Local0 [0x11]), " / "), DerefOf (Local1 [0x11]))
310 |                     // _BIX 12 Battery Type - concatenate BAT0 and BAT1 values
311 |                     Local0 [0x12] = Concatenate (Concatenate (DerefOf (Local0 [0x12]), " / "), DerefOf (Local1 [0x12]))
312 |                     // _BIX 13 OEM Information - concatenate BAT0 and BAT1 values
313 |                     Local0 [0x13] = Concatenate (Concatenate (DerefOf (Local0 [0x13]), " / "), DerefOf (Local1 [0x13]))
314 |                     // _BIX 14 Battery Swapping Capability - leave BAT0 value for now
315 |                 }
316 |                 Return (Local0)
317 |             } // _BIX
318 | 
319 |             Method (_BST)
320 |             {
321 |                 // Local0 BAT0._BST
322 |                 // Local1 BAT1._BST
323 |                 // Local2 BAT0._STA
324 |                 // Local3 BAT1._STA
325 |                 // Local4/Local5 scratch
326 | 
327 |                 // gather battery data from BAT0
328 |                 Local0 = ^^BAT0._BST ()
329 |                 Local2 = ^^BAT0._STA ()
330 |                 If (0x1f == Local2)
331 |                 {
332 |                     // check for invalid remaining capacity
333 |                     Local4 = DerefOf (Local0 [2])
334 |                     If (!Local4 || Ones == Local4) { Local2 = 0; }
335 |                 }
336 |                 // gather battery data from BAT1
337 |                 Local1 = ^^BAT1._BST ()
338 |                 Local3 = ^^BAT1._STA ()
339 |                 If (0x1f == Local3)
340 |                 {
341 |                     // check for invalid remaining capacity
342 |                     Local4 = DerefOf (Local1 [2])
343 |                     If (!Local4 || Ones == Local4) { Local3 = 0; }
344 |                 }
345 |                 // find primary and secondary battery
346 |                 If (0x1f != Local2 && 0x1f == Local3)
347 |                 {
348 |                     // make primary use BAT1 data
349 |                     Local0 = Local1 // BAT1._BST result
350 |                     Local2 = Local3 // BAT1._STA result
351 |                     Local3 = 0  // no secondary battery
352 |                 }
353 |                 // combine batteries into Local0 result if possible
354 |                 If (0x1f == Local2 && 0x1f == Local3)
355 |                 {
356 |                     // _BST 0 - Battery State - if one battery is charging, then charging, else discharging
357 |                     Local4 = DerefOf (Local0 [0])
358 |                     Local5 = DerefOf (Local1 [0])
359 |                     If (Local4 != Local5)
360 |                     {
361 |                         If (Local4 == 2 || Local5 == 2)
362 |                         {
363 |                             // 2 = charging
364 |                             Local0 [0] = 2
365 |                         }
366 |                         ElseIf (Local4 == 1 || Local5 == 1)
367 |                         {
368 |                             // 1 = discharging
369 |                             Local0 [0] = 1
370 |                         }
371 |                         ElseIf (Local4 == 3 || Local5 == 3)
372 |                         {
373 |                             Local0 [0] = 3
374 |                         }
375 |                         ElseIf (Local4 == 4 || Local5 == 4)
376 |                         {
377 |                             // critical
378 |                             Local0 [0] = 4
379 |                         }
380 |                         ElseIf (Local4 == 5 || Local5 == 5)
381 |                         {
382 |                             // critical and discharging
383 |                             Local0 [0] = 5
384 |                         }
385 |                         // if none of the above, just leave as BAT0 is
386 |                     }
387 | 
388 |                     // _BST 1 - Battery Present Rate - add BAT0 and BAT1 values
389 |                     Local0 [1] = DerefOf (Local0 [1]) + DerefOf (Local1 [1])
390 |                     // _BST 2 - Battery Remaining Capacity - add BAT0 and BAT1 values
391 |                     Local0 [2] = DerefOf (Local0 [2]) + DerefOf (Local1 [2])
392 |                     // _BST 3 - Battery Present Voltage - average between BAT0 and BAT1 values
393 |                     Local0 [3] = (DerefOf (Local0 [3]) + DerefOf (Local1 [3])) / 2
394 |                 }
395 |                 Return (Local0)
396 |             } // _BST
397 |         } // BATC
398 |     } // Scope (...)
399 | }
400 | //EOF
401 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	BuildMachineOSBuild
 6 | 	19H2
 7 | 	CFBundleDevelopmentRegion
 8 | 	en
 9 | 	CFBundleExecutable
10 | 	SMCProcessor
11 | 	CFBundleIdentifier
12 | 	as.vit9696.SMCProcessor
13 | 	CFBundleInfoDictionaryVersion
14 | 	6.0
15 | 	CFBundleName
16 | 	SMCProcessor
17 | 	CFBundlePackageType
18 | 	KEXT
19 | 	CFBundleShortVersionString
20 | 	1.1.8
21 | 	CFBundleSignature
22 | 	????
23 | 	CFBundleSupportedPlatforms
24 | 	
25 | 		MacOSX
26 | 	
27 | 	CFBundleVersion
28 | 	1.1.8
29 | 	DTCompiler
30 | 	com.apple.compilers.llvm.clang.1_0
31 | 	DTPlatformBuild
32 | 	11E708
33 | 	DTPlatformVersion
34 | 	GM
35 | 	DTSDKBuild
36 | 	19G68
37 | 	DTSDKName
38 | 	macosx10.15
39 | 	DTXcode
40 | 	1160
41 | 	DTXcodeBuild
42 | 	11E708
43 | 	IOKitPersonalities
44 | 	
45 | 		as.vit9696.SMCProcessor
46 | 		
47 | 			CFBundleIdentifier
48 | 			as.vit9696.SMCProcessor
49 | 			IOClass
50 | 			SMCProcessor
51 | 			IOMatchCategory
52 | 			SMCProcessor
53 | 			IONameMatch
54 | 			processor
55 | 			IOPropertyMatch
56 | 			
57 | 				processor-index
58 | 				0
59 | 			
60 | 			IOProviderClass
61 | 			IOACPIPlatformDevice
62 | 			IOResourceMatch
63 | 			ACPI
64 | 		
65 | 	
66 | 	LSMinimumSystemVersion
67 | 	10.7
68 | 	NSHumanReadableCopyright
69 | 	Copyright © 2018 vit9696. All rights reserved.
70 | 	OSBundleCompatibleVersion
71 | 	1.0
72 | 	OSBundleLibraries
73 | 	
74 | 		as.vit9696.Lilu
75 | 		1.2.0
76 | 		as.vit9696.VirtualSMC
77 | 		1.0.0
78 | 		com.apple.iokit.IOACPIFamily
79 | 		1.0.0d1
80 | 		com.apple.kpi.bsd
81 | 		11.0.0
82 | 		com.apple.kpi.dsep
83 | 		11.0.0
84 | 		com.apple.kpi.iokit
85 | 		11.0.0
86 | 		com.apple.kpi.libkern
87 | 		11.0.0
88 | 		com.apple.kpi.mach
89 | 		11.0.0
90 | 		com.apple.kpi.unsupported
91 | 		11.0.0
92 | 	
93 | 	OSBundleRequired
94 | 	Root
95 | 
96 | 
97 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	BuildMachineOSBuild
 6 | 	19H2
 7 | 	CFBundleDevelopmentRegion
 8 | 	en
 9 | 	CFBundleExecutable
10 | 	SMCSuperIO
11 | 	CFBundleIdentifier
12 | 	ru.joedm.SMCSuperIO
13 | 	CFBundleInfoDictionaryVersion
14 | 	6.0
15 | 	CFBundleName
16 | 	SMCSuperIO
17 | 	CFBundlePackageType
18 | 	KEXT
19 | 	CFBundleShortVersionString
20 | 	1.1.8
21 | 	CFBundleSignature
22 | 	????
23 | 	CFBundleSupportedPlatforms
24 | 	
25 | 		MacOSX
26 | 	
27 | 	CFBundleVersion
28 | 	1.1.8
29 | 	DTCompiler
30 | 	com.apple.compilers.llvm.clang.1_0
31 | 	DTPlatformBuild
32 | 	11E708
33 | 	DTPlatformVersion
34 | 	GM
35 | 	DTSDKBuild
36 | 	19G68
37 | 	DTSDKName
38 | 	macosx10.15
39 | 	DTXcode
40 | 	1160
41 | 	DTXcodeBuild
42 | 	11E708
43 | 	IOKitPersonalities
44 | 	
45 | 		ru.joedm.SMCSuperIO
46 | 		
47 | 			CFBundleIdentifier
48 | 			ru.joedm.SMCSuperIO
49 | 			IOClass
50 | 			SMCSuperIO
51 | 			IOMatchCategory
52 | 			SMCSuperIO
53 | 			IOPCIClassMatch
54 | 			0x06010000&0xffff0000
55 | 			IOProviderClass
56 | 			IOPCIDevice
57 | 			IOResourceMatch
58 | 			ACPI
59 | 		
60 | 	
61 | 	LSMinimumSystemVersion
62 | 	10.6
63 | 	NSHumanReadableCopyright
64 | 	Copyright © 2018 joedm. All rights reserved.
65 | 	OSBundleCompatibleVersion
66 | 	1.0
67 | 	OSBundleLibraries
68 | 	
69 | 		as.vit9696.Lilu
70 | 		1.2.0
71 | 		as.vit9696.VirtualSMC
72 | 		1.0.0
73 | 		com.apple.iokit.IOACPIFamily
74 | 		1.0.0d1
75 | 		com.apple.kpi.bsd
76 | 		10.0.0
77 | 		com.apple.kpi.dsep
78 | 		10.0.0
79 | 		com.apple.kpi.iokit
80 | 		10.0.0
81 | 		com.apple.kpi.libkern
82 | 		10.0.0
83 | 		com.apple.kpi.mach
84 | 		10.0.0
85 | 		com.apple.kpi.unsupported
86 | 		10.0.0
87 | 	
88 | 	OSBundleRequired
89 | 	Root
90 | 
91 | 
92 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleDevelopmentRegion
  8 | 	en
  9 | 	CFBundleExecutable
 10 | 	VirtualSMC
 11 | 	CFBundleIdentifier
 12 | 	as.vit9696.VirtualSMC
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	VirtualSMC
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	1.1.8
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	1.1.8
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		as.vit9696.VirtualSMC
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.vit9696.VirtualSMC
 49 | 			IOClass
 50 | 			VirtualSMC
 51 | 			IODeviceMemory
 52 | 			
 53 | 				
 54 | 					
 55 | 						address
 56 | 						768
 57 | 						length
 58 | 						32
 59 | 					
 60 | 				
 61 | 				
 62 | 					
 63 | 						address
 64 | 						4277141504
 65 | 						length
 66 | 						65536
 67 | 					
 68 | 				
 69 | 			
 70 | 			IOInterruptControllers
 71 | 			
 72 | 				io-apic-0
 73 | 			
 74 | 			IOInterruptSpecifiers
 75 | 			
 76 | 				
 77 | 				BgAAAAAAAAA=
 78 | 				
 79 | 			
 80 | 			IOMatchCategory
 81 | 			IOACPIPlatformDevice
 82 | 			IOName
 83 | 			SMC
 84 | 			IOProbeScore
 85 | 			60000
 86 | 			IOProviderClass
 87 | 			AppleACPIPlatformExpert
 88 | 			Keystore
 89 | 			
 90 | 				Generic
 91 | 				
 92 | 					
 93 | 						attr
 94 | 						
 95 | 						iA==
 96 | 						
 97 | 						comment
 98 | 						Total fan number, this should be put to a plugin
 99 | 						name
100 | 						
101 | 						Rk51bQ==
102 | 						
103 | 						type
104 | 						
105 | 						dWk4IA==
106 | 						
107 | 						value
108 | 						
109 | 						AA==
110 | 						
111 | 					
112 | 					
113 | 						attr
114 | 						
115 | 						gA==
116 | 						
117 | 						comment
118 | 						CPU plimit
119 | 						name
120 | 						
121 | 						TVNUYw==
122 | 						
123 | 						type
124 | 						
125 | 						dWk4IA==
126 | 						
127 | 						value
128 | 						
129 | 						AA==
130 | 						
131 | 					
132 | 					
133 | 						attr
134 | 						
135 | 						gA==
136 | 						
137 | 						comment
138 | 						FAN plimit (supposedly)
139 | 						name
140 | 						
141 | 						TVNUZg==
142 | 						
143 | 						type
144 | 						
145 | 						dWk4IA==
146 | 						
147 | 						value
148 | 						
149 | 						AA==
150 | 						
151 | 					
152 | 					
153 | 						attr
154 | 						
155 | 						gA==
156 | 						
157 | 						comment
158 | 						Memory plimit
159 | 						name
160 | 						
161 | 						TVNUbQ==
162 | 						
163 | 						type
164 | 						
165 | 						dWk4IA==
166 | 						
167 | 						value
168 | 						
169 | 						AA==
170 | 						
171 | 					
172 | 					
173 | 						attr
174 | 						
175 | 						gA==
176 | 						
177 | 						comment
178 | 						This should be 1 on laptops, and is overriden by sensors
179 | 						name
180 | 						
181 | 						QkFUUA==
182 | 						
183 | 						type
184 | 						
185 | 						ZmxhZw==
186 | 						
187 | 						value
188 | 						
189 | 						AA==
190 | 						
191 | 					
192 | 					
193 | 						attr
194 | 						
195 | 						gA==
196 | 						
197 | 						comment
198 | 						Only MacPros have custom illumination controllers
199 | 						name
200 | 						
201 | 						THNOTQ==
202 | 						
203 | 						type
204 | 						
205 | 						dWk4IA==
206 | 						
207 | 						value
208 | 						
209 | 						AA==
210 | 						
211 | 					
212 | 				
213 | 				GenericDesktopV1
214 | 				
215 | 				GenericDesktopV2
216 | 				
217 | 				GenericLaptopV1
218 | 				
219 | 				GenericLaptopV2
220 | 				
221 | 				GenericV1
222 | 				
223 | 					
224 | 						attr
225 | 						
226 | 						gA==
227 | 						
228 | 						comment
229 | 						GPU plimit
230 | 						name
231 | 						
232 | 						TVNUZw==
233 | 						
234 | 						type
235 | 						
236 | 						dWk4IA==
237 | 						
238 | 						value
239 | 						
240 | 						AA==
241 | 						
242 | 					
243 | 				
244 | 				GenericV2
245 | 				
246 | 					
247 | 						attr
248 | 						
249 | 						gA==
250 | 						
251 | 						comment
252 | 						E plimit (???)
253 | 						name
254 | 						
255 | 						TVNUZQ==
256 | 						
257 | 						type
258 | 						
259 | 						dWk4IA==
260 | 						
261 | 						value
262 | 						
263 | 						AA==
264 | 						
265 | 					
266 | 					
267 | 						attr
268 | 						
269 | 						gA==
270 | 						
271 | 						comment
272 | 						I plimit (???)
273 | 						name
274 | 						
275 | 						TVNUaQ==
276 | 						
277 | 						type
278 | 						
279 | 						dWk4IA==
280 | 						
281 | 						value
282 | 						
283 | 						AA==
284 | 						
285 | 					
286 | 					
287 | 						attr
288 | 						
289 | 						gA==
290 | 						
291 | 						comment
292 | 						J plimit (???)
293 | 						name
294 | 						
295 | 						TVNUag==
296 | 						
297 | 						type
298 | 						
299 | 						dWk4IA==
300 | 						
301 | 						value
302 | 						
303 | 						AA==
304 | 						
305 | 					
306 | 				
307 | 			
308 | 			ModelInfo
309 | 			
310 | 				GenericV1
311 | 				
312 | 					branch
313 | 					
314 | 					ajUyAAAAAAA=
315 | 					
316 | 					hwname
317 | 					
318 | 					c21jLXBpa2V0b24A
319 | 					
320 | 					platform
321 | 					
322 | 					ajUyAAAAAAA=
323 | 					
324 | 					rev
325 | 					
326 | 					AXQPAAAE
327 | 					
328 | 					revfb
329 | 					
330 | 					AXQPAAAE
331 | 					
332 | 					revfu
333 | 					
334 | 					AXQPAAAE
335 | 					
336 | 				
337 | 				GenericV2
338 | 				
339 | 					branch
340 | 					
341 | 					ajUyAAAAAAA=
342 | 					
343 | 					hwname
344 | 					
345 | 					c21jLWh1cm9ucml2ZXIA
346 | 					
347 | 					platform
348 | 					
349 | 					ajUyAAAAAAA=
350 | 					
351 | 					rev
352 | 					
353 | 					AigPAAAH
354 | 					
355 | 					revfb
356 | 					
357 | 					AigPAAAH
358 | 					
359 | 					revfu
360 | 					
361 | 					AigPAAAH
362 | 					
363 | 				
364 | 				GenericV3
365 | 				
366 | 					hwname
367 | 					
368 | 					c21jLWh1cm9ucml2ZXIA
369 | 					
370 | 					platform
371 | 					
372 | 					ajUyAAAAAAA=
373 | 					
374 | 				
375 | 			
376 | 			_STA
377 | 			11
378 | 			name
379 | 			
380 | 			QVBQMDAwMQA=
381 | 			
382 | 		
383 | 	
384 | 	LSMinimumSystemVersion
385 | 	10.6
386 | 	NSHumanReadableCopyright
387 | 	Copyright © 2017 vit9696. All rights reserved.
388 | 	OSBundleCompatibleVersion
389 | 	1.0
390 | 	OSBundleLibraries
391 | 	
392 | 		as.vit9696.Lilu
393 | 		1.2.0
394 | 		com.apple.iokit.IOACPIFamily
395 | 		1.0.0d1
396 | 		com.apple.kpi.bsd
397 | 		10.0.0
398 | 		com.apple.kpi.dsep
399 | 		10.0.0
400 | 		com.apple.kpi.iokit
401 | 		10.0.0
402 | 		com.apple.kpi.libkern
403 | 		10.0.0
404 | 		com.apple.kpi.mach
405 | 		10.0.0
406 | 		com.apple.kpi.unsupported
407 | 		10.0.0
408 | 	
409 | 	OSBundleRequired
410 | 	Root
411 | 
412 | 
413 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleExecutable
  8 | 	VoodooPS2Controller
  9 | 	CFBundleGetInfoString
 10 | 	2.1.8, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013
 11 | 	CFBundleIdentifier
 12 | 	as.acidanthera.voodoo.driver.PS2Controller
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	Voodoo PS/2 Controller
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	2.1.8
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	2.1.8
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		ACPI PS/2 Nub
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.acidanthera.voodoo.driver.PS2Controller
 49 | 			FindMouseDelay
 50 | 			100
 51 | 			IOClass
 52 | 			AppleACPIPS2Nub
 53 | 			IONameMatch
 54 | 			
 55 | 				PNP0303
 56 | 				PNP030B
 57 | 				PNP0320
 58 | 			
 59 | 			IOProviderClass
 60 | 			IOACPIPlatformDevice
 61 | 			MouseNameMatch
 62 | 			
 63 | 				PNP0F03
 64 | 				PNP0F0B
 65 | 				PNP0F0E
 66 | 				PNP0F13
 67 | 			
 68 | 		
 69 | 		ApplePS2Controller
 70 | 		
 71 | 			CFBundleIdentifier
 72 | 			as.acidanthera.voodoo.driver.PS2Controller
 73 | 			IOClass
 74 | 			ApplePS2Controller
 75 | 			IONameMatch
 76 | 			ps2controller
 77 | 			IOProviderClass
 78 | 			IOPlatformDevice
 79 | 			Platform Profile
 80 | 			
 81 | 				Default
 82 | 				
 83 | 					MouseWakeFirst
 84 | 					
 85 | 					WakeDelay
 86 | 					10
 87 | 				
 88 | 				HPQOEM
 89 | 				
 90 | 					1411
 91 | 					ProBook
 92 | 					1619
 93 | 					ProBook
 94 | 					161C
 95 | 					ProBook
 96 | 					164F
 97 | 					ProBook
 98 | 					167C
 99 | 					ProBook
100 | 					167E
101 | 					ProBook
102 | 					1680
103 | 					ProBook
104 | 					179B
105 | 					ProBook
106 | 					179C
107 | 					ProBook
108 | 					17A9
109 | 					ProBook
110 | 					17F0
111 | 					ProBook
112 | 					17F3
113 | 					ProBook
114 | 					17F6
115 | 					ProBook
116 | 					1942
117 | 					ProBook
118 | 					1949
119 | 					ProBook
120 | 					198F
121 | 					ProBook
122 | 					ProBook
123 | 					
124 | 						WakeDelay
125 | 						0
126 | 					
127 | 					ProBook-102
128 | 					ProBook
129 | 					ProBook-87
130 | 					ProBook
131 | 				
132 | 			
133 | 			RM,deliverNotifications
134 | 			
135 | 		
136 | 	
137 | 	LSMinimumSystemVersion
138 | 	10.11
139 | 	OSBundleCompatibleVersion
140 | 	2.1.8
141 | 	OSBundleLibraries
142 | 	
143 | 		com.apple.iokit.IOACPIFamily
144 | 		1.0.0d1
145 | 		com.apple.kpi.bsd
146 | 		8.0.0
147 | 		com.apple.kpi.iokit
148 | 		8.0.0
149 | 		com.apple.kpi.libkern
150 | 		8.0.0
151 | 		com.apple.kpi.mach
152 | 		8.0.0
153 | 		com.apple.kpi.unsupported
154 | 		8.0.0
155 | 	
156 | 	OSBundleRequired
157 | 	Console
158 | 
159 | 
160 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 
 5 | 	BuildMachineOSBuild
 6 | 	19F101
 7 | 	CFBundleDevelopmentRegion
 8 | 	en
 9 | 	CFBundleExecutable
10 | 	VoodooInput
11 | 	CFBundleIdentifier
12 | 	me.kishorprins.VoodooInput
13 | 	CFBundleInfoDictionaryVersion
14 | 	6.0
15 | 	CFBundleName
16 | 	VoodooInput
17 | 	CFBundlePackageType
18 | 	KEXT
19 | 	CFBundleShortVersionString
20 | 	1.0.8
21 | 	CFBundleSupportedPlatforms
22 | 	
23 | 		MacOSX
24 | 	
25 | 	CFBundleVersion
26 | 	1.0.8
27 | 	DTCompiler
28 | 	com.apple.compilers.llvm.clang.1_0
29 | 	DTPlatformBuild
30 | 	11E708
31 | 	DTPlatformVersion
32 | 	GM
33 | 	DTSDKBuild
34 | 	19G68
35 | 	DTSDKName
36 | 	macosx10.15
37 | 	DTXcode
38 | 	1160
39 | 	DTXcodeBuild
40 | 	11E708
41 | 	IOKitPersonalities
42 | 	
43 | 		Voodoo Input
44 | 		
45 | 			CFBundleIdentifier
46 | 			me.kishorprins.VoodooInput
47 | 			IOClass
48 | 			VoodooInput
49 | 			IOProbeScore
50 | 			200
51 | 			IOPropertyMatch
52 | 			
53 | 				VoodooInputSupported
54 | 				
55 | 			
56 | 			IOProviderClass
57 | 			IOService
58 | 		
59 | 	
60 | 	LSMinimumSystemVersion
61 | 	10.11
62 | 	NSHumanReadableCopyright
63 | 	Copyright © 2019 Kishor Prins. All rights reserved.
64 | 	OSBundleLibraries
65 | 	
66 | 		com.apple.iokit.IOHIDFamily
67 | 		2.0
68 | 		com.apple.kpi.iokit
69 | 		14
70 | 		com.apple.kpi.libkern
71 | 		14
72 | 		com.apple.kpi.mach
73 | 		13.0
74 | 	
75 | 	OSBundleRequired
76 | 	Root
77 | 
78 | 
79 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleExecutable
  8 | 	VoodooPS2Keyboard
  9 | 	CFBundleGetInfoString
 10 | 	2.1.8, Copyright Apple Computer, Inc. 2000-2003, RehabMan 2012-2013
 11 | 	CFBundleIdentifier
 12 | 	as.acidanthera.voodoo.driver.PS2Keyboard
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	Voodoo PS/2 Keyboard
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	2.1.8
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	2.1.8
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		ApplePS2Keyboard
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.acidanthera.voodoo.driver.PS2Keyboard
 49 | 			IOClass
 50 | 			ApplePS2Keyboard
 51 | 			IOProviderClass
 52 | 			ApplePS2KeyboardDevice
 53 | 			Platform Profile
 54 | 			
 55 | 				DELL
 56 | 				
 57 | 					Dell-Keys
 58 | 					
 59 | 						Breakless PS2
 60 | 						
 61 | 							e005
 62 | 							e006
 63 | 						
 64 | 						Function Keys Special
 65 | 						
 66 | 							;The following 12 items map Fn+fkeys to fkeys
 67 | 							e020=3b
 68 | 							e02e=3c
 69 | 							e030=3d
 70 | 							e022=3e
 71 | 							;Fn+f5 macro
 72 | 							;Fn+f6 macro
 73 | 							;Fn+f7 macro
 74 | 							;Fn+f8 macro
 75 | 							;Fn+f9 macro
 76 | 							;Fn+f10 no code
 77 | 							e005=57
 78 | 							e006=58
 79 | 							;The following 12 items map fkeys to Fn+fkeys
 80 | 							3b=e020
 81 | 							3c=e02e
 82 | 							3d=e030
 83 | 							3e=e022
 84 | 							;Fn+f5 macro
 85 | 							;Fn+f6 macro
 86 | 							;Fn+f7 macro
 87 | 							;Fn+f8 macro
 88 | 							;Fn+f9 macro
 89 | 							;Fn+f10 no code
 90 | 							57=e005
 91 | 							58=e006
 92 | 						
 93 | 						Function Keys Standard
 94 | 						
 95 | 							;The following 12 items map Fn+fkeys to Fn+fkeys
 96 | 							e020=e020
 97 | 							e02e=e02e
 98 | 							e030=e030
 99 | 							e022=e022
100 | 							;Fn+f5 macro
101 | 							;Fn+f6 macro
102 | 							;Fn+f7 macro
103 | 							;Fn+f8 macro
104 | 							;Fn+f9 macro
105 | 							;Fn+f10 no code
106 | 							e005=e005
107 | 							e006=e006
108 | 							;The following 12 items map fkeys to fkeys
109 | 							3b=3b
110 | 							3c=3c
111 | 							3d=3d
112 | 							3e=3e
113 | 							3f=3f
114 | 							40=40
115 | 							41=41
116 | 							42=42
117 | 							43=43
118 | 							44=44
119 | 							57=57
120 | 							58=58
121 | 						
122 | 					
123 | 					HSW-LPT
124 | 					Dell-Keys
125 | 					SNB-CPT
126 | 					
127 | 						ActionSwipeDown
128 | 						63 d, 63 u
129 | 						ActionSwipeUp
130 | 						61 d, 61 u
131 | 						Breakless PS2
132 | 						
133 | 							e01e;Touchpad Fn+f3 is breakless
134 | 							e06e;REVIEW: temporary for case that macro inversion does not work...
135 | 						
136 | 						Custom ADB Map
137 | 						
138 | 							e009=83;Dell Support to Launchpad
139 | 							e0f1=71;Call brightens up w RKA1 for special mode (was =90)
140 | 							e0f2=6b;Call brightens down w RKA2 for special mode (was =91)
141 | 							e06e=70;Map vidmirror key for special mode default is adb90
142 | 						
143 | 						Custom PS2 Map
144 | 						
145 | 							e01e=e037;Map tp disable to Fn+f3
146 | 							e037=e01e;Prevent PrntScr from triggering tp disable
147 | 						
148 | 						Function Keys Special
149 | 						
150 | 							;The following 12 items map Fn+fkeys to fkeys
151 | 							e06e=3b
152 | 							e008=3c
153 | 							e01e=3d
154 | 							e005=3e
155 | 							e006=3f
156 | 							e00c=40
157 | 							;Fn+f7 no dedicated macro
158 | 							e010=42
159 | 							e022=43
160 | 							e019=44
161 | 							e02e=57
162 | 							e030=58
163 | 							;The following 12 items map fkeys to Fn+fkeys
164 | 							3b=e06e;Map vidmirror key to f1
165 | 							3c=e0f0;Map radio toggle action from EC query to f2
166 | 							3d=e037;Map touchpad toggle button to f3
167 | 							3e=e0f2;Map acpi RKA2 to f4 brightness down
168 | 							3f=e0f1;Map acpi RKA1 to f5 brightness up
169 | 							40=e0f3;Map acpi RKA3 to f6 keyboard backlight
170 | 							;Fn+f7 no macro
171 | 							42=e010
172 | 							43=e022
173 | 							44=e019
174 | 							57=e02e
175 | 							58=e030
176 | 						
177 | 						Function Keys Standard
178 | 						
179 | 							;The following 12 items map Fn+fkeys to Fn+fkeys
180 | 							e06e=e06e;Fn+f1 macro translated
181 | 							e008=e008;Fn+f2 regular scancode and EC query call q8c
182 | 							e01e=e037;Fn+f3 regular scancode and EC controls LED
183 | 							e005=e005;Fn+f4 no ps2scancode and EC query call q81
184 | 							e006=e006;Fn+f5 no ps2scancode and EC query call q80
185 | 							e00c=e00c;Fn+f6 no ps2scancode and EC query call q8a
186 | 							;Fn+f7 no macro just regular f key
187 | 							e010=e010; Fn+f8 regular scancode
188 | 							e022=e022; Fn+f9 regular scancode
189 | 							e019=e019;Fn+f10 regular scancode
190 | 							e02e=e02e;Fn+f11 regular scancode
191 | 							e030=e030;Fn+f12 regular scancode
192 | 							;Fn+f13 is mute dedicated button that always produces e020 regardless of Fn
193 | 							;The following 12 items map fkeys to fkeys
194 | 							3b=3b
195 | 							3c=3c
196 | 							3d=3d
197 | 							3e=3e
198 | 							3f=3f
199 | 							40=40
200 | 							41=41
201 | 							42=42
202 | 							43=43
203 | 							44=44
204 | 							57=57
205 | 							58=58
206 | 						
207 | 						Macro Inversion
208 | 						
209 | 							;This section maps ps2 codes (packet format) received quickly (macros) into fake ps2 codes (packet format)
210 | 							;Fn+F1
211 | 							
212 | 							//8CbgAAAAACWwEZ
213 | 							
214 | 							
215 | 							//8C7gAAAAAC2wGZ
216 | 							
217 | 							
218 | 							//8C7gAAAAABmQLb
219 | 							
220 | 						
221 | 						MaximumMacroTime
222 | 						35000000
223 | 						Note-Author
224 | 						TimeWalker aka TimeWalker75a
225 | 						Note-Comment
226 | 						Keyboard Profile for DELL SandyBridge SecureCore Tiano based laptops (Vostro 3450 & 3750, Inspiron N4110, XPS L502x & L702x & L511z)
227 | 					
228 | 					WN09
229 | 					
230 | 						Breakless PS2
231 | 						
232 | 							e01b
233 | 							e008
234 | 							e01e
235 | 							e005
236 | 							e06e
237 | 							e006
238 | 						
239 | 						Custom ADB Map
240 | 						
241 | 							e01b=70
242 | 							e06e=83
243 | 						
244 | 						Custom PS2 Map
245 | 						
246 | 							56=2b
247 | 							29=56
248 | 							2b=29
249 | 							e01e=e037
250 | 							e037=e01e
251 | 						
252 | 					
253 | 					WN09a
254 | 					
255 | 						Breakless PS2
256 | 						
257 | 							e01b
258 | 							e008
259 | 							e01e
260 | 							e005
261 | 							e06e
262 | 							e006
263 | 						
264 | 						Custom ADB Map
265 | 						
266 | 							e01b=70
267 | 							e06e=83
268 | 						
269 | 						Custom PS2 Map
270 | 						
271 | 							e01e=e037
272 | 							e037=e01e
273 | 						
274 | 					
275 | 				
276 | 				Default
277 | 				
278 | 					Breakless PS2
279 | 					
280 | 						;Items must be strings in the form of breaklessscan (in hex)
281 | 					
282 | 					Custom ADB Map
283 | 					
284 | 						;Items must be strings in the form of scanfrom=adbto (in hex)
285 | 					
286 | 					Custom PS2 Map
287 | 					
288 | 						;Items must be strings in the form of scanfrom=scanto (in hex)
289 | 						e027=0;disable discrete fnkeys toggle
290 | 						e028=0;disable discrete trackpad toggle
291 | 					
292 | 					HIDF12EjectDelay
293 | 					250
294 | 					LogScanCodes
295 | 					0
296 | 					Make Application key into Apple Fn key
297 | 					
298 | 					Make Application key into right windows
299 | 					
300 | 					Make right modifier keys into Hangul and Hanja
301 | 					
302 | 					SleepPressTime
303 | 					0
304 | 					Swap capslock and left control
305 | 					
306 | 					Swap command and option
307 | 					
308 | 					Use ISO layout keyboard
309 | 					
310 | 					alt_handler_id
311 | 					3
312 | 				
313 | 				HPQOEM
314 | 				
315 | 					1411
316 | 					ProBook-102;ProBook 4520s
317 | 					1619
318 | 					ProBook-87;ProBook 6560b
319 | 					161C
320 | 					ProBook-87;ProBook 8460p
321 | 					164F
322 | 					ProBook-87;ProBook 5330m
323 | 					167C
324 | 					ProBook-102;ProBook 4530s
325 | 					167E
326 | 					ProBook-102;ProBook 4330s
327 | 					1680
328 | 					ProBook-102;ProBook 4230s
329 | 					179B
330 | 					ProBook-87;ProBook 6470b
331 | 					179C
332 | 					ProBook-87;ProBook 6470b
333 | 					17A9
334 | 					ProBook-87;ProBook 8570b
335 | 					17F0
336 | 					ProBook-102;ProBook 4340s
337 | 					17F3
338 | 					ProBook-102;ProBook 4440s
339 | 					17F6
340 | 					ProBook-102;ProBook 4540s
341 | 					1942
342 | 					ProBook-87;ProBook 450s G1
343 | 					1949
344 | 					ProBook-87;ProBook 450s G1
345 | 					1962
346 | 					Haswell-Envy;HP Envy 15-j063cl
347 | 					1963
348 | 					Haswell-Envy;HP Envy 15-j063cl
349 | 					1965
350 | 					Haswell-Envy;HP Envy 17t-j100
351 | 					1966
352 | 					Haswell-Envy;HP Envy 17t-j000
353 | 					198F
354 | 					ProBook-87;ProBook 450s G0
355 | 					Haswell-Envy
356 | 					
357 | 						Custom ADB Map
358 | 						
359 | 							e019=42;next
360 | 							e010=4d;previous
361 | 						
362 | 						Custom PS2 Map
363 | 						
364 | 							e045=e037
365 | 							e0ab=0;bogus Fn+F2/F3
366 | 						
367 | 					
368 | 					ProBook-102
369 | 					
370 | 						Custom PS2 Map
371 | 						
372 | 							e005=0
373 | 						
374 | 						Function Keys Special
375 | 						
376 | 							;The following 12 items map Fn+fkeys to fkeys
377 | 							e05f=3b
378 | 							e012=3c
379 | 							e017=3d
380 | 							e06e=3e
381 | 							e00a=3f
382 | 							e009=40
383 | 							e020=41
384 | 							e02e=42
385 | 							e030=43
386 | 							e010=44
387 | 							e022=57
388 | 							e019=58
389 | 							;The following 12 items map fkeys to Fn+fkeys
390 | 							3b=e05f
391 | 							3c=e012
392 | 							3d=e017
393 | 							3e=e06e
394 | 							3f=e00a
395 | 							40=e009
396 | 							41=e020
397 | 							42=e02e
398 | 							43=e030
399 | 							44=e010
400 | 							57=e022
401 | 							58=e019
402 | 						
403 | 						Function Keys Standard
404 | 						
405 | 							;The following 12 items map Fn+fkeys to Fn+fkeys
406 | 							e05f=e05f
407 | 							e012=e012
408 | 							e017=e017
409 | 							e06e=e06e
410 | 							e00a=e00a
411 | 							e009=e009
412 | 							e020=e020
413 | 							e02e=e02e
414 | 							e030=e030
415 | 							e010=e010
416 | 							e022=e022
417 | 							e019=e019
418 | 							;The following 12 items map fkeys to fkeys
419 | 							3b=3b
420 | 							3c=3c
421 | 							3d=3d
422 | 							3e=3e
423 | 							3f=3f
424 | 							40=40
425 | 							41=41
426 | 							42=42
427 | 							43=43
428 | 							44=44
429 | 							57=57
430 | 							58=58
431 | 						
432 | 						SleepPressTime
433 | 						3000
434 | 					
435 | 					ProBook-87
436 | 					
437 | 						Custom ADB Map
438 | 						
439 | 							46=4d;scroll => Previous-track
440 | 							e045=34;pause => Play-Pause
441 | 							e052=42;insert => Next-track
442 | 							e046=92;break => Eject
443 | 						
444 | 						Custom PS2 Map
445 | 						
446 | 							e005=0
447 | 						
448 | 						Function Keys Special
449 | 						
450 | 							;The following 8 items map Fn+fkeys to fkeys
451 | 							e05f=3d
452 | 							e06e=3e
453 | 							e02e=40
454 | 							e030=41
455 | 							e009=42
456 | 							e012=43
457 | 							e017=44
458 | 							e033=57
459 | 							;The following 8 items map fkeys to Fn+fkeys
460 | 							3d=e05f
461 | 							3e=e06e
462 | 							40=e02e
463 | 							41=e030
464 | 							42=e037
465 | 							43=e012
466 | 							44=e017
467 | 						
468 | 						Function Keys Standard
469 | 						
470 | 							;The following 8 items map Fn+fkeys to Fn+fkeys
471 | 							e05f=e05f
472 | 							e06e=e06e
473 | 							e02e=e02e
474 | 							e030=e030
475 | 							e009=e009
476 | 							e012=e012
477 | 							e017=e017
478 | 							e033=e033
479 | 							;The following 8 items map fkeys to fkeys
480 | 							3d=3d
481 | 							3e=3e
482 | 							40=40
483 | 							41=41
484 | 							42=42
485 | 							43=43
486 | 							44=44
487 | 						
488 | 						SleepPressTime
489 | 						3000
490 | 					
491 | 				
492 | 				Intel
493 | 				
494 | 					CALPELLA
495 | 					SamsungKeys
496 | 					SamsungKeys
497 | 					
498 | 						Breakless PS2
499 | 						
500 | 							e003
501 | 							e002
502 | 							e004
503 | 							e020
504 | 							;e031
505 | 							e033
506 | 							e006
507 | 							e077
508 | 							e079
509 | 							e008
510 | 							e009
511 | 						
512 | 						Custom ADB Map
513 | 						
514 | 							e002=70
515 | 							e006=80
516 | 							e008=71 (was =90)
517 | 							e009=6b (was =91)
518 | 						
519 | 						Function Keys Special
520 | 						
521 | 							;The following 12 items map Fn+fkeys to fkeys
522 | 							;fn+f1 no code
523 | 							e003=3c
524 | 							;fn+f3 weird code
525 | 							e002=3e
526 | 							e004=3f
527 | 							e020=40
528 | 							e031=41
529 | 							e033=42
530 | 							e006=43
531 | 							;fn+f10 weird code
532 | 							;fn+f11 no code
533 | 							;fn+f12 scrolllock
534 | 							;The following 12 items map fkeys to Fn+fkeys
535 | 							;fn+f1 no code
536 | 							3c=e003
537 | 							;fn+f3 weird code
538 | 							3e=e002
539 | 							3f=e004
540 | 							40=e020
541 | 							41=e031
542 | 							42=e033
543 | 							43=e006
544 | 							;fn+f10 weird code
545 | 							;fn+f11 no code
546 | 							;fn+f12 scrolllock
547 | 						
548 | 						Function Keys Standard
549 | 						
550 | 							;The following 12 items map Fn+fkeys to Fn+fkeys
551 | 							;fn+f1 no code
552 | 							e003=e003
553 | 							;fn+f3 weird code
554 | 							e002=e002
555 | 							e004=e004
556 | 							e020=e020
557 | 							e031=e031
558 | 							e033=e033
559 | 							e006=e006
560 | 							;fn+f10 weird code
561 | 							;fn+f11 no code
562 | 							;fn+f12 scrolllock
563 | 							;The following 12 items map fkeys to fkeys
564 | 							3b=3b
565 | 							3c=3c
566 | 							3d=3d
567 | 							3e=3e
568 | 							3f=3f
569 | 							40=40
570 | 							41=41
571 | 							42=42
572 | 							43=43
573 | 							44=44
574 | 							57=57
575 | 							58=58
576 | 						
577 | 					
578 | 				
579 | 				SECCSD
580 | 				
581 | 					LH43STAR
582 | 					SamsungKeys
583 | 					SamsungKeys
584 | 					
585 | 						Breakless PS2
586 | 						
587 | 							e020
588 | 							e02e
589 | 							e030
590 | 						
591 | 					
592 | 				
593 | 			
594 | 		
595 | 	
596 | 	LSMinimumSystemVersion
597 | 	10.11
598 | 	OSBundleLibraries
599 | 	
600 | 		as.acidanthera.voodoo.driver.PS2Controller
601 | 		2.1.8
602 | 		com.apple.iokit.IOHIDFamily
603 | 		1.0.0b1
604 | 		com.apple.kpi.bsd
605 | 		8.0.0
606 | 		com.apple.kpi.iokit
607 | 		8.0.0
608 | 		com.apple.kpi.libkern
609 | 		8.0.0
610 | 		com.apple.kpi.mach
611 | 		8.0.0
612 | 		com.apple.kpi.unsupported
613 | 		8.0.0
614 | 	
615 | 	OSBundleRequired
616 | 	Console
617 | 
618 | 
619 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleExecutable
  8 | 	VoodooPS2Mouse
  9 | 	CFBundleGetInfoString
 10 | 	2.1.8, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013
 11 | 	CFBundleIdentifier
 12 | 	as.acidanthera.voodoo.driver.PS2Mouse
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	Voodoo PS/2 Mouse
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	2.1.8
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	2.1.8
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		ApplePS2Mouse
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.acidanthera.voodoo.driver.PS2Mouse
 49 | 			HIDPointerAccelerationType
 50 | 			HIDTrackpadAcceleration
 51 | 			HIDScrollAccelerationType
 52 | 			HIDTrackpadScrollAcceleration
 53 | 			IOClass
 54 | 			ApplePS2Mouse
 55 | 			IOProviderClass
 56 | 			ApplePS2MouseDevice
 57 | 			Platform Profile
 58 | 			
 59 | 				Default
 60 | 				
 61 | 					ActLikeTrackpad
 62 | 					
 63 | 					ButtonCount
 64 | 					3
 65 | 					Darwin 16+
 66 | 					
 67 | 						ApplePreferenceCapability
 68 | 						
 69 | 						ApplePreferenceIdentifier
 70 | 						com.apple.AppleMultitouchTrackpad
 71 | 						MT Built-in
 72 | 						
 73 | 						MTHIDDevice
 74 | 						
 75 | 						SupportsGestureScrolling
 76 | 						
 77 | 						TrackpadEmbedded
 78 | 						
 79 | 						TrackpadFourFingerGestures
 80 | 						
 81 | 						TrackpadSecondaryClickCorners
 82 | 						
 83 | 						TrackpadThreeFingerDrag
 84 | 						
 85 | 					
 86 | 					DefaultResolution
 87 | 					240
 88 | 					DisableDevice
 89 | 					
 90 | 					DisableLEDUpdating
 91 | 					
 92 | 					FakeMiddleButton
 93 | 					
 94 | 					ForceDefaultResolution
 95 | 					
 96 | 					ForceSetResolution
 97 | 					
 98 | 					MiddleClickTime
 99 | 					100000000
100 | 					MouseCount
101 | 					0
102 | 					MouseYInverter
103 | 					1
104 | 					ProcessBluetoothMouseStopsTrackpad
105 | 					
106 | 					ProcessUSBMouseStopsTrackpad
107 | 					
108 | 					QuietTimeAfterTyping
109 | 					500000000
110 | 					ResolutionMode
111 | 					3
112 | 					ScrollResolution
113 | 					5
114 | 					ScrollYInverter
115 | 					1
116 | 					TrackpadScroll
117 | 					
118 | 					WakeDelay
119 | 					1000
120 | 				
121 | 				HPQOEM
122 | 				
123 | 					1411
124 | 					ProBook
125 | 					1619
126 | 					ProBook
127 | 					161C
128 | 					ProBook
129 | 					164F
130 | 					ProBook
131 | 					167C
132 | 					ProBook
133 | 					167E
134 | 					ProBook
135 | 					1680
136 | 					ProBook
137 | 					179B
138 | 					ProBook
139 | 					179C
140 | 					ProBook
141 | 					17A9
142 | 					ProBook
143 | 					17F0
144 | 					ProBook
145 | 					17F3
146 | 					ProBook
147 | 					17F6
148 | 					ProBook
149 | 					1942
150 | 					ProBook
151 | 					1949
152 | 					ProBook
153 | 					198F
154 | 					ProBook
155 | 					ProBook
156 | 					
157 | 						ActLikeTrackpad
158 | 						
159 | 						DisableDevice
160 | 						
161 | 					
162 | 					ProBook-102
163 | 					ProBook
164 | 					ProBook-87
165 | 					ProBook
166 | 				
167 | 			
168 | 			ProductID
169 | 			547
170 | 			RM,deliverNotifications
171 | 			
172 | 			USBMouseStopsTrackpad
173 | 			0
174 | 			VendorID
175 | 			1452
176 | 		
177 | 	
178 | 	LSMinimumSystemVersion
179 | 	10.11
180 | 	OSBundleLibraries
181 | 	
182 | 		as.acidanthera.voodoo.driver.PS2Controller
183 | 		2.1.8
184 | 		com.apple.iokit.IOHIDFamily
185 | 		1.0.0b1
186 | 		com.apple.kpi.iokit
187 | 		9.0.0
188 | 		com.apple.kpi.libkern
189 | 		9.0.0
190 | 		com.apple.kpi.mach
191 | 		9.0.0
192 | 	
193 | 	OSBundleRequired
194 | 	Console
195 | 
196 | 
197 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleExecutable
  8 | 	VoodooPS2Trackpad
  9 | 	CFBundleGetInfoString
 10 | 	2.1.8, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013
 11 | 	CFBundleIdentifier
 12 | 	as.acidanthera.voodoo.driver.PS2Trackpad
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	Voodoo PS/2 Trackpad
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	2.1.8
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	2.1.8
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		ALPS GlidePoint
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.acidanthera.voodoo.driver.PS2Trackpad
 49 | 			IOClass
 50 | 			ApplePS2ALPSGlidePoint
 51 | 			IOProbeScore
 52 | 			1500
 53 | 			IOProviderClass
 54 | 			ApplePS2MouseDevice
 55 | 			Platform Profile
 56 | 			
 57 | 				Default
 58 | 				
 59 | 					DisableDevice
 60 | 					
 61 | 				
 62 | 				HPQOEM
 63 | 				
 64 | 					1411
 65 | 					ProBook
 66 | 					1619
 67 | 					ProBook
 68 | 					161C
 69 | 					ProBook
 70 | 					164F
 71 | 					ProBook
 72 | 					167C
 73 | 					ProBook
 74 | 					167E
 75 | 					ProBook
 76 | 					1680
 77 | 					ProBook
 78 | 					179B
 79 | 					ProBook
 80 | 					179C
 81 | 					ProBook
 82 | 					17A9
 83 | 					ProBook
 84 | 					17F0
 85 | 					ProBook
 86 | 					17F3
 87 | 					ProBook
 88 | 					17F6
 89 | 					ProBook
 90 | 					1942
 91 | 					ProBook
 92 | 					1949
 93 | 					ProBook
 94 | 					198F
 95 | 					ProBook
 96 | 					ProBook
 97 | 					
 98 | 						DisableDevice
 99 | 						
100 | 					
101 | 					ProBook-102
102 | 					ProBook
103 | 					ProBook-87
104 | 					ProBook
105 | 				
106 | 			
107 | 		
108 | 		Elantech TouchPad
109 | 		
110 | 			CFBundleIdentifier
111 | 			as.acidanthera.voodoo.driver.PS2Trackpad
112 | 			IOClass
113 | 			ApplePS2Elan
114 | 			IOProbeScore
115 | 			7000
116 | 			IOProviderClass
117 | 			ApplePS2MouseDevice
118 | 			Platform Profile
119 | 			
120 | 				Default
121 | 				
122 | 					ButtonCount
123 | 					3
124 | 					Darwin 16+
125 | 					
126 | 						ApplePreferenceCapability
127 | 						
128 | 						ApplePreferenceIdentifier
129 | 						com.apple.AppleMultitouchTrackpad
130 | 						MT Built-in
131 | 						
132 | 						MTHIDDevice
133 | 						
134 | 						SupportsGestureScrolling
135 | 						
136 | 						TrackpadEmbedded
137 | 						
138 | 						TrackpadFourFingerGestures
139 | 						
140 | 						TrackpadSecondaryClickCorners
141 | 						
142 | 						TrackpadThreeFingerDrag
143 | 						
144 | 					
145 | 					DisableDevice
146 | 					
147 | 					ForceTouchMode
148 | 					1
149 | 					MouseResolution
150 | 					3
151 | 					MouseSampleRate
152 | 					200
153 | 					ProcessBluetoothMouseStopsTrackpad
154 | 					
155 | 					ProcessUSBMouseStopsTrackpad
156 | 					
157 | 					QuietTimeAfterTyping
158 | 					500000000
159 | 					ScrollResolution
160 | 					400
161 | 					SetHwResolution
162 | 					
163 | 					TrackpointDividerX
164 | 					120
165 | 					TrackpointDividerY
166 | 					120
167 | 					TrackpointMultiplierX
168 | 					120
169 | 					TrackpointMultiplierY
170 | 					120
171 | 					USBMouseStopsTrackpad
172 | 					0
173 | 					UseHighRate
174 | 					
175 | 					WakeDelay
176 | 					1000
177 | 				
178 | 			
179 | 			RM,deliverNotifications
180 | 			
181 | 		
182 | 		Native Multitouch Engine
183 | 		
184 | 			CFBundleIdentifier
185 | 			as.acidanthera.voodoo.driver.PS2Trackpad
186 | 			IOClass
187 | 			VoodooPS2NativeEngine
188 | 			IOMatchCategory
189 | 			VoodooPS2NativeEngine
190 | 			IOProviderClass
191 | 			VoodooPS2MultitouchInterface
192 | 		
193 | 		Sentelic FSP
194 | 		
195 | 			CFBundleIdentifier
196 | 			as.acidanthera.voodoo.driver.PS2Trackpad
197 | 			IOClass
198 | 			ApplePS2SentelicFSP
199 | 			IOProbeScore
200 | 			5500
201 | 			IOProviderClass
202 | 			ApplePS2MouseDevice
203 | 			Platform Profile
204 | 			
205 | 				Default
206 | 				
207 | 					DisableDevice
208 | 					
209 | 				
210 | 				HPQOEM
211 | 				
212 | 					1411
213 | 					ProBook
214 | 					1619
215 | 					ProBook
216 | 					161C
217 | 					ProBook
218 | 					164F
219 | 					ProBook
220 | 					167C
221 | 					ProBook
222 | 					167E
223 | 					ProBook
224 | 					1680
225 | 					ProBook
226 | 					179B
227 | 					ProBook
228 | 					179C
229 | 					ProBook
230 | 					17A9
231 | 					ProBook
232 | 					17F0
233 | 					ProBook
234 | 					17F3
235 | 					ProBook
236 | 					17F6
237 | 					ProBook
238 | 					1942
239 | 					ProBook
240 | 					1949
241 | 					ProBook
242 | 					198F
243 | 					ProBook
244 | 					ProBook
245 | 					
246 | 						DisableDevice
247 | 						
248 | 					
249 | 					ProBook-102
250 | 					ProBook
251 | 					ProBook-87
252 | 					ProBook
253 | 				
254 | 			
255 | 		
256 | 		Synaptics TouchPad
257 | 		
258 | 			CFBundleIdentifier
259 | 			as.acidanthera.voodoo.driver.PS2Trackpad
260 | 			HIDPointerAccelerationTable
261 | 			
262 | 			AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A
263 | 			AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA
264 | 			AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A
265 | 			AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA
266 | 			AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg
267 | 			AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu
268 | 			wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA
269 | 			DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG
270 | 			AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA
271 | 			KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA
272 | 			AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA
273 | 			BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA
274 | 			AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA
275 | 			AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA
276 | 			AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA
277 | 			AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO
278 | 			wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA
279 | 			AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE
280 | 			AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA
281 | 			DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA==
282 | 			
283 | 			HIDPointerAccelerationType
284 | 			HIDTrackpadAcceleration
285 | 			HIDScrollAccelerationTable
286 | 			
287 | 			AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA
288 | 			AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7
289 | 			AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK
290 | 			7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj
291 | 			Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA
292 | 			AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr
293 | 			PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA
294 | 			tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX
295 | 			ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA
296 | 			DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA
297 | 			AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN
298 | 			UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk
299 | 			S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA
300 | 			AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH
301 | 			N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA
302 | 			DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG
303 | 			ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA
304 | 			AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA
305 | 			AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N
306 | 			TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT
307 | 			vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW
308 | 			fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh
309 | 			gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA
310 | 			qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA
311 | 			AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg
312 | 			AAF8JGg=
313 | 			
314 | 			HIDScrollAccelerationType
315 | 			HIDTrackpadScrollAcceleration
316 | 			IOClass
317 | 			ApplePS2SynapticsTouchPad
318 | 			IOProbeScore
319 | 			6000
320 | 			IOProviderClass
321 | 			ApplePS2MouseDevice
322 | 			Platform Profile
323 | 			
324 | 				Default
325 | 				
326 | 					ButtonCount
327 | 					3
328 | 					Darwin 16+
329 | 					
330 | 						ApplePreferenceCapability
331 | 						
332 | 						ApplePreferenceIdentifier
333 | 						com.apple.AppleMultitouchTrackpad
334 | 						MT Built-in
335 | 						
336 | 						MTHIDDevice
337 | 						
338 | 						SupportsGestureScrolling
339 | 						
340 | 						TrackpadEmbedded
341 | 						
342 | 						TrackpadFourFingerGestures
343 | 						
344 | 						TrackpadSecondaryClickCorners
345 | 						
346 | 						TrackpadThreeFingerDrag
347 | 						
348 | 					
349 | 					DisableDevice
350 | 					
351 | 					DisableLEDUpdating
352 | 					
353 | 					FakeMiddleButton
354 | 					
355 | 					ForceTouchCustomDownThreshold
356 | 					90
357 | 					ForceTouchCustomPower
358 | 					8
359 | 					ForceTouchCustomUpThreshold
360 | 					20
361 | 					ForceTouchMode
362 | 					1
363 | 					ForceTouchPressureThreshold
364 | 					100
365 | 					MiddleClickTime
366 | 					100000000
367 | 					MouseMiddleScroll
368 | 					
369 | 					ProcessBluetoothMouseStopsTrackpad
370 | 					
371 | 					ProcessUSBMouseStopsTrackpad
372 | 					
373 | 					QuietTimeAfterTyping
374 | 					500000000
375 | 					Resolution
376 | 					400
377 | 					ScrollResolution
378 | 					400
379 | 					SkipPassThrough
380 | 					
381 | 					USBMouseStopsTrackpad
382 | 					0
383 | 					UseHighRate
384 | 					
385 | 					WakeDelay
386 | 					1000
387 | 				
388 | 				HPQOEM
389 | 				
390 | 					1411
391 | 					ProBook
392 | 					1619
393 | 					ProBook
394 | 					161C
395 | 					ProBook
396 | 					164F
397 | 					ProBook
398 | 					167C
399 | 					ProBook
400 | 					167E
401 | 					ProBook
402 | 					1680
403 | 					ProBook
404 | 					179B
405 | 					ProBook
406 | 					179C
407 | 					ProBook
408 | 					17A9
409 | 					ProBook
410 | 					17F0
411 | 					ProBook
412 | 					17F3
413 | 					ProBook
414 | 					17F6
415 | 					ProBook
416 | 					1942
417 | 					ProBook
418 | 					1949
419 | 					ProBook
420 | 					198F
421 | 					ProBook
422 | 					ProBook
423 | 					
424 | 						FingerZ
425 | 						40
426 | 					
427 | 					ProBook-102
428 | 					ProBook
429 | 					ProBook-87
430 | 					ProBook
431 | 				
432 | 				LENOVO
433 | 				
434 | 					T420
435 | 					Thinkpad_TrackPad
436 | 					T460
437 | 					Thinkpad_ClickPad
438 | 					T560
439 | 					Thinkpad_ClickPad
440 | 					Thinkpad_ClickPad
441 | 					
442 | 						FakeMiddleButton
443 | 						
444 | 						FingerZ
445 | 						30
446 | 						HWResetOnStart
447 | 						
448 | 						MouseMultiplierX
449 | 						2
450 | 						MouseMultiplierY
451 | 						2
452 | 						MouseScrollMultiplierX
453 | 						2
454 | 						MouseScrollMultiplierY
455 | 						2
456 | 						ScrollResolution
457 | 						800
458 | 						Thinkpad
459 | 						
460 | 					
461 | 					Thinkpad_TrackPad
462 | 					
463 | 						FakeMiddleButton
464 | 						
465 | 						FingerZ
466 | 						47
467 | 						HWResetOnStart
468 | 						
469 | 						Resolution
470 | 						3200
471 | 						ScrollResolution
472 | 						800
473 | 						Thinkpad
474 | 						
475 | 					
476 | 					X1CG3
477 | 					Thinkpad_ClickPad
478 | 				
479 | 			
480 | 			ProductID
481 | 			547
482 | 			RM,deliverNotifications
483 | 			
484 | 			VendorID
485 | 			1452
486 | 		
487 | 	
488 | 	LSMinimumSystemVersion
489 | 	10.11
490 | 	OSBundleLibraries
491 | 	
492 | 		as.acidanthera.voodoo.driver.PS2Controller
493 | 		2.1.8
494 | 		com.apple.iokit.IOHIDFamily
495 | 		1.0.0b1
496 | 		com.apple.kpi.iokit
497 | 		9.0.0
498 | 		com.apple.kpi.libkern
499 | 		9.0.0
500 | 		com.apple.kpi.mach
501 | 		9.0.0
502 | 	
503 | 	OSBundleRequired
504 | 	Console
505 | 
506 | 
507 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad
--------------------------------------------------------------------------------
/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 	BuildMachineOSBuild
  6 | 	19H2
  7 | 	CFBundleDevelopmentRegion
  8 | 	en
  9 | 	CFBundleExecutable
 10 | 	WhateverGreen
 11 | 	CFBundleIdentifier
 12 | 	as.vit9696.WhateverGreen
 13 | 	CFBundleInfoDictionaryVersion
 14 | 	6.0
 15 | 	CFBundleName
 16 | 	WhateverGreen
 17 | 	CFBundlePackageType
 18 | 	KEXT
 19 | 	CFBundleShortVersionString
 20 | 	1.4.4
 21 | 	CFBundleSignature
 22 | 	????
 23 | 	CFBundleSupportedPlatforms
 24 | 	
 25 | 		MacOSX
 26 | 	
 27 | 	CFBundleVersion
 28 | 	1.4.4
 29 | 	DTCompiler
 30 | 	com.apple.compilers.llvm.clang.1_0
 31 | 	DTPlatformBuild
 32 | 	11E708
 33 | 	DTPlatformVersion
 34 | 	GM
 35 | 	DTSDKBuild
 36 | 	19G68
 37 | 	DTSDKName
 38 | 	macosx10.15
 39 | 	DTXcode
 40 | 	1160
 41 | 	DTXcodeBuild
 42 | 	11E708
 43 | 	IOKitPersonalities
 44 | 	
 45 | 		NVHDAEnabler
 46 | 		
 47 | 			CFBundleIdentifier
 48 | 			as.vit9696.WhateverGreen
 49 | 			IOClass
 50 | 			NVHDAEnabler
 51 | 			IOMatchCategory
 52 | 			IOFramebuffer
 53 | 			IOPCIClassMatch
 54 | 			0x03000000&0xff000000
 55 | 			IOPCIMatch
 56 | 			0x000010de&0x0000ffff
 57 | 			IOProbeScore
 58 | 			300000
 59 | 			IOProviderClass
 60 | 			IOPCIDevice
 61 | 		
 62 | 		as.vit9696.WhateverGreen
 63 | 		
 64 | 			CFBundleIdentifier
 65 | 			as.vit9696.WhateverGreen
 66 | 			IOClass
 67 | 			WhateverGreen
 68 | 			IOMatchCategory
 69 | 			WhateverGreen
 70 | 			IOProviderClass
 71 | 			IOResources
 72 | 			IOResourceMatch
 73 | 			IOKit
 74 | 		
 75 | 	
 76 | 	LSMinimumSystemVersion
 77 | 	10.8
 78 | 	NSHumanReadableCopyright
 79 | 	Copyright © 2018 vit9696. All rights reserved.
 80 | 	OSBundleCompatibleVersion
 81 | 	1.0
 82 | 	OSBundleLibraries
 83 | 	
 84 | 		as.vit9696.Lilu
 85 | 		1.2.0
 86 | 		com.apple.iokit.IOPCIFamily
 87 | 		1.0.0b1
 88 | 		com.apple.kpi.bsd
 89 | 		12.0.0
 90 | 		com.apple.kpi.dsep
 91 | 		12.0.0
 92 | 		com.apple.kpi.iokit
 93 | 		12.0.0
 94 | 		com.apple.kpi.libkern
 95 | 		12.0.0
 96 | 		com.apple.kpi.mach
 97 | 		12.0.0
 98 | 		com.apple.kpi.unsupported
 99 | 		12.0.0
100 | 	
101 | 	OSBundleRequired
102 | 	Root
103 | 
104 | 
105 | 
--------------------------------------------------------------------------------
/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen
--------------------------------------------------------------------------------
/EFI/OC/OpenCore.efi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/OpenCore.efi
--------------------------------------------------------------------------------
/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav
--------------------------------------------------------------------------------
/EFI/OC/Resources/Font/Font_1x.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Font/Font_1x.bin
--------------------------------------------------------------------------------
/EFI/OC/Resources/Font/Font_1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Font/Font_1x.png
--------------------------------------------------------------------------------
/EFI/OC/Resources/Font/Font_2x.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Font/Font_2x.bin
--------------------------------------------------------------------------------
/EFI/OC/Resources/Font/Font_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Font/Font_2x.png
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/AppleRecv.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/AppleRecv.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/AppleTM.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/AppleTM.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/Cursor.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/Cursor.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/ExtAppleRecv.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/ExtAppleRecv.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/ExtAppleTM.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/ExtAppleTM.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/ExtHardDrive.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/ExtHardDrive.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/HardDrive.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/HardDrive.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldAppleRecv.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldAppleRecv.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldAppleTM.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldAppleTM.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldCursor.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldCursor.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldExtAppleRecv.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldExtAppleRecv.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldExtAppleTM.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldExtAppleTM.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldExtHardDrive.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldExtHardDrive.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldHardDrive.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldHardDrive.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldSelected.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldSelected.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldSelector.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldSelector.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldShell.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldShell.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldTool.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldTool.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/OldWindows.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/OldWindows.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/Selected.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/Selected.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/Selector.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/Selector.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/Shell.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/Shell.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/Tool.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/Tool.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Image/Windows.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Image/Windows.icns
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Apple.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Apple.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Apple.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Apple.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/AppleRecv.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/AppleRecv.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/AppleRecv.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/AppleRecv.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/AppleTM.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/AppleTM.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/AppleTM.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/AppleTM.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/EFIBoot.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/EFIBoot.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/EFIBoot.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/EFIBoot.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Other.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Other.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Other.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Other.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/ResetNVRAM.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/ResetNVRAM.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/ResetNVRAM.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/ResetNVRAM.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Shell.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Shell.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Shell.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Shell.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Tool.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Tool.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Tool.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Tool.lbl
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Windows.l2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Windows.l2x
--------------------------------------------------------------------------------
/EFI/OC/Resources/Label/Windows.lbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Dream471/ASUS-X550VC-Hackintosh/09bdc83340e315d439480b04b93cd762e613afcf/EFI/OC/Resources/Label/Windows.lbl
--------------------------------------------------------------------------------
/EFI/OC/config.plist:
--------------------------------------------------------------------------------
   1 | 
   2 | 
   3 | 
   4 | 
   5 | 	ACPI
   6 | 	
   7 | 		Add
   8 | 		
   9 | 			
  10 | 				Comment
  11 | 				DSDT.aml
  12 | 				Enabled
  13 | 				
  14 | 				Path
  15 | 				DSDT.aml
  16 | 			
  17 | 			
  18 | 				Comment
  19 | 				SSDT-ALS0.aml
  20 | 				Enabled
  21 | 				
  22 | 				Path
  23 | 				SSDT-ALS0.aml
  24 | 			
  25 | 			
  26 | 				Comment
  27 | 				SSDT-EC.aml
  28 | 				Enabled
  29 | 				
  30 | 				Path
  31 | 				SSDT-EC.aml
  32 | 			
  33 | 			
  34 | 				Comment
  35 | 				SSDT-PM.aml
  36 | 				Enabled
  37 | 				
  38 | 				Path
  39 | 				SSDT-PM.aml
  40 | 			
  41 | 		
  42 | 		Delete
  43 | 		
  44 | 			
  45 | 				All
  46 | 				
  47 | 				Comment
  48 | 				Drop CpuPm
  49 | 				Enabled
  50 | 				
  51 | 				OemTableId
  52 | 				Q3B1UG0AAAA=
  53 | 				TableLength
  54 | 				0
  55 | 				TableSignature
  56 | 				U1NEVA==
  57 | 			
  58 | 			
  59 | 				All
  60 | 				
  61 | 				Comment
  62 | 				Drop Cpu0Ist
  63 | 				Enabled
  64 | 				
  65 | 				OemTableId
  66 | 				Q3B1MElzdAA=
  67 | 				TableLength
  68 | 				0
  69 | 				TableSignature
  70 | 				U1NEVA==
  71 | 			
  72 | 		
  73 | 		Patch
  74 | 		
  75 | 			
  76 | 				Comment
  77 | 				Change _OSI to XOSI
  78 | 				Count
  79 | 				1
  80 | 				Enabled
  81 | 				
  82 | 				Find
  83 | 				X09TSQ==
  84 | 				Limit
  85 | 				0
  86 | 				Mask
  87 | 				
  88 | 				OemTableId
  89 | 				
  90 | 				Replace
  91 | 				WE9TSQ==
  92 | 				ReplaceMask
  93 | 				
  94 | 				Skip
  95 | 				0
  96 | 				TableLength
  97 | 				0
  98 | 				TableSignature
  99 | 				
 100 | 			
 101 | 			
 102 | 				Comment
 103 | 				Rename HDEF to AZAL
 104 | 				Count
 105 | 				1
 106 | 				Enabled
 107 | 				
 108 | 				Find
 109 | 				SERFRg==
 110 | 				Limit
 111 | 				0
 112 | 				Mask
 113 | 				
 114 | 				OemTableId
 115 | 				
 116 | 				Replace
 117 | 				QVpBTA==
 118 | 				ReplaceMask
 119 | 				
 120 | 				Skip
 121 | 				0
 122 | 				TableLength
 123 | 				0
 124 | 				TableSignature
 125 | 				
 126 | 			
 127 | 		
 128 | 		Quirks
 129 | 		
 130 | 			FadtEnableReset
 131 | 			
 132 | 			NormalizeHeaders
 133 | 			
 134 | 			RebaseRegions
 135 | 			
 136 | 			ResetHwSig
 137 | 			
 138 | 			ResetLogoStatus
 139 | 			
 140 | 		
 141 | 	
 142 | 	Booter
 143 | 	
 144 | 		MmioWhitelist
 145 | 		
 146 | 			
 147 | 				Address
 148 | 				4275159040
 149 | 				Comment
 150 | 				Haswell: SB_RCBA is a 0x4 page memory region, containing SPI_BASE at 0x3800 (SPI_BASE_ADDRESS)
 151 | 				Enabled
 152 | 				
 153 | 			
 154 | 			
 155 | 				Address
 156 | 				4278190080
 157 | 				Comment
 158 | 				Generic: PCI root is a 0x1000 page memory region used by some types of firmware
 159 | 				Enabled
 160 | 				
 161 | 			
 162 | 		
 163 | 		Quirks
 164 | 		
 165 | 			AvoidRuntimeDefrag
 166 | 			
 167 | 			DevirtualiseMmio
 168 | 			
 169 | 			DisableSingleUser
 170 | 			
 171 | 			DisableVariableWrite
 172 | 			
 173 | 			DiscardHibernateMap
 174 | 			
 175 | 			EnableSafeModeSlide
 176 | 			
 177 | 			EnableWriteUnprotector
 178 | 			
 179 | 			ForceExitBootServices
 180 | 			
 181 | 			ProtectMemoryRegions
 182 | 			
 183 | 			ProtectSecureBoot
 184 | 			
 185 | 			ProtectUefiServices
 186 | 			
 187 | 			ProvideCustomSlide
 188 | 			
 189 | 			ProvideMaxSlide
 190 | 			0
 191 | 			RebuildAppleMemoryMap
 192 | 			
 193 | 			SetupVirtualMap
 194 | 			
 195 | 			SignalAppleOS
 196 | 			
 197 | 			SyncRuntimePermissions
 198 | 			
 199 | 		
 200 | 	
 201 | 	DeviceProperties
 202 | 	
 203 | 		Add
 204 | 		
 205 | 			PciRoot(0x0)/Pci(0x1B,0x0)
 206 | 			
 207 | 				AAPL,slot-name
 208 | 				Internal@0,27,0
 209 | 				device_type
 210 | 				Audio device
 211 | 				hda-gfx
 212 | 				onboard-1
 213 | 				layout-id
 214 | 				HAAAAA==
 215 | 				model
 216 | 				7 Series/C216 Chipset Family High Definition Audio Controller
 217 | 			
 218 | 			PciRoot(0x0)/Pci(0x2,0x0)
 219 | 			
 220 | 				AAPL,ig-platform-id
 221 | 				AwBmAQ==
 222 | 				AAPL,slot-name
 223 | 				Internal@0,2,0
 224 | 				device_type
 225 | 				VGA compatible controller
 226 | 				hda-gfx
 227 | 				onboard-1
 228 | 				model
 229 | 				Intel 3rd Gen Core processor Graphics Controller
 230 | 			
 231 | 		
 232 | 		Delete
 233 | 		
 234 | 	
 235 | 	Kernel
 236 | 	
 237 | 		Add
 238 | 		
 239 | 			
 240 | 				Arch
 241 | 				Any
 242 | 				BundlePath
 243 | 				Lilu.kext
 244 | 				Comment
 245 | 				
 246 | 				Enabled
 247 | 				
 248 | 				ExecutablePath
 249 | 				Contents/MacOS/Lilu
 250 | 				MaxKernel
 251 | 				
 252 | 				MinKernel
 253 | 				
 254 | 				PlistPath
 255 | 				Contents/Info.plist
 256 | 			
 257 | 			
 258 | 				Arch
 259 | 				Any
 260 | 				BundlePath
 261 | 				VirtualSMC.kext
 262 | 				Comment
 263 | 				
 264 | 				Enabled
 265 | 				
 266 | 				ExecutablePath
 267 | 				Contents/MacOS/VirtualSMC
 268 | 				MaxKernel
 269 | 				
 270 | 				MinKernel
 271 | 				
 272 | 				PlistPath
 273 | 				Contents/Info.plist
 274 | 			
 275 | 			
 276 | 				Arch
 277 | 				Any
 278 | 				BundlePath
 279 | 				AirportBrcmFixup.kext
 280 | 				Comment
 281 | 				
 282 | 				Enabled
 283 | 				
 284 | 				ExecutablePath
 285 | 				Contents/MacOS/AirportBrcmFixup
 286 | 				MaxKernel
 287 | 				
 288 | 				MinKernel
 289 | 				
 290 | 				PlistPath
 291 | 				Contents/Info.plist
 292 | 			
 293 | 			
 294 | 				Arch
 295 | 				Any
 296 | 				BundlePath
 297 | 				AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext
 298 | 				Comment
 299 | 				
 300 | 				Enabled
 301 | 				
 302 | 				ExecutablePath
 303 | 				
 304 | 				MaxKernel
 305 | 				
 306 | 				MinKernel
 307 | 				
 308 | 				PlistPath
 309 | 				Contents/Info.plist
 310 | 			
 311 | 			
 312 | 				Arch
 313 | 				Any
 314 | 				BundlePath
 315 | 				AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext
 316 | 				Comment
 317 | 				
 318 | 				Enabled
 319 | 				
 320 | 				ExecutablePath
 321 | 				
 322 | 				MaxKernel
 323 | 				
 324 | 				MinKernel
 325 | 				
 326 | 				PlistPath
 327 | 				Contents/Info.plist
 328 | 			
 329 | 			
 330 | 				Arch
 331 | 				Any
 332 | 				BundlePath
 333 | 				BrcmBluetoothInjector.kext
 334 | 				Comment
 335 | 				
 336 | 				Enabled
 337 | 				
 338 | 				ExecutablePath
 339 | 				
 340 | 				MaxKernel
 341 | 				
 342 | 				MinKernel
 343 | 				
 344 | 				PlistPath
 345 | 				Contents/Info.plist
 346 | 			
 347 | 			
 348 | 				Arch
 349 | 				Any
 350 | 				BundlePath
 351 | 				BrcmFirmwareData.kext
 352 | 				Comment
 353 | 				
 354 | 				Enabled
 355 | 				
 356 | 				ExecutablePath
 357 | 				Contents/MacOS/BrcmFirmwareData
 358 | 				MaxKernel
 359 | 				
 360 | 				MinKernel
 361 | 				
 362 | 				PlistPath
 363 | 				Contents/Info.plist
 364 | 			
 365 | 			
 366 | 				Arch
 367 | 				Any
 368 | 				BundlePath
 369 | 				BrcmPatchRAM3.kext
 370 | 				Comment
 371 | 				
 372 | 				Enabled
 373 | 				
 374 | 				ExecutablePath
 375 | 				Contents/MacOS/BrcmPatchRAM3
 376 | 				MaxKernel
 377 | 				
 378 | 				MinKernel
 379 | 				
 380 | 				PlistPath
 381 | 				Contents/Info.plist
 382 | 			
 383 | 			
 384 | 				Arch
 385 | 				Any
 386 | 				BundlePath
 387 | 				RealtekRTL8111.kext
 388 | 				Comment
 389 | 				
 390 | 				Enabled
 391 | 				
 392 | 				ExecutablePath
 393 | 				Contents/MacOS/RealtekRTL8111
 394 | 				MaxKernel
 395 | 				
 396 | 				MinKernel
 397 | 				
 398 | 				PlistPath
 399 | 				Contents/Info.plist
 400 | 			
 401 | 			
 402 | 				Arch
 403 | 				Any
 404 | 				BundlePath
 405 | 				SMCBatteryManager.kext
 406 | 				Comment
 407 | 				
 408 | 				Enabled
 409 | 				
 410 | 				ExecutablePath
 411 | 				Contents/MacOS/SMCBatteryManager
 412 | 				MaxKernel
 413 | 				
 414 | 				MinKernel
 415 | 				
 416 | 				PlistPath
 417 | 				Contents/Info.plist
 418 | 			
 419 | 			
 420 | 				Arch
 421 | 				Any
 422 | 				BundlePath
 423 | 				SMCProcessor.kext
 424 | 				Comment
 425 | 				
 426 | 				Enabled
 427 | 				
 428 | 				ExecutablePath
 429 | 				Contents/MacOS/SMCProcessor
 430 | 				MaxKernel
 431 | 				
 432 | 				MinKernel
 433 | 				
 434 | 				PlistPath
 435 | 				Contents/Info.plist
 436 | 			
 437 | 			
 438 | 				Arch
 439 | 				Any
 440 | 				BundlePath
 441 | 				SMCSuperIO.kext
 442 | 				Comment
 443 | 				
 444 | 				Enabled
 445 | 				
 446 | 				ExecutablePath
 447 | 				Contents/MacOS/SMCSuperIO
 448 | 				MaxKernel
 449 | 				
 450 | 				MinKernel
 451 | 				
 452 | 				PlistPath
 453 | 				Contents/Info.plist
 454 | 			
 455 | 			
 456 | 				Arch
 457 | 				Any
 458 | 				BundlePath
 459 | 				VoodooPS2Controller.kext
 460 | 				Comment
 461 | 				
 462 | 				Enabled
 463 | 				
 464 | 				ExecutablePath
 465 | 				Contents/MacOS/VoodooPS2Controller
 466 | 				MaxKernel
 467 | 				
 468 | 				MinKernel
 469 | 				
 470 | 				PlistPath
 471 | 				Contents/Info.plist
 472 | 			
 473 | 			
 474 | 				Arch
 475 | 				Any
 476 | 				BundlePath
 477 | 				VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext
 478 | 				Comment
 479 | 				
 480 | 				Enabled
 481 | 				
 482 | 				ExecutablePath
 483 | 				Contents/MacOS/VoodooInput
 484 | 				MaxKernel
 485 | 				
 486 | 				MinKernel
 487 | 				
 488 | 				PlistPath
 489 | 				Contents/Info.plist
 490 | 			
 491 | 			
 492 | 				Arch
 493 | 				Any
 494 | 				BundlePath
 495 | 				VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext
 496 | 				Comment
 497 | 				
 498 | 				Enabled
 499 | 				
 500 | 				ExecutablePath
 501 | 				Contents/MacOS/VoodooPS2Keyboard
 502 | 				MaxKernel
 503 | 				
 504 | 				MinKernel
 505 | 				
 506 | 				PlistPath
 507 | 				Contents/Info.plist
 508 | 			
 509 | 			
 510 | 				Arch
 511 | 				Any
 512 | 				BundlePath
 513 | 				VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext
 514 | 				Comment
 515 | 				
 516 | 				Enabled
 517 | 				
 518 | 				ExecutablePath
 519 | 				Contents/MacOS/VoodooPS2Mouse
 520 | 				MaxKernel
 521 | 				
 522 | 				MinKernel
 523 | 				
 524 | 				PlistPath
 525 | 				Contents/Info.plist
 526 | 			
 527 | 			
 528 | 				Arch
 529 | 				Any
 530 | 				BundlePath
 531 | 				VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext
 532 | 				Comment
 533 | 				
 534 | 				Enabled
 535 | 				
 536 | 				ExecutablePath
 537 | 				Contents/MacOS/VoodooPS2Trackpad
 538 | 				MaxKernel
 539 | 				
 540 | 				MinKernel
 541 | 				
 542 | 				PlistPath
 543 | 				Contents/Info.plist
 544 | 			
 545 | 			
 546 | 				Arch
 547 | 				Any
 548 | 				BundlePath
 549 | 				WhateverGreen.kext
 550 | 				Comment
 551 | 				
 552 | 				Enabled
 553 | 				
 554 | 				ExecutablePath
 555 | 				Contents/MacOS/WhateverGreen
 556 | 				MaxKernel
 557 | 				
 558 | 				MinKernel
 559 | 				
 560 | 				PlistPath
 561 | 				Contents/Info.plist
 562 | 			
 563 | 			
 564 | 				Arch
 565 | 				Any
 566 | 				BundlePath
 567 | 				AppleALC.kext
 568 | 				Comment
 569 | 				
 570 | 				Enabled
 571 | 				
 572 | 				ExecutablePath
 573 | 				Contents/MacOS/AppleALC
 574 | 				MaxKernel
 575 | 				
 576 | 				MinKernel
 577 | 				
 578 | 				PlistPath
 579 | 				Contents/Info.plist
 580 | 			
 581 | 		
 582 | 		Block
 583 | 		
 584 | 			
 585 | 				Arch
 586 | 				Any
 587 | 				Comment
 588 | 				
 589 | 				Enabled
 590 | 				
 591 | 				Identifier
 592 | 				com.apple.driver.AppleTyMCEDriver
 593 | 				MaxKernel
 594 | 				
 595 | 				MinKernel
 596 | 				
 597 | 			
 598 | 		
 599 | 		Emulate
 600 | 		
 601 | 			Cpuid1Data
 602 | 			
 603 | 			Cpuid1Mask
 604 | 			
 605 | 			DummyPowerManagement
 606 | 			
 607 | 			MaxKernel
 608 | 			
 609 | 			MinKernel
 610 | 			
 611 | 		
 612 | 		Force
 613 | 		
 614 | 			
 615 | 				Arch
 616 | 				Any
 617 | 				BundlePath
 618 | 				System/Library/Extensions/IONetworkingFamily.kext
 619 | 				Comment
 620 | 				
 621 | 				Enabled
 622 | 				
 623 | 				ExecutablePath
 624 | 				Contents/MacOS/IONetworkingFamily
 625 | 				Identifier
 626 | 				com.apple.iokit.IONetworkingFamily
 627 | 				MaxKernel
 628 | 				13.99.99
 629 | 				MinKernel
 630 | 				
 631 | 				PlistPath
 632 | 				Contents/Info.plist
 633 | 			
 634 | 		
 635 | 		Patch
 636 | 		
 637 | 			
 638 | 				Arch
 639 | 				Any
 640 | 				Base
 641 | 				__ZN8AppleRTC18setupDateTimeAlarmEPK11RTCDateTime
 642 | 				Comment
 643 | 				Disable RTC wake scheduling
 644 | 				Count
 645 | 				1
 646 | 				Enabled
 647 | 				
 648 | 				Find
 649 | 				
 650 | 				Identifier
 651 | 				com.apple.driver.AppleRTC
 652 | 				Limit
 653 | 				0
 654 | 				Mask
 655 | 				
 656 | 				MaxKernel
 657 | 				
 658 | 				MinKernel
 659 | 				19.0.0
 660 | 				Replace
 661 | 				ww==
 662 | 				ReplaceMask
 663 | 				
 664 | 				Skip
 665 | 				0
 666 | 			
 667 | 			
 668 | 				Arch
 669 | 				Any
 670 | 				Base
 671 | 				_AcpiOsVprintf
 672 | 				Comment
 673 | 				Disable ACPI logging
 674 | 				Count
 675 | 				0
 676 | 				Enabled
 677 | 				
 678 | 				Find
 679 | 				
 680 | 				Identifier
 681 | 				com.apple.driver.AppleACPIPlatform
 682 | 				Limit
 683 | 				0
 684 | 				Mask
 685 | 				
 686 | 				MaxKernel
 687 | 				18.5.0
 688 | 				MinKernel
 689 | 				18.5.0
 690 | 				Replace
 691 | 				ww==
 692 | 				ReplaceMask
 693 | 				
 694 | 				Skip
 695 | 				0
 696 | 			
 697 | 			
 698 | 				Arch
 699 | 				x86_64
 700 | 				Base
 701 | 				__ZN11BCM5701Enet14getAdapterInfoEv
 702 | 				Comment
 703 | 				Broadcom BCM57785 patch
 704 | 				Count
 705 | 				1
 706 | 				Enabled
 707 | 				
 708 | 				Find
 709 | 				6AAA//9miYMABQAA
 710 | 				Identifier
 711 | 				com.apple.iokit.AppleBCM5701Ethernet
 712 | 				Limit
 713 | 				0
 714 | 				Mask
 715 | 				/wAA////////////
 716 | 				MaxKernel
 717 | 				
 718 | 				MinKernel
 719 | 				
 720 | 				Replace
 721 | 				uLQWAABmiYMABQAA
 722 | 				ReplaceMask
 723 | 				
 724 | 				Skip
 725 | 				0
 726 | 			
 727 | 			
 728 | 				Arch
 729 | 				x86_64
 730 | 				Base
 731 | 				_panic
 732 | 				Comment
 733 | 				Send panic string to serial port
 734 | 				Count
 735 | 				1
 736 | 				Enabled
 737 | 				
 738 | 				Find
 739 | 				
 740 | 				Identifier
 741 | 				kernel
 742 | 				Limit
 743 | 				0
 744 | 				Mask
 745 | 				
 746 | 				MaxKernel
 747 | 				
 748 | 				MinKernel
 749 | 				
 750 | 				Replace
 751 | 				MfaKD4TJdQT/xrEKZrr9A+yoIHT7Zrr4A4jI7kj/x4X2dN/r/g==
 752 | 				ReplaceMask
 753 | 				
 754 | 				Skip
 755 | 				0
 756 | 			
 757 | 			
 758 | 				Arch
 759 | 				x86_64
 760 | 				Base
 761 | 				_kernel_debug_string_early
 762 | 				Comment
 763 | 				Send early prints to serial port
 764 | 				Count
 765 | 				1
 766 | 				Enabled
 767 | 				
 768 | 				Find
 769 | 				
 770 | 				Identifier
 771 | 				kernel
 772 | 				Limit
 773 | 				0
 774 | 				Mask
 775 | 				
 776 | 				MaxKernel
 777 | 				
 778 | 				MinKernel
 779 | 				
 780 | 				Replace
 781 | 				MfaKD4TJdQT/xrEKZrr9A+yoIHT7Zrr4A4jI7kj/x4X2dN/D
 782 | 				ReplaceMask
 783 | 				
 784 | 				Skip
 785 | 				0
 786 | 			
 787 | 			
 788 | 				Arch
 789 | 				x86_64
 790 | 				Base
 791 | 				_vstart
 792 | 				Comment
 793 | 				Print K and dead loop
 794 | 				Count
 795 | 				1
 796 | 				Enabled
 797 | 				
 798 | 				Find
 799 | 				
 800 | 				Identifier
 801 | 				kernel
 802 | 				Limit
 803 | 				0
 804 | 				Mask
 805 | 				
 806 | 				MaxKernel
 807 | 				
 808 | 				MinKernel
 809 | 				
 810 | 				Replace
 811 | 				sUtmuv0D7KggdPtmuvgDiMjusQpmuv0D7KggdPtmuvgDiMju6/4=
 812 | 				ReplaceMask
 813 | 				
 814 | 				Skip
 815 | 				0
 816 | 			
 817 | 		
 818 | 		Quirks
 819 | 		
 820 | 			AppleCpuPmCfgLock
 821 | 			
 822 | 			AppleXcpmCfgLock
 823 | 			
 824 | 			AppleXcpmExtraMsrs
 825 | 			
 826 | 			AppleXcpmForceBoost
 827 | 			
 828 | 			CustomSMBIOSGuid
 829 | 			
 830 | 			DisableIoMapper
 831 | 			
 832 | 			DisableLinkeditJettison
 833 | 			
 834 | 			DisableRtcChecksum
 835 | 			
 836 | 			ExtendBTFeatureFlags
 837 | 			
 838 | 			ExternalDiskIcons
 839 | 			
 840 | 			ForceSecureBootScheme
 841 | 			
 842 | 			IncreasePciBarSize
 843 | 			
 844 | 			LapicKernelPanic
 845 | 			
 846 | 			LegacyCommpage
 847 | 			
 848 | 			PanicNoKextDump
 849 | 			
 850 | 			PowerTimeoutKernelPanic
 851 | 			
 852 | 			ThirdPartyDrives
 853 | 			
 854 | 			XhciPortLimit
 855 | 			
 856 | 		
 857 | 		Scheme
 858 | 		
 859 | 			FuzzyMatch
 860 | 			
 861 | 			KernelArch
 862 | 			x86_64
 863 | 			KernelCache
 864 | 			Auto
 865 | 		
 866 | 	
 867 | 	Misc
 868 | 	
 869 | 		BlessOverride
 870 | 		
 871 | 		Boot
 872 | 		
 873 | 			ConsoleAttributes
 874 | 			0
 875 | 			HibernateMode
 876 | 			None
 877 | 			HideAuxiliary
 878 | 			
 879 | 			PickerAttributes
 880 | 			1
 881 | 			PickerAudioAssist
 882 | 			
 883 | 			PickerMode
 884 | 			External
 885 | 			PollAppleHotKeys
 886 | 			
 887 | 			ShowPicker
 888 | 			
 889 | 			TakeoffDelay
 890 | 			0
 891 | 			Timeout
 892 | 			5
 893 | 		
 894 | 		Debug
 895 | 		
 896 | 			AppleDebug
 897 | 			
 898 | 			ApplePanic
 899 | 			
 900 | 			DisableWatchDog
 901 | 			
 902 | 			DisplayDelay
 903 | 			0
 904 | 			DisplayLevel
 905 | 			2147483650
 906 | 			SerialInit
 907 | 			
 908 | 			SysReport
 909 | 			
 910 | 			Target
 911 | 			3
 912 | 		
 913 | 		Entries
 914 | 		
 915 | 			
 916 | 				Arguments
 917 | 				
 918 | 				Auxiliary
 919 | 				
 920 | 				Comment
 921 | 				Not signed for security reasons
 922 | 				Enabled
 923 | 				
 924 | 				Name
 925 | 				CustomOS
 926 | 				Path
 927 | 				PciRoot(0x0)/Pci(0x1,0x1)/Pci(0x0,0x0)/NVMe(0x1,11-22-33-44-55-66-77-88)/HD(1,GPT,00000000-0000-0000-0000-000000000000,0x800,0x64000)/\EFI\BOOT\BOOTX64.EFI
 928 | 			
 929 | 			
 930 | 				Arguments
 931 | 				
 932 | 				Auxiliary
 933 | 				
 934 | 				Comment
 935 | 				
 936 | 				Enabled
 937 | 				
 938 | 				Name
 939 | 				Ubuntu
 940 | 				Path
 941 | 				PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x0,0xFFFF,0x0)/HD(4,GPT,004B542F-F681-4408-9AEF-8B3E43EB042D,0x6C330800,0xC8000)/\EFI\ubuntu\grubx64.efi
 942 | 			
 943 | 		
 944 | 		Security
 945 | 		
 946 | 			AllowNvramReset
 947 | 			
 948 | 			AllowSetDefault
 949 | 			
 950 | 			ApECID
 951 | 			0
 952 | 			AuthRestart
 953 | 			
 954 | 			BootProtect
 955 | 			None
 956 | 			DmgLoading
 957 | 			Any
 958 | 			EnablePassword
 959 | 			
 960 | 			ExposeSensitiveData
 961 | 			6
 962 | 			HaltLevel
 963 | 			2147483648
 964 | 			PasswordHash
 965 | 			
 966 | 			PasswordSalt
 967 | 			
 968 | 			ScanPolicy
 969 | 			3870467
 970 | 			SecureBootModel
 971 | 			Disabled
 972 | 			Vault
 973 | 			Optional
 974 | 		
 975 | 		Tools
 976 | 		
 977 | 	
 978 | 	NVRAM
 979 | 	
 980 | 		Add
 981 | 		
 982 | 			4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14
 983 | 			
 984 | 				DefaultBackgroundColor
 985 | 				AAAAAA==
 986 | 				UIScale
 987 | 				AQ==
 988 | 			
 989 | 			4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102
 990 | 			
 991 | 				rtc-blacklist
 992 | 				
 993 | 			
 994 | 			7C436110-AB2A-4BBB-A880-FE41995C9F82
 995 | 			
 996 | 				SystemAudioVolume
 997 | 				Rg==
 998 | 				boot-args
 999 | 				-wegnoegpu
1000 | 				csr-active-config
1001 | 				ZwAAAA==
1002 | 				prev-lang:kbd
1003 | 				emgtSGFuczoyNTI=
1004 | 				run-efi-updater
1005 | 				No
1006 | 			
1007 | 		
1008 | 		Delete
1009 | 		
1010 | 			4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14
1011 | 			
1012 | 				UIScale
1013 | 				DefaultBackgroundColor
1014 | 			
1015 | 			4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102
1016 | 			
1017 | 				rtc-blacklist
1018 | 			
1019 | 			7C436110-AB2A-4BBB-A880-FE41995C9F82
1020 | 			
1021 | 				boot-args
1022 | 			
1023 | 		
1024 | 		LegacyEnable
1025 | 		
1026 | 		LegacyOverwrite
1027 | 		
1028 | 		LegacySchema
1029 | 		
1030 | 			7C436110-AB2A-4BBB-A880-FE41995C9F82
1031 | 			
1032 | 				EFILoginHiDPI
1033 | 				EFIBluetoothDelay
1034 | 				LocationServicesEnabled
1035 | 				SystemAudioVolume
1036 | 				SystemAudioVolumeDB
1037 | 				SystemAudioVolumeSaved
1038 | 				bluetoothActiveControllerInfo
1039 | 				bluetoothInternalControllerInfo
1040 | 				flagstate
1041 | 				fmm-computer-name
1042 | 				nvda_drv
1043 | 				prev-lang:kbd
1044 | 			
1045 | 			8BE4DF61-93CA-11D2-AA0D-00E098032B8C
1046 | 			
1047 | 				Boot0080
1048 | 				Boot0081
1049 | 				Boot0082
1050 | 				BootNext
1051 | 				BootOrder
1052 | 			
1053 | 		
1054 | 		WriteFlash
1055 | 		
1056 | 	
1057 | 	PlatformInfo
1058 | 	
1059 | 		Automatic
1060 | 		
1061 | 		CustomMemory
1062 | 		
1063 | 		Generic
1064 | 		
1065 | 			AdviseWindows
1066 | 			
1067 | 			MLB
1068 | 			C02047501QX0000FB
1069 | 			ProcessorType
1070 | 			1793
1071 | 			ROM
1072 | 			bHHZTL2p
1073 | 			SpoofVendor
1074 | 			
1075 | 			SystemMemoryStatus
1076 | 			Auto
1077 | 			SystemProductName
1078 | 			MacBookPro16,2
1079 | 			SystemSerialNumber
1080 | 			C02DQ0EGML7H
1081 | 			SystemUUID
1082 | 			6F7893B9-889A-47B4-B615-E2E7336936D7
1083 | 		
1084 | 		UpdateDataHub
1085 | 		
1086 | 		UpdateNVRAM
1087 | 		
1088 | 		UpdateSMBIOS
1089 | 		
1090 | 		UpdateSMBIOSMode
1091 | 		Create
1092 | 	
1093 | 	UEFI
1094 | 	
1095 | 		APFS
1096 | 		
1097 | 			EnableJumpstart
1098 | 			
1099 | 			GlobalConnect
1100 | 			
1101 | 			HideVerbose
1102 | 			
1103 | 			JumpstartHotPlug
1104 | 			
1105 | 			MinDate
1106 | 			0
1107 | 			MinVersion
1108 | 			0
1109 | 		
1110 | 		Audio
1111 | 		
1112 | 			AudioCodec
1113 | 			0
1114 | 			AudioDevice
1115 | 			PciRoot(0x0)/Pci(0x1B,0x0)
1116 | 			AudioOut
1117 | 			0
1118 | 			AudioSupport
1119 | 			
1120 | 			MinimumVolume
1121 | 			50
1122 | 			PlayChime
1123 | 			Enabled
1124 | 			VolumeAmplifier
1125 | 			120
1126 | 		
1127 | 		ConnectDrivers
1128 | 		
1129 | 		Drivers
1130 | 		
1131 | 			HfsPlus.efi
1132 | 			OpenCanopy.efi
1133 | 			OpenRuntime.efi
1134 | 			AudioDxe.efi
1135 | 		
1136 | 		Input
1137 | 		
1138 | 			KeyFiltering
1139 | 			
1140 | 			KeyForgetThreshold
1141 | 			5
1142 | 			KeyMergeThreshold
1143 | 			2
1144 | 			KeySupport
1145 | 			
1146 | 			KeySupportMode
1147 | 			Auto
1148 | 			KeySwap
1149 | 			
1150 | 			PointerSupport
1151 | 			
1152 | 			PointerSupportMode
1153 | 			ASUS
1154 | 			TimerResolution
1155 | 			50000
1156 | 		
1157 | 		Output
1158 | 		
1159 | 			ClearScreenOnModeSwitch
1160 | 			
1161 | 			ConsoleMode
1162 | 			
1163 | 			DirectGopRendering
1164 | 			
1165 | 			ForceResolution
1166 | 			
1167 | 			IgnoreTextInGraphics
1168 | 			
1169 | 			ProvideConsoleGop
1170 | 			
1171 | 			ReconnectOnResChange
1172 | 			
1173 | 			ReplaceTabWithSpace
1174 | 			
1175 | 			Resolution
1176 | 			Max
1177 | 			SanitiseClearScreen
1178 | 			
1179 | 			TextRenderer
1180 | 			BuiltinGraphics
1181 | 			UgaPassThrough
1182 | 			
1183 | 		
1184 | 		ProtocolOverrides
1185 | 		
1186 | 			AppleAudio
1187 | 			
1188 | 			AppleBootPolicy
1189 | 			
1190 | 			AppleDebugLog
1191 | 			
1192 | 			AppleEvent
1193 | 			
1194 | 			AppleFramebufferInfo
1195 | 			
1196 | 			AppleImageConversion
1197 | 			
1198 | 			AppleImg4Verification
1199 | 			
1200 | 			AppleKeyMap
1201 | 			
1202 | 			AppleRtcRam
1203 | 			
1204 | 			AppleSecureBoot
1205 | 			
1206 | 			AppleSmcIo
1207 | 			
1208 | 			AppleUserInterfaceTheme
1209 | 			
1210 | 			DataHub
1211 | 			
1212 | 			DeviceProperties
1213 | 			
1214 | 			FirmwareVolume
1215 | 			
1216 | 			HashServices
1217 | 			
1218 | 			OSInfo
1219 | 			
1220 | 			UnicodeCollation
1221 | 			
1222 | 		
1223 | 		Quirks
1224 | 		
1225 | 			DeduplicateBootOrder
1226 | 			
1227 | 			ExitBootServicesDelay
1228 | 			0
1229 | 			IgnoreInvalidFlexRatio
1230 | 			
1231 | 			ReleaseUsbOwnership
1232 | 			
1233 | 			RequestBootVarRouting
1234 | 			
1235 | 			TscSyncTimeout
1236 | 			0
1237 | 			UnblockFsConnect
1238 | 			
1239 | 		
1240 | 		ReservedMemory
1241 | 		
1242 | 			
1243 | 				Address
1244 | 				268435456
1245 | 				Comment
1246 | 				HD3000: IGPU memory corruption errata
1247 | 				Enabled
1248 | 				
1249 | 				Size
1250 | 				268435456
1251 | 				Type
1252 | 				Reserved
1253 | 			
1254 | 			
1255 | 				Address
1256 | 				569344
1257 | 				Comment
1258 | 				Fix black screen on wake from hibernation for Lenovo Thinkpad T490
1259 | 				Enabled
1260 | 				
1261 | 				Size
1262 | 				4096
1263 | 				Type
1264 | 				RuntimeCode
1265 | 			
1266 | 		
1267 | 	
1268 | 
1269 | 
1270 | 
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | # ASUS-X550VC-Hackintosh
 4 | The repo aims to provide EFI files for ASUS X550VC laptop. Tested working on Big Sur.
 5 | 
 6 | please give it a star if you find it helpful !
 7 | 
 8 | 
 9 | 
10 | -blue)
11 | 
12 | ## Notes
13 | Consider the trend and future of hackintosh, the project has been shifted to OpenCore and won't update Clover anymore.
14 | 
15 | (IMPORTANT!!!) If you can't adjust brightness or sound via FN keys, try to use [Karabiner](https://karabiner-elements.pqrs.org/) to fix it.
16 | 
17 | ## Hardware
18 | |     Name     |        Model        |
19 | | :----------: | :-----------------: |
20 | |     CPU      |      Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz      |
21 | |     IGPU     |      Intel HD Graphics 4000      |
22 | |     GPU      |      NVIDIA 720M      |
23 | |     RAM      |      4GB onboard + 8GB DDDR3      |
24 | |     Storage  |      SSD TEAML5Lite3D1T 1TB      |
25 | |     Network  |      Originally AR9485 (work but really slow... ), replaced with DW1550/BCM94352HMB|
26 | |     Display  |      15.6" HD 60Hz, 1366 x 768      |
27 | |     Sound    |      Realtek ALC270      |
28 | |     Ethernet |      Qualcomm Atheros, AR8161 Gigabit Ethernet      |
29 | 
30 | ## BIOS Configur
31 | * `Advanced - USB Configuration - XHCI Pre-Boot Mode` **Enabled**
32 | * `Advanced - USB Configuration - Legacy USB Support` **Enabled**
33 | * `Boot - Launch CSM` **Disabled**
34 | * `Security - Secure Boot Control` **Disabled**
35 | 
36 | ## What's working
37 | * CPU power management
38 | * Wi-Fi & Bluetooth & Ethernet
39 | * HDMI (video & audio) / VGA
40 | * Sound
41 | * Touchpad (+gestures)
42 | * USB Ports
43 | * Battery percentage
44 | * Sleep & Wake (It takes me about 30 secs to completely sleep however)
45 | * Microphone
46 | * FN keys
47 | * 3.5mm jack
48 | * iCloud, iMessage, FaceTime
49 | * Camera
50 | * Airdrop, HandOff (May need to replace WLAN chip)
51 | 
52 | ## Bugs/not working
53 | * NVIDIA GPU, Apple has removed NVIDIA support since 10.13, so it won't be fixed.
54 | 
55 | 
56 | ## References
57 | * https://www.imacpc.net/archives/1617
58 | * https://applelife.ru/threads/asus-x550vc-i-asus-x550cc.41752/
59 | 
--------------------------------------------------------------------------------