├── .gitignore ├── EFI ├── BOOT │ ├── .contentFlavour │ ├── .contentVisibility │ └── BOOTx64.efi └── OC │ ├── .contentFlavour │ ├── ACPI │ ├── SSDT-ALS0.aml │ ├── SSDT-EC.aml │ ├── SSDT-GPI0.aml │ ├── SSDT-GPRW.aml │ ├── SSDT-HPET.aml │ ├── SSDT-PLUG.aml │ ├── SSDT-PNLF.aml │ ├── SSDT-RTC0.aml │ ├── SSDT-SBUS-MCHC.aml │ ├── SSDT-USBX.aml │ └── SSDT-XOSI.aml │ ├── Drivers │ ├── AudioDxe.efi │ ├── HfsPlus.efi │ ├── OpenCanopy.efi │ ├── OpenRuntime.efi │ └── ResetNvramEntry.efi │ ├── Kexts │ ├── AirportItlwmBigSur.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AirportItlwmCatalina.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AirportItlwmMonterey.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AirportItlwmSonoma.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AirportItlwmVentura.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── BrightnessKeys.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrightnessKeys │ ├── CpuTscSync.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── CpuTscSync │ ├── ECEnabler.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ECEnabler │ ├── HibernationFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── HibernationFixup │ ├── IntelBTPatcher.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBTPatcher │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── IntelBluetoothInjector.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ └── Resources │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── RestrictEvents.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── RestrictEvents │ ├── 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 │ ├── USBPorts.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ ├── 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 │ ├── VoodooI2CELAN.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooI2CELAN │ ├── VoodooInput.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooInput │ ├── 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 │ ├── WhateverGreen.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── WhateverGreen │ └── YogaSMC.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── YogaSMC │ │ └── _CodeSignature │ │ └── CodeResources │ ├── OpenCore.efi │ ├── Resources │ ├── Audio │ │ └── OCEFIAudio_VoiceOver_Boot.wav │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ └── Acidanthera │ │ │ ├── Custom │ │ │ ├── Badge.icns │ │ │ ├── Demo.icns │ │ │ ├── ModernApple.icns │ │ │ ├── ModernAppleRecv.icns │ │ │ ├── ModernAppleTM.icns │ │ │ ├── ModernBackground.icns │ │ │ ├── ModernCursor.icns │ │ │ ├── ModernExtAppleRecv.icns │ │ │ ├── ModernExtHardDrive.icns │ │ │ ├── ModernHardDrive.icns │ │ │ ├── ModernLeft.icns │ │ │ ├── ModernRight.icns │ │ │ ├── ModernSelected.icns │ │ │ ├── ModernSelector.icns │ │ │ ├── ModernShell.icns │ │ │ ├── ModernTool.icns │ │ │ ├── ModernWindows.icns │ │ │ └── WhiteModernSelector.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 2.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected 2.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector 2.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault 2.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown 2.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool 2.icns │ │ │ ├── Tool.icns │ │ │ ├── Windows 2.icns │ │ │ └── Windows.icns │ └── Label │ │ ├── Apple 2.l2x │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv 2.l2x │ │ ├── AppleRecv 2.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM 2.l2x │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot 2.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Other 2.l2x │ │ ├── Other 2.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM 2.l2x │ │ ├── ResetNVRAM 2.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── SIPDisabled 2.lbl │ │ ├── SIPDisabled.l2x │ │ ├── SIPDisabled.lbl │ │ ├── SIPEnabled 2.l2x │ │ ├── SIPEnabled 2.lbl │ │ ├── SIPEnabled.l2x │ │ ├── SIPEnabled.lbl │ │ ├── Shell 2.l2x │ │ ├── Shell 2.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool 2.l2x │ │ ├── Tool 2.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows 2.l2x │ │ ├── Windows 2.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ └── config.plist ├── README.md └── assets ├── macos-bigsur.png ├── macos-catalina.png ├── macos-monterey.png ├── macos-sonoma.png ├── macos-ventura.png └── smbios.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /EFI/BOOT/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/BOOT/.contentVisibility: -------------------------------------------------------------------------------- 1 | Disabled -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-ALS0.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-GPI0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-GPI0.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-GPRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-GPRW.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-RTC0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-RTC0.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-SBUS-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-SBUS-MCHC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmBigSur.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmBigSur.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmBigSur.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmBigSur.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmCatalina.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmCatalina.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmCatalina.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmCatalina.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmMonterey.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmMonterey.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmMonterey.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmMonterey.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmSonoma.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmSonoma.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmSonoma.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmSonoma.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmVentura.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmVentura.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwmVentura.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AirportItlwmVentura.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /EFI/OC/Kexts/CpuTscSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/CpuTscSync.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/CpuTscSync.kext/Contents/MacOS/CpuTscSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/CpuTscSync.kext/Contents/MacOS/CpuTscSync -------------------------------------------------------------------------------- /EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler -------------------------------------------------------------------------------- /EFI/OC/Kexts/HibernationFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/HibernationFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/IntelBluetoothInjector.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CELAN.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooI2CELAN.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CELAN.kext/Contents/MacOS/VoodooI2CELAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooI2CELAN.kext/Contents/MacOS/VoodooI2CELAN -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/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/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/Kexts/YogaSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/YogaSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/YogaSMC.kext/Contents/MacOS/YogaSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/YogaSMC.kext/Contents/MacOS/YogaSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/YogaSMC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Kexts/YogaSMC.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/Badge.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/Badge.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/Demo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/Demo.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernApple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernApple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernBackground.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernBackground.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernCursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernLeft.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernLeft.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernRight.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernRight.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernSelected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernSelector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernShell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernTool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/ModernWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/ModernWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Custom/WhiteModernSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/Custom/WhiteModernSelector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Apple 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleRecv 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleRecv 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleTM 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/EFIBoot 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Other 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Other 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/ResetNVRAM 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/ResetNVRAM 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPDisabled 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPEnabled 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPEnabled 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Shell 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Shell 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Tool 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Tool 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows 2.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Windows 2.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows 2.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Windows 2.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/EFI/OC/config.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/README.md -------------------------------------------------------------------------------- /assets/macos-bigsur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/assets/macos-bigsur.png -------------------------------------------------------------------------------- /assets/macos-catalina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/assets/macos-catalina.png -------------------------------------------------------------------------------- /assets/macos-monterey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/assets/macos-monterey.png -------------------------------------------------------------------------------- /assets/macos-sonoma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/assets/macos-sonoma.png -------------------------------------------------------------------------------- /assets/macos-ventura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/assets/macos-ventura.png -------------------------------------------------------------------------------- /assets/smbios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcasag/EFI-IDEAPAD-330-15IKBR-i5-8250U/HEAD/assets/smbios.png --------------------------------------------------------------------------------