├── .DS_Store ├── EFI ├── .DS_Store ├── Boot │ ├── .contentFlavour │ └── bootx64.efi └── OC │ ├── .DS_Store │ ├── ACPI │ ├── SSDT-ALS0.aml │ ├── SSDT-EC.aml │ ├── SSDT-HPET.aml │ ├── SSDT-PLUG-ALT.aml │ ├── SSDT-PNLF.aml │ ├── SSDT-SBUS-MCHC.aml │ ├── SSDT-USBX.aml │ └── SSDT-XOSI.aml │ ├── Drivers │ ├── HfsPlus.efi │ ├── OpenCanopy.efi │ ├── OpenRuntime.efi │ ├── ResetNvramEntry.efi │ └── ToggleSipEntry.efi │ ├── Kexts │ ├── .DS_Store │ ├── AMDRyzenCPUPowerManagement.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AMDRyzenCPUPowerManagement │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── AirportItlwm.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AmdTscSync.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AmdTscSync │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── AppleMCEReporterDisabler.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── BrightnessKeys.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrightnessKeys │ ├── ECEnabler.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ECEnabler │ ├── FeatureUnlock.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FeatureUnlock │ ├── HoRNDIS.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── HoRNDIS │ │ │ └── Resources │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── NootedRed.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NootedRed │ ├── NullEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NullEthernet │ ├── RestrictEvents.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── RestrictEvents │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SMCAMDProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCAMDProcessor │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ └── Resources │ │ │ └── SSDT-BATC.dsl │ ├── SMCLightSensor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCLightSensor │ ├── USBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── USBToolBox.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── USBToolBox │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── Resources │ │ │ └── VirtualSMCSDK │ │ │ ├── AppleSmc.h │ │ │ ├── AppleSmcBridge.hpp │ │ │ ├── kern_keyvalue.hpp │ │ │ ├── kern_smcinfo.hpp │ │ │ ├── kern_value.hpp │ │ │ └── kern_vsmcapi.hpp │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ └── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooGPIO │ │ │ ├── VoodooI2CServices.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooI2CServices │ │ │ └── VoodooInput.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VoodooI2CHID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooI2CHID │ └── VoodooPS2Controller.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooPS2Controller │ │ └── PlugIns │ │ ├── VoodooInput.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── VoodooPS2Keyboard.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Keyboard │ │ ├── VoodooPS2Mouse.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Mouse │ │ └── VoodooPS2Trackpad.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VoodooPS2Trackpad │ ├── OpenCore.efi │ ├── Resources │ ├── Audio │ │ └── OCEFIAudio_VoiceOver_Boot.wav │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ └── Acidanthera │ │ │ ├── Chardonnay │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ │ │ ├── GoldenGate │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ │ │ └── Syrah │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.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 │ │ ├── SIPDisabled.l2x │ │ ├── SIPDisabled.lbl │ │ ├── SIPEnabled.l2x │ │ ├── SIPEnabled.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ ├── Tools │ ├── CsrUtil.efi │ └── OpenShell.efi │ ├── config.plist │ └── oldConfig.plist ├── Readme.md └── imgs └── screenshot.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/.DS_Store -------------------------------------------------------------------------------- /EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/.DS_Store -------------------------------------------------------------------------------- /EFI/Boot/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/Boot/bootx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/Boot/bootx64.efi -------------------------------------------------------------------------------- /EFI/OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-ALS0.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG-ALT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG-ALT.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-SBUS-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-SBUS-MCHC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/ToggleSipEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Drivers/ToggleSipEntry.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/MacOS/AMDRyzenCPUPowerManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/MacOS/AMDRyzenCPUPowerManagement -------------------------------------------------------------------------------- /EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AmdTscSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AmdTscSync.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AmdTscSync.kext/Contents/MacOS/AmdTscSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AmdTscSync.kext/Contents/MacOS/AmdTscSync -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleMCEReporterDisabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/AppleMCEReporterDisabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/HoRNDIS.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /EFI/OC/Kexts/NootedRed.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/NootedRed.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/NootedRed.kext/Contents/MacOS/NootedRed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/NootedRed.kext/Contents/MacOS/NootedRed -------------------------------------------------------------------------------- /EFI/OC/Kexts/NullEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/NullEthernet.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/NullEthernet.kext/Contents/MacOS/NullEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/NullEthernet.kext/Contents/MacOS/NullEthernet -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/RestrictEvents.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/MacOS/SMCAMDProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/MacOS/SMCAMDProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/USBMap.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBToolBox.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/USBToolBox.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBToolBox.kext/Contents/MacOS/USBToolBox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/USBToolBox.kext/Contents/MacOS/USBToolBox -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/Tools/CsrUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Tools/CsrUtil.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/config.plist -------------------------------------------------------------------------------- /EFI/OC/oldConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/EFI/OC/oldConfig.plist -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/Readme.md -------------------------------------------------------------------------------- /imgs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubiao1998/Lenovo-Xiaoxin-Pro13-AMD-hackintosh/HEAD/imgs/screenshot.png --------------------------------------------------------------------------------