├── .DS_Store ├── .gitignore ├── 32Bit-only ├── .DS_Store ├── ATY_Init.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── ATY_Init │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── AppleACPIBatteryManager-Source-Code │ ├── AppleACPIBatteryDevice.cpp │ ├── AppleACPIBatteryDevice.h │ ├── AppleACPIBatteryManager.cpp │ ├── AppleACPIBatteryManager.h │ ├── AppleACPIBatteryManager.xcodeproj │ │ ├── chunnan.mode1 │ │ ├── chunnan.pbxuser │ │ └── project.pbxproj │ ├── Info.plist │ └── build │ │ ├── AppleACPIBatteryManager.build │ │ ├── AppleACPIBatteryManager.pbxindex │ │ │ ├── categories.pbxbtree │ │ │ ├── cdecls.pbxbtree │ │ │ ├── decls.pbxbtree │ │ │ ├── files.pbxbtree │ │ │ ├── imports.pbxbtree │ │ │ ├── pbxindex.header │ │ │ ├── protocols.pbxbtree │ │ │ ├── refs.pbxbtree │ │ │ ├── strings.pbxstrings │ │ │ │ ├── control │ │ │ │ └── strings │ │ │ ├── subclasses.pbxbtree │ │ │ └── symbols0.pbxsymbols │ │ └── Release │ │ │ └── AppleACPIBatteryManager.build │ │ │ ├── AppleACPIBatteryManager.dep │ │ │ ├── AppleACPIBatteryManager.hmap │ │ │ ├── DerivedSources │ │ │ └── AppleACPIBatteryManager_info.c │ │ │ ├── Objects-normal │ │ │ ├── i386 │ │ │ │ ├── AppleACPIBatteryDevice.o │ │ │ │ ├── AppleACPIBatteryManager │ │ │ │ ├── AppleACPIBatteryManager.LinkFileList │ │ │ │ ├── AppleACPIBatteryManager.o │ │ │ │ └── AppleACPIBatteryManager_info.o │ │ │ └── ppc │ │ │ │ ├── AppleACPIBatteryDevice.o │ │ │ │ ├── AppleACPIBatteryManager │ │ │ │ ├── AppleACPIBatteryManager.LinkFileList │ │ │ │ ├── AppleACPIBatteryManager.o │ │ │ │ └── AppleACPIBatteryManager_info.o │ │ │ └── Preprocessed-Info.plist │ │ └── Release │ │ ├── AppleACPIBatteryManager.kext.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── AppleACPIBatteryManager │ │ └── AppleACPIBatteryManager.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── AppleACPIBatteryManager ├── AppleACPIBatteryManager.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── AppleACPIBatteryManager ├── AppleIntelE1000e-Source-Code │ ├── AgereET131x │ │ ├── AgereET131x.cpp │ │ ├── AgereET131x.h │ │ ├── AgereET131x.xcodeproj │ │ │ ├── TemplateIcon.tiff │ │ │ └── project.pbxproj │ │ ├── AgereET131x_phy.cpp │ │ ├── AgereET131x_priv.cpp │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── Linux │ │ │ ├── ET1310_address_map.h │ │ │ ├── ET1310_common.h │ │ │ ├── ET1310_eeprom.c │ │ │ ├── ET1310_eeprom.h │ │ │ ├── ET1310_jagcore.c │ │ │ ├── ET1310_jagcore.h │ │ │ ├── ET1310_mac.c │ │ │ ├── ET1310_mac.h │ │ │ ├── ET1310_phy.c │ │ │ ├── ET1310_phy.h │ │ │ ├── ET1310_pm.c │ │ │ ├── ET1310_pm.h │ │ │ ├── ET1310_rx.c │ │ │ ├── ET1310_rx.h │ │ │ ├── ET1310_tx.c │ │ │ ├── ET1310_tx.h │ │ │ ├── et131x_adapter.h │ │ │ ├── et131x_config.c │ │ │ ├── et131x_config.h │ │ │ ├── et131x_debug.c │ │ │ ├── et131x_debug.h │ │ │ ├── et131x_defs.h │ │ │ ├── et131x_initpci.c │ │ │ ├── et131x_initpci.h │ │ │ ├── et131x_isr.c │ │ │ ├── et131x_isr.h │ │ │ ├── et131x_main.c │ │ │ ├── et131x_netdev.c │ │ │ ├── et131x_netdev.h │ │ │ ├── et131x_supp.c │ │ │ ├── et131x_supp.h │ │ │ └── et131x_version.h │ │ ├── et131x_osx.h │ │ ├── kcompat.h │ │ └── version.plist │ ├── AppleIGB │ │ ├── AppleIGB.cpp │ │ ├── AppleIGB.h │ │ ├── AppleIGB.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── ML.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── e1000_82575.c │ │ ├── e1000_82575.h │ │ ├── e1000_api.c │ │ ├── e1000_api.h │ │ ├── e1000_defines.h │ │ ├── e1000_hw.h │ │ ├── e1000_i210.c │ │ ├── e1000_i210.h │ │ ├── e1000_mac.c │ │ ├── e1000_mac.h │ │ ├── e1000_manage.c │ │ ├── e1000_manage.h │ │ ├── e1000_mbx.c │ │ ├── e1000_mbx.h │ │ ├── e1000_nvm.c │ │ ├── e1000_nvm.h │ │ ├── e1000_osdep.h │ │ ├── e1000_phy.c │ │ ├── e1000_phy.h │ │ ├── e1000_regs.h │ │ ├── igb.h │ │ ├── igb_debugfs.c │ │ ├── igb_ethtool.c │ │ ├── igb_hwmon.c │ │ ├── igb_main.c │ │ ├── igb_param.c │ │ ├── igb_procfs.c │ │ ├── igb_ptp.c │ │ ├── igb_regtest.h │ │ ├── igb_vmdq.c │ │ ├── igb_vmdq.h │ │ ├── kcompat.c │ │ └── kcompat.h │ ├── AppleIXGbe │ │ ├── AppleIXGbe.xcodeproj │ │ │ └── project.pbxproj │ │ ├── AppleIXGbe │ │ │ ├── AppleIXGbe-Info.plist │ │ │ ├── AppleIXGbe-Prefix.pch │ │ │ ├── AppleIXGbe.cpp │ │ │ ├── AppleIXGbe.h │ │ │ ├── AppleIXGbe_lib.c │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── ixgbe.h │ │ ├── ixgbe_82598.c │ │ ├── ixgbe_82598.h │ │ ├── ixgbe_82599.c │ │ ├── ixgbe_82599.h │ │ ├── ixgbe_api.c │ │ ├── ixgbe_api.h │ │ ├── ixgbe_common.c │ │ ├── ixgbe_common.h │ │ ├── ixgbe_dcb.c │ │ ├── ixgbe_dcb.h │ │ ├── ixgbe_dcb_82598.c │ │ ├── ixgbe_dcb_82598.h │ │ ├── ixgbe_dcb_82599.c │ │ ├── ixgbe_dcb_82599.h │ │ ├── ixgbe_dcb_nl.c │ │ ├── ixgbe_debugfs.c │ │ ├── ixgbe_ethtool.c │ │ ├── ixgbe_fcoe.c │ │ ├── ixgbe_fcoe.h │ │ ├── ixgbe_lib.c │ │ ├── ixgbe_main.c │ │ ├── ixgbe_mbx.c │ │ ├── ixgbe_mbx.h │ │ ├── ixgbe_osdep.h │ │ ├── ixgbe_param.c │ │ ├── ixgbe_phy.c │ │ ├── ixgbe_phy.h │ │ ├── ixgbe_procfs.c │ │ ├── ixgbe_ptp.c │ │ ├── ixgbe_sriov.c │ │ ├── ixgbe_sriov.h │ │ ├── ixgbe_sysfs.c │ │ ├── ixgbe_type.h │ │ ├── ixgbe_x540.c │ │ ├── ixgbe_x540.h │ │ ├── kcompat.c │ │ ├── kcompat.h │ │ ├── kcompat_ethtool.c │ │ └── kcompat_linux.h │ ├── AppleIntelE1000 │ │ ├── AppleIntelE1000.cpp │ │ ├── AppleIntelE1000.h │ │ ├── AppleIntelE1000.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── e1000.c │ │ ├── e1000.h │ │ ├── e1000_82540.c │ │ ├── e1000_82541.c │ │ ├── e1000_82541.h │ │ ├── e1000_82542.c │ │ ├── e1000_82543.c │ │ ├── e1000_82543.h │ │ ├── e1000_api.c │ │ ├── e1000_api.h │ │ ├── e1000_defines.h │ │ ├── e1000_hw.h │ │ ├── e1000_mac.c │ │ ├── e1000_mac.h │ │ ├── e1000_main.c │ │ ├── e1000_manage.c │ │ ├── e1000_manage.h │ │ ├── e1000_nvm.c │ │ ├── e1000_nvm.h │ │ ├── e1000_osdep.h │ │ ├── e1000_param.c │ │ ├── e1000_phy.c │ │ ├── e1000_phy.h │ │ ├── e1000_regs.h │ │ └── kcompat.h │ ├── AppleIntelE1000e │ │ ├── 80003es2lan.c │ │ ├── 80003es2lan.h │ │ ├── 82571.c │ │ ├── 82571.h │ │ ├── AppleIntelE1000e.cpp │ │ ├── AppleIntelE1000e.h │ │ ├── AppleIntelE1000e.xcodeproj │ │ │ └── project.pbxproj │ │ ├── COPYING │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── ML.xcodeproj │ │ │ └── project.pbxproj │ │ ├── defines.h │ │ ├── e1000.c │ │ ├── e1000.h │ │ ├── hw.h │ │ ├── ich8lan.c │ │ ├── ich8lan.h │ │ ├── kcompat.c │ │ ├── kcompat.h │ │ ├── mac.c │ │ ├── mac.h │ │ ├── manage.c │ │ ├── manage.h │ │ ├── netdev.c │ │ ├── nvm.c │ │ ├── nvm.h │ │ ├── param.c │ │ ├── phy.c │ │ ├── phy.h │ │ ├── ptp.c │ │ ├── regs.h │ │ └── version.plist │ ├── ApplePCIIDE │ │ ├── ApplePCIIDE.cpp │ │ ├── ApplePCIIDE.h │ │ ├── ApplePCIIDE.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ApplePCIIDEHardware.h │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── Readme.rtf │ │ └── version.plist │ ├── PStateChanger │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── KextIntf.c │ │ ├── KextIntf.h │ │ ├── LoadChart.h │ │ ├── LoadChart.m │ │ ├── PStateChanger-Info.plist │ │ ├── PStateChanger.xcodeproj │ │ │ └── project.pbxproj │ │ ├── PStateChangerAppDelegate.h │ │ ├── PStateChangerAppDelegate.m │ │ ├── PStateChanger_Prefix.pch │ │ ├── cpus.icns │ │ ├── main.m │ │ ├── monitor.c │ │ ├── monitor.h │ │ ├── preference.c │ │ └── preference.h │ ├── ViaVelocity │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── Linux │ │ │ ├── osdep.h │ │ │ ├── velocity_main.c │ │ │ ├── velocity_proc.c │ │ │ ├── velocity_proc.h │ │ │ └── velocity_stats.h │ │ ├── ViaVelocity.cpp │ │ ├── ViaVelocity.h │ │ ├── ViaVelocity.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ViaVelocity_mbuf.cpp │ │ ├── kcompat.cpp │ │ ├── kcompat.h │ │ ├── osdep.h │ │ ├── velocity.h │ │ ├── velocity_cfg.h │ │ ├── velocity_dbg.h │ │ ├── velocity_desc.h │ │ ├── velocity_hw.c │ │ ├── velocity_hw.h │ │ ├── velocity_mac.h │ │ ├── velocity_mii.h │ │ ├── velocity_wol.c │ │ └── velocity_wol.h │ ├── VoodooPState │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── Support.h │ │ ├── VoodooPState.cpp │ │ ├── VoodooPState.h │ │ ├── VoodooPState.xcodeproj │ │ │ ├── TemplateIcon.tiff │ │ │ └── project.pbxproj │ │ ├── amd.cpp │ │ ├── intel.cpp │ │ ├── probe.h │ │ └── strings.cpp │ └── html │ │ └── index.html ├── AppleIntelE1000e.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleIntelE1000e │ │ └── Resources │ │ └── InfoPlist.strings ├── AtherosL1Ethernet.i386.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AtherosL1Ethernet │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── AtherosL1eEthernet.i386.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AttansicL1eEthernet │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── AtherosL2Ethernet.i386.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AttansicL2Ethernet │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── AttansicL1eEthernet.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AttansicL1eEthernet │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── FakeSMC-32.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fakesmc │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── IOSDHCIBlockDevice.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── IOSDHCIBlockDevice │ │ └── Resources │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ └── Info.plist ├── LaptopDisplay.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── LaptopDisplay │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── RealtekR1000.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── RealtekR1000 │ │ └── Resources │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ └── Info.plist ├── VoodooBattery.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooBattery │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── VoodooPowerMini.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooPowerMini │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings └── Zip │ ├── ATY_Init.kext.zip │ ├── AppleACPIBatteryManager.kext.zip │ ├── AppleIntelE1000e.kext.zip │ ├── AtherosL1Ethernet.kext.zip │ ├── AtherosL1eEthernet.kext.zip │ ├── AtherosL2Ethernet.kext.zip │ ├── AttansicL1eEthernet.kext.zip │ ├── FakeSMC-32.kext.zip │ ├── IOSDHCIBlockDevice.kext.zip │ ├── LaptopDisplay.kext.zip │ ├── RealtekR1000.kext.zip │ ├── VoodooBattery.kext.zip │ └── VoodooPowerMini.kext.zip ├── Archive ├── AppleVIAATA.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleVIAATA │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── IOATAFamily.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── IOATAFamily │ │ └── PlugIns │ │ ├── AppleIntelPIIXATA.kext │ │ └── Contents │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeResources │ │ │ ├── CodeSignature │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleIntelPIIXATA │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ └── version.plist │ │ ├── IOATABlockStorage.kext │ │ └── Contents │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeResources │ │ │ ├── CodeSignature │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── IOATABlockStorage │ │ │ ├── Resources │ │ │ └── PCCard.icns │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ └── version.plist │ │ └── IOATAPIProtocolTransport.kext │ │ └── Contents │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeResources │ │ ├── CodeSignature │ │ ├── Info.plist │ │ ├── MacOS │ │ └── IOATAPIProtocolTransport │ │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeResources │ │ └── CodeSignature │ │ └── version.plist ├── NVinject.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── NVinject ├── NVinjectGo.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── NVinjectGo ├── OpenHaltRestart.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── OpenHaltRestart │ │ └── Resources │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ └── license.txt ├── SuperNForceATA.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── SuperNForceATA │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings └── SuperVIAATA.kext │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── SuperVIAATA │ └── Resources │ └── SuperVIAATA-Info.plist ├── FAT ├── .DS_Store ├── AppleACPIPS2Nub.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── AppleACPIPS2Nub ├── CPUi.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── CPUi │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── EvOreboot.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── EvOreboot │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── NVEnabler-64.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── NVEnabler │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── NullCPUPowerManagement.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── NullCPUPowerManagement │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── VoodooHDA.kext │ └── Contents │ │ ├── Info.plist │ │ ├── Info.plist.backup │ │ ├── MacOS │ │ └── VoodooHDA │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── VoodooPS2Controller.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooPS2Controller │ │ ├── PlugIns │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ │ └── Resources │ │ │ │ └── English.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ │ └── Resources │ │ │ │ └── English.lproj │ │ │ │ └── InfoPlist.strings │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooPS2Trackpad │ │ │ └── Resources │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── VoodooTSCSync.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooTSCSync │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings ├── Zip │ ├── AppleACPIPS2Nub.kext.zip │ ├── CPUi.kext.zip │ ├── EvOreboot.kext.zip │ ├── NVEnabler-64.kext.zip │ ├── NullCPUPowerManagement.kext.zip │ ├── VoodooHDA.kext.zip │ ├── VoodooPS2Controller.kext.zip │ ├── VoodooTSCSync.kext.zip │ └── fakesmc.kext.zip └── fakesmc.kext │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── fakesmc │ └── Resources │ └── English.lproj │ └── InfoPlist.strings ├── Injectors ├── AHCIPortInjector.kext │ └── Contents │ │ └── Info.plist ├── ATAPortInjector.kext │ └── Contents │ │ └── Info.plist ├── AtherosWiFiInjector.kext │ └── Contents │ │ └── Info.plist ├── BroadcomWiFiInjector.kext │ └── Contents │ │ └── Info.plist ├── SATA-unsupported.kext │ └── Contents │ │ └── Info.plist └── Zip │ ├── AHCIPortInjector.kext.zip │ ├── ATAPortInjector.kext.zip │ ├── AtherosWiFiInjector.kext.zip │ ├── BroadcomWiFiInjector.kext.zip │ └── SATA-unsupported.kext.zip └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /32Bit-only/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/.DS_Store -------------------------------------------------------------------------------- /32Bit-only/ATY_Init.kext/Contents/MacOS/ATY_Init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/ATY_Init.kext/Contents/MacOS/ATY_Init -------------------------------------------------------------------------------- /32Bit-only/ATY_Init.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/ATY_Init.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/AppleACPIBatteryManager.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2005 Apple Computer, Inc. All rights reserved. 3 | * 4 | * @APPLE_LICENSE_HEADER_START@ 5 | * 6 | * This file contains Original Code and/or Modifications of Original Code 7 | * as defined in and that are subject to the Apple Public Source License 8 | * Version 2.0 (the 'License'). You may not use this file except in 9 | * compliance with the License. Please obtain a copy of the License at 10 | * http://www.opensource.apple.com/apsl/ and read it before using this 11 | * file. 12 | * 13 | * The Original Code and all software distributed under the License are 14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 18 | * Please see the License for the specific language governing rights and 19 | * limitations under the License. 20 | * 21 | * @APPLE_LICENSE_HEADER_END@ 22 | */ 23 | 24 | #ifndef __AppleACPIBatteryManager__ 25 | #define __AppleACPIBatteryManager__ 26 | 27 | #include 28 | #include 29 | 30 | #include "AppleACPIBatteryDevice.h" 31 | 32 | #if 0 33 | #define DEBUG_LOG(args...) IOLog(args) 34 | #else 35 | #define DEBUG_LOG(args...) 36 | #endif 37 | 38 | class AppleACPIBatteryDevice; 39 | 40 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 41 | 42 | class AppleACPIBatteryManager : public IOService { 43 | OSDeclareDefaultStructors(AppleACPIBatteryManager) 44 | 45 | public: 46 | bool start(IOService *provider); 47 | 48 | IOReturn setPowerState(unsigned long which, IOService *whom); 49 | 50 | IOReturn message(UInt32 type, IOService *provider, void *argument); 51 | 52 | private: 53 | IOReturn setPollingInterval(int milliSeconds); 54 | 55 | IOCommandGate * fManagerGate; 56 | IOCommandGate * fBatteryGate; 57 | IOACPIPlatformDevice * fProvider; 58 | AppleACPIBatteryDevice * fBattery; 59 | 60 | public: 61 | UInt32 fBatterySTA; 62 | 63 | IOReturn getBatterySTA(void); 64 | 65 | IOReturn getBatteryBIF(void); 66 | 67 | IOReturn getBatteryBST(void); 68 | 69 | }; 70 | 71 | #endif -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/AppleACPIBatteryManager.xcodeproj/chunnan.pbxuser: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | 089C1669FE841209C02AAC07 /* Project object */ = { 4 | activeBuildConfigurationName = Release; 5 | activeTarget = 32D94FC30562CBF700B6AF17 /* AppleACPIBatteryManager */; 6 | codeSenseManager = A723A3460EB3659000618422 /* Code sense */; 7 | perUserDictionary = { 8 | PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { 9 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 10 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 11 | PBXFileTableDataSourceColumnWidthsKey = ( 12 | 20, 13 | 243, 14 | 20, 15 | 48.1626, 16 | 43, 17 | 43, 18 | 20, 19 | ); 20 | PBXFileTableDataSourceColumnsKey = ( 21 | PBXFileDataSource_FiletypeID, 22 | PBXFileDataSource_Filename_ColumnID, 23 | PBXFileDataSource_Built_ColumnID, 24 | PBXFileDataSource_ObjectSize_ColumnID, 25 | PBXFileDataSource_Errors_ColumnID, 26 | PBXFileDataSource_Warnings_ColumnID, 27 | PBXFileDataSource_Target_ColumnID, 28 | ); 29 | }; 30 | PBXPerProjectTemplateStateSaveDate = 246637962; 31 | PBXWorkspaceStateSaveDate = 246637962; 32 | }; 33 | sourceControlManager = A723A3450EB3659000618422 /* Source Control */; 34 | userBuildSettings = { 35 | }; 36 | }; 37 | 32D94FC30562CBF700B6AF17 /* AppleACPIBatteryManager */ = { 38 | activeExec = 0; 39 | }; 40 | A723A3450EB3659000618422 /* Source Control */ = { 41 | isa = PBXSourceControlManager; 42 | fallbackIsa = XCSourceControlManager; 43 | isSCMEnabled = 0; 44 | scmConfiguration = { 45 | }; 46 | scmType = ""; 47 | }; 48 | A723A3460EB3659000618422 /* Code sense */ = { 49 | isa = PBXCodeSenseManager; 50 | indexTemplatePath = ""; 51 | }; 52 | } 53 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | ${MODULE_NAME} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${MODULE_VERSION} 23 | IOKitPersonalities 24 | 25 | ACPI Battery Manager 26 | 27 | CFBundleIdentifier 28 | ${MODULE_NAME} 29 | IOClass 30 | AppleACPIBatteryManager 31 | IONameMatch 32 | PNP0C0A 33 | IOProviderClass 34 | IOACPIPlatformDevice 35 | 36 | 37 | OSBundleLibraries 38 | 39 | com.apple.iokit.IOACPIFamily 40 | 1.2.0 41 | com.apple.kpi.bsd 42 | 8.3.1 43 | com.apple.kpi.iokit 44 | 8.3.1 45 | com.apple.kpi.libkern 46 | 8.3.1 47 | com.apple.kpi.mach 48 | 8.3.1 49 | 50 | OSBundleRequired 51 | Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/categories.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/categories.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/cdecls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/cdecls.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/decls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/decls.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/files.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/files.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/imports.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/imports.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/pbxindex.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/pbxindex.header -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/protocols.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/protocols.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/refs.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/refs.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/strings.pbxstrings/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/strings.pbxstrings/control -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/subclasses.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/subclasses.pbxbtree -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/symbols0.pbxsymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/AppleACPIBatteryManager.pbxindex/symbols0.pbxsymbols -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/AppleACPIBatteryManager.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/AppleACPIBatteryManager.hmap -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/DerivedSources/AppleACPIBatteryManager_info.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | extern kern_return_t _start(kmod_info_t *ki, void *data); 4 | extern kern_return_t _stop(kmod_info_t *ki, void *data); 5 | 6 | KMOD_EXPLICIT_DECL(com.apple.driver.AppleACPIBatteryManager, "1.0.15", _start, _stop) 7 | __private_extern__ kmod_start_func_t *_realmain = 0; 8 | __private_extern__ kmod_stop_func_t *_antimain = 0; 9 | __private_extern__ int _kext_apple_cc = __APPLE_CC__ ; 10 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryDevice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryDevice.o -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/chunnan/Desktop/AppleACPIBatteryManager/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager.o 2 | /Users/chunnan/Desktop/AppleACPIBatteryManager/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryDevice.o 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager.o -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager_info.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/i386/AppleACPIBatteryManager_info.o -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryDevice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryDevice.o -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/chunnan/Desktop/AppleACPIBatteryManager/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager.o 2 | /Users/chunnan/Desktop/AppleACPIBatteryManager/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryDevice.o 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager.o -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager_info.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Objects-normal/ppc/AppleACPIBatteryManager_info.o -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/AppleACPIBatteryManager.build/Release/AppleACPIBatteryManager.build/Preprocessed-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | ${MODULE_NAME} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ${PRODUCT_NAME} 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | ${MODULE_VERSION} 25 | IOKitPersonalities 26 | 27 | ACPI Battery Manager 28 | 29 | CFBundleIdentifier 30 | ${MODULE_NAME} 31 | IOClass 32 | AppleACPIBatteryManager 33 | IONameMatch 34 | PNP0C0A 35 | IOProviderClass 36 | IOACPIPlatformDevice 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IOACPIFamily 42 | 1.2.0 43 | com.apple.kpi.bsd 44 | 8.3.1 45 | com.apple.kpi.iokit 46 | 8.3.1 47 | com.apple.kpi.libkern 48 | 8.3.1 49 | com.apple.kpi.mach 50 | 8.3.1 51 | 52 | OSBundleRequired 53 | Root 54 | 55 | 56 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/Release/AppleACPIBatteryManager.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleShortVersionString 14 | 1.0 15 | CFBundleSignature 16 | ???? 17 | CFBundleVersion 18 | 1.0 19 | dSYM_UUID 20 | 21 | ppc 22 | 2a 39 61 a9 1f 81 41 b1 a2 0f 53 87 16 be f4 bf 23 | i386 24 | 0f 21 8c 98 66 4c 40 2c 94 fe 3c 00 3a 3b 0f e0 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/Release/AppleACPIBatteryManager.kext.dSYM/Contents/Resources/DWARF/AppleACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/Release/AppleACPIBatteryManager.kext.dSYM/Contents/Resources/DWARF/AppleACPIBatteryManager -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/Release/AppleACPIBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AppleACPIBatteryManager 9 | CFBundleIdentifier 10 | com.apple.driver.AppleACPIBatteryManager 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AppleACPIBatteryManager 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.15 21 | IOKitPersonalities 22 | 23 | ACPI Battery Manager 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AppleACPIBatteryManager 27 | IOClass 28 | AppleACPIBatteryManager 29 | IONameMatch 30 | PNP0C0A 31 | IOProviderClass 32 | IOACPIPlatformDevice 33 | 34 | 35 | OSBundleLibraries 36 | 37 | com.apple.iokit.IOACPIFamily 38 | 1.2.0 39 | com.apple.kpi.bsd 40 | 8.3.1 41 | com.apple.kpi.iokit 42 | 8.3.1 43 | com.apple.kpi.libkern 44 | 8.3.1 45 | com.apple.kpi.mach 46 | 8.3.1 47 | 48 | OSBundleRequired 49 | Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager-Source-Code/build/Release/AppleACPIBatteryManager.kext/Contents/MacOS/AppleACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager-Source-Code/build/Release/AppleACPIBatteryManager.kext/Contents/MacOS/AppleACPIBatteryManager -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AppleACPIBatteryManager 9 | CFBundleIdentifier 10 | com.apple.driver.AppleACPIBatteryManager 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AppleACPIBatteryManager 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.15 21 | IOKitPersonalities 22 | 23 | ACPI Battery Manager 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AppleACPIBatteryManager 27 | IOClass 28 | AppleACPIBatteryManager 29 | IONameMatch 30 | PNP0C0A 31 | IOProviderClass 32 | IOACPIPlatformDevice 33 | 34 | 35 | OSBundleLibraries 36 | 37 | com.apple.iokit.IOACPIFamily 38 | 1.2.0 39 | com.apple.kpi.bsd 40 | 8.3.1 41 | com.apple.kpi.iokit 42 | 8.3.1 43 | com.apple.kpi.libkern 44 | 8.3.1 45 | com.apple.kpi.mach 46 | 8.3.1 47 | 48 | OSBundleRequired 49 | Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /32Bit-only/AppleACPIBatteryManager.kext/Contents/MacOS/AppleACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleACPIBatteryManager.kext/Contents/MacOS/AppleACPIBatteryManager -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/AgereET131x.xcodeproj/TemplateIcon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/AgereET131x.xcodeproj/TemplateIcon.tiff -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleName 10 | ${PRODUCT_NAME} 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | com.insanelymac.driver.${PRODUCT_NAME} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.2.3 23 | CFBundleShortVersionString 24 | 1.2.3a 25 | IOKitPersonalities 26 | 27 | Agere et1310 28 | 29 | CFBundleIdentifier 30 | com.insanelymac.driver.${PRODUCT_NAME} 31 | IOClass 32 | ${PRODUCT_NAME} 33 | IOPCIMatch 34 | 0xed0011C1 0xed0111C1 35 | IOProviderClass 36 | IOPCIDevice 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.5.0 43 | com.apple.iokit.IOPCIFamily 44 | 1.7 45 | com.apple.kpi.bsd 46 | 8.10.0 47 | com.apple.kpi.iokit 48 | 8.10.0 49 | com.apple.kpi.libkern 50 | 8.10.0 51 | com.apple.kpi.mach 52 | 8.10.0 53 | 54 | OSBundleRequired 55 | Network-Root 56 | 57 | 58 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_address_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_address_map.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_common.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_eeprom.c -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_jagcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_jagcore.c -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_jagcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_jagcore.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_mac.c -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_mac.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_pm.c -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/ET1310_pm.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_config.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_debug.c -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_debug.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_initpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_initpci.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_isr.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_netdev.c -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_netdev.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_supp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/Linux/et131x_supp.h -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AgereET131x/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 3 7 | CFBundleVersion 8 | 1.0.0d1 9 | ProductBuildVersion 10 | 9M2729 11 | ProjectName 12 | DevToolsWizardTemplates 13 | SourceVersion 14 | 11600000 15 | 16 | 17 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIGB/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIGB/ML.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIGB/e1000_nvm.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel(R) Gigabit Ethernet Linux driver 4 | Copyright(c) 2007-2015 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | The full GNU General Public License is included in this distribution in 16 | the file called "COPYING". 17 | 18 | Contact Information: 19 | Linux NICS 20 | e1000-devel Mailing List 21 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 22 | 23 | *******************************************************************************/ 24 | 25 | #ifndef _E1000_NVM_H_ 26 | #define _E1000_NVM_H_ 27 | 28 | struct e1000_fw_version { 29 | u32 etrack_id; 30 | u16 eep_major; 31 | u16 eep_minor; 32 | u16 eep_build; 33 | 34 | u8 invm_major; 35 | u8 invm_minor; 36 | u8 invm_img_type; 37 | 38 | bool or_valid; 39 | u16 or_major; 40 | u16 or_build; 41 | u16 or_patch; 42 | }; 43 | 44 | void e1000_init_nvm_ops_generic(struct e1000_hw *hw); 45 | s32 e1000_null_read_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c); 46 | void e1000_null_nvm_generic(struct e1000_hw *hw); 47 | s32 e1000_null_led_default(struct e1000_hw *hw, u16 *data); 48 | s32 e1000_null_write_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c); 49 | s32 e1000_acquire_nvm_generic(struct e1000_hw *hw); 50 | 51 | s32 e1000_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg); 52 | s32 e1000_read_mac_addr_generic(struct e1000_hw *hw); 53 | s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num, 54 | u32 pba_num_size); 55 | s32 e1000_read_pba_length_generic(struct e1000_hw *hw, u32 *pba_num_size); 56 | s32 e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 57 | s32 e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, 58 | u16 *data); 59 | s32 e1000_valid_led_default_generic(struct e1000_hw *hw, u16 *data); 60 | s32 e1000_validate_nvm_checksum_generic(struct e1000_hw *hw); 61 | s32 e1000_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, 62 | u16 *data); 63 | s32 e1000_update_nvm_checksum_generic(struct e1000_hw *hw); 64 | void e1000_release_nvm_generic(struct e1000_hw *hw); 65 | void e1000_get_fw_version(struct e1000_hw *hw, 66 | struct e1000_fw_version *fw_vers); 67 | 68 | #define E1000_STM_OPCODE 0xDB00 69 | 70 | #endif 71 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIGB/igb_debugfs.c: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel(R) Gigabit Ethernet Linux driver 4 | Copyright(c) 2007-2015 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | The full GNU General Public License is included in this distribution in 16 | the file called "COPYING". 17 | 18 | Contact Information: 19 | Linux NICS 20 | e1000-devel Mailing List 21 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 22 | 23 | *******************************************************************************/ 24 | 25 | #include "igb.h" 26 | 27 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIGB/igb_vmdq.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel(R) Gigabit Ethernet Linux driver 4 | Copyright(c) 2007-2015 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | The full GNU General Public License is included in this distribution in 16 | the file called "COPYING". 17 | 18 | Contact Information: 19 | Linux NICS 20 | e1000-devel Mailing List 21 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 22 | 23 | *******************************************************************************/ 24 | 25 | #ifndef _IGB_VMDQ_H_ 26 | #define _IGB_VMDQ_H_ 27 | 28 | #ifdef CONFIG_IGB_VMDQ_NETDEV 29 | int igb_vmdq_open(struct net_device *dev); 30 | int igb_vmdq_close(struct net_device *dev); 31 | netdev_tx_t igb_vmdq_xmit_frame(struct sk_buff *skb, struct net_device *dev); 32 | struct net_device_stats *igb_vmdq_get_stats(struct net_device *dev); 33 | void igb_vmdq_set_rx_mode(struct net_device *dev); 34 | int igb_vmdq_set_mac(struct net_device *dev, void *addr); 35 | int igb_vmdq_change_mtu(struct net_device *dev, int new_mtu); 36 | void igb_vmdq_tx_timeout(struct net_device *dev); 37 | void igb_vmdq_vlan_rx_register(struct net_device *dev, 38 | struct vlan_group *grp); 39 | void igb_vmdq_vlan_rx_add_vid(struct net_device *dev, unsigned short vid); 40 | void igb_vmdq_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid); 41 | void igb_vmdq_set_ethtool_ops(struct net_device *netdev); 42 | #endif /* CONFIG_IGB_VMDQ_NETDEV */ 43 | #endif /* _IGB_VMDQ_H_ */ 44 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/AppleIXGbe/AppleIXGbe-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | com.insanelymac.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 3.17.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 3.17.3 25 | IOKitPersonalities 26 | 27 | ixgbe 28 | 29 | IOProviderClass 30 | IOPCIDevice 31 | IOClass 32 | ${PRODUCT_NAME} 33 | CFBundleIdentifier 34 | com.insanelymac.${PRODUCT_NAME} 35 | IOPCIMatch 36 | 0x153a8086 0x153b8086 0x15598086 0x155a8086 0x15a08086 0x15a18086 0x15a28086 0x15a38086 37 | 38 | 39 | NSHumanReadableCopyright 40 | Intel Corporation 41 | OSBundleLibraries 42 | 43 | com.apple.iokit.IONetworkingFamily 44 | 1.5.0 45 | com.apple.iokit.IOPCIFamily 46 | 1.7 47 | com.apple.kpi.bsd 48 | 8.10.0 49 | com.apple.kpi.iokit 50 | 8.10.0 51 | com.apple.kpi.mach 52 | 8.10.0 53 | com.apple.kpi.libkern 54 | 8.10.0 55 | 56 | OSBundleRequired 57 | Network-Root 58 | 59 | 60 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/AppleIXGbe/AppleIXGbe-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'AppleIXGbe' target in the 'AppleIXGbe' project 3 | // 4 | 5 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/AppleIXGbe/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/ixgbe_82598.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel 10 Gigabit PCI Express Linux driver 4 | Copyright(c) 1999 - 2013 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | e1000-devel Mailing List 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 25 | 26 | *******************************************************************************/ 27 | 28 | #ifndef _IXGBE_82598_H_ 29 | #define _IXGBE_82598_H_ 30 | 31 | u32 ixgbe_get_pcie_msix_count_82598(struct ixgbe_hw *hw); 32 | s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw); 33 | s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw); 34 | s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq); 35 | s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on); 36 | s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val); 37 | s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val); 38 | s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset, 39 | u8 *eeprom_data); 40 | u32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw); 41 | s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw); 42 | void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw); 43 | void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw); 44 | #endif /* _IXGBE_82598_H_ */ 45 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/ixgbe_82599.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel 10 Gigabit PCI Express Linux driver 4 | Copyright(c) 1999 - 2013 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | e1000-devel Mailing List 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 25 | 26 | *******************************************************************************/ 27 | 28 | #ifndef _IXGBE_82599_H_ 29 | #define _IXGBE_82599_H_ 30 | 31 | s32 ixgbe_get_link_capabilities_82599(struct ixgbe_hw *hw, 32 | ixgbe_link_speed *speed, bool *autoneg); 33 | enum ixgbe_media_type ixgbe_get_media_type_82599(struct ixgbe_hw *hw); 34 | void ixgbe_disable_tx_laser_multispeed_fiber(struct ixgbe_hw *hw); 35 | void ixgbe_enable_tx_laser_multispeed_fiber(struct ixgbe_hw *hw); 36 | void ixgbe_flap_tx_laser_multispeed_fiber(struct ixgbe_hw *hw); 37 | s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw, 38 | ixgbe_link_speed speed, 39 | bool autoneg_wait_to_complete); 40 | s32 ixgbe_setup_mac_link_smartspeed(struct ixgbe_hw *hw, 41 | ixgbe_link_speed speed, 42 | bool autoneg_wait_to_complete); 43 | s32 ixgbe_start_mac_link_82599(struct ixgbe_hw *hw, 44 | bool autoneg_wait_to_complete); 45 | s32 ixgbe_setup_mac_link_82599(struct ixgbe_hw *hw, ixgbe_link_speed speed, 46 | bool autoneg_wait_to_complete); 47 | s32 ixgbe_setup_sfp_modules_82599(struct ixgbe_hw *hw); 48 | void ixgbe_init_mac_link_ops_82599(struct ixgbe_hw *hw); 49 | s32 ixgbe_reset_hw_82599(struct ixgbe_hw *hw); 50 | s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val); 51 | s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val); 52 | s32 ixgbe_start_hw_82599(struct ixgbe_hw *hw); 53 | s32 ixgbe_identify_phy_82599(struct ixgbe_hw *hw); 54 | s32 ixgbe_init_phy_ops_82599(struct ixgbe_hw *hw); 55 | u32 ixgbe_get_supported_physical_layer_82599(struct ixgbe_hw *hw); 56 | s32 ixgbe_enable_rx_dma_82599(struct ixgbe_hw *hw, u32 regval); 57 | #endif /* _IXGBE_82599_H_ */ 58 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/ixgbe_fcoe.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel 10 Gigabit PCI Express Linux driver 4 | Copyright(c) 1999 - 2013 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | e1000-devel Mailing List 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 25 | 26 | *******************************************************************************/ 27 | 28 | #ifndef _IXGBE_FCOE_H 29 | #define _IXGBE_FCOE_H 30 | 31 | #ifdef IXGBE_FCOE 32 | 33 | #include 34 | #include 35 | 36 | /* shift bits within STAT fo FCSTAT */ 37 | #define IXGBE_RXDADV_FCSTAT_SHIFT 4 38 | 39 | /* ddp user buffer */ 40 | #define IXGBE_BUFFCNT_MAX 256 /* 8 bits bufcnt */ 41 | #define IXGBE_FCPTR_ALIGN 16 42 | #define IXGBE_FCPTR_MAX (IXGBE_BUFFCNT_MAX * sizeof(dma_addr_t)) 43 | #define IXGBE_FCBUFF_4KB 0x0 44 | #define IXGBE_FCBUFF_8KB 0x1 45 | #define IXGBE_FCBUFF_16KB 0x2 46 | #define IXGBE_FCBUFF_64KB 0x3 47 | #define IXGBE_FCBUFF_MAX 65536 /* 64KB max */ 48 | #define IXGBE_FCBUFF_MIN 4096 /* 4KB min */ 49 | #define IXGBE_FCOE_DDP_MAX 512 /* 9 bits xid */ 50 | 51 | /* Default user priority to use for FCoE */ 52 | #define IXGBE_FCOE_DEFUP 3 53 | 54 | /* fcerr */ 55 | #define IXGBE_FCERR_BADCRC 0x00100000 56 | #define IXGBE_FCERR_EOFSOF 0x00200000 57 | #define IXGBE_FCERR_NOFIRST 0x00300000 58 | #define IXGBE_FCERR_OOOSEQ 0x00400000 59 | #define IXGBE_FCERR_NODMA 0x00500000 60 | #define IXGBE_FCERR_PKTLOST 0x00600000 61 | 62 | /* FCoE DDP for target mode */ 63 | #define __IXGBE_FCOE_TARGET 1 64 | 65 | struct ixgbe_fcoe_ddp { 66 | int len; 67 | u32 err; 68 | unsigned int sgc; 69 | struct scatterlist *sgl; 70 | dma_addr_t udp; 71 | u64 *udl; 72 | struct dma_pool *pool; 73 | }; 74 | 75 | /* per cpu variables */ 76 | struct ixgbe_fcoe_ddp_pool { 77 | struct dma_pool *pool; 78 | u64 noddp; 79 | u64 noddp_ext_buff; 80 | }; 81 | 82 | struct ixgbe_fcoe { 83 | struct ixgbe_fcoe_ddp_pool __percpu *ddp_pool; 84 | atomic_t refcnt; 85 | spinlock_t lock; 86 | struct ixgbe_fcoe_ddp ddp[IXGBE_FCOE_DDP_MAX]; 87 | void *extra_ddp_buffer; 88 | dma_addr_t extra_ddp_buffer_dma; 89 | unsigned long mode; 90 | u8 up; 91 | u8 up_set; 92 | }; 93 | #endif /* IXGBE_FCOE */ 94 | 95 | #endif /* _IXGBE_FCOE_H */ 96 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/ixgbe_sriov.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel 10 Gigabit PCI Express Linux driver 4 | Copyright(c) 1999 - 2013 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | e1000-devel Mailing List 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 25 | 26 | *******************************************************************************/ 27 | 28 | 29 | #ifndef _IXGBE_SRIOV_H_ 30 | #define _IXGBE_SRIOV_H_ 31 | 32 | void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter); 33 | int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid, u32 vf); 34 | void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe); 35 | void ixgbe_msg_task(struct ixgbe_adapter *adapter); 36 | int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter, 37 | int vf, unsigned char *mac_addr); 38 | void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter); 39 | void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter); 40 | #ifdef IFLA_VF_MAX 41 | int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int queue, u8 *mac); 42 | int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int queue, u16 vlan, 43 | u8 qos); 44 | int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate); 45 | #ifdef HAVE_VF_SPOOFCHK_CONFIGURE 46 | int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting); 47 | #endif 48 | int ixgbe_ndo_get_vf_config(struct net_device *netdev, 49 | int vf, struct ifla_vf_info *ivi); 50 | #endif /* IFLA_VF_MAX */ 51 | void ixgbe_disable_sriov(struct ixgbe_adapter *adapter); 52 | #ifdef CONFIG_PCI_IOV 53 | int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask); 54 | void ixgbe_enable_sriov(struct ixgbe_adapter *adapter); 55 | #endif 56 | #ifdef IFLA_VF_MAX 57 | void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter); 58 | #endif /* IFLA_VF_MAX */ 59 | void ixgbe_dump_registers(struct ixgbe_adapter *adapter); 60 | 61 | /* 62 | * These are defined in ixgbe_type.h on behalf of the VF driver 63 | * but we need them here unwrapped for the PF driver. 64 | */ 65 | #define IXGBE_DEV_ID_82599_VF 0x10ED 66 | #define IXGBE_DEV_ID_X540_VF 0x1515 67 | #endif /* _IXGBE_SRIOV_H_ */ 68 | 69 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIXGbe/ixgbe_x540.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel 10 Gigabit PCI Express Linux driver 4 | Copyright(c) 1999 - 2013 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | e1000-devel Mailing List 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 25 | 26 | *******************************************************************************/ 27 | 28 | #ifndef _IXGBE_X540_H_ 29 | #define _IXGBE_X540_H_ 30 | 31 | #include "ixgbe_type.h" 32 | 33 | s32 ixgbe_get_link_capabilities_X540(struct ixgbe_hw *hw, 34 | ixgbe_link_speed *speed, bool *autoneg); 35 | enum ixgbe_media_type ixgbe_get_media_type_X540(struct ixgbe_hw *hw); 36 | s32 ixgbe_setup_mac_link_X540(struct ixgbe_hw *hw, ixgbe_link_speed speed, 37 | bool link_up_wait_to_complete); 38 | s32 ixgbe_reset_hw_X540(struct ixgbe_hw *hw); 39 | s32 ixgbe_start_hw_X540(struct ixgbe_hw *hw); 40 | u32 ixgbe_get_supported_physical_layer_X540(struct ixgbe_hw *hw); 41 | 42 | s32 ixgbe_init_eeprom_params_X540(struct ixgbe_hw *hw); 43 | s32 ixgbe_read_eerd_X540(struct ixgbe_hw *hw, u16 offset, u16 *data); 44 | s32 ixgbe_read_eerd_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words, 45 | u16 *data); 46 | s32 ixgbe_write_eewr_X540(struct ixgbe_hw *hw, u16 offset, u16 data); 47 | s32 ixgbe_write_eewr_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words, 48 | u16 *data); 49 | s32 ixgbe_update_eeprom_checksum_X540(struct ixgbe_hw *hw); 50 | s32 ixgbe_validate_eeprom_checksum_X540(struct ixgbe_hw *hw, u16 *checksum_val); 51 | u16 ixgbe_calc_eeprom_checksum_X540(struct ixgbe_hw *hw); 52 | s32 ixgbe_update_flash_X540(struct ixgbe_hw *hw); 53 | 54 | s32 ixgbe_acquire_swfw_sync_X540(struct ixgbe_hw *hw, u16 mask); 55 | void ixgbe_release_swfw_sync_X540(struct ixgbe_hw *hw, u16 mask); 56 | 57 | s32 ixgbe_blink_led_start_X540(struct ixgbe_hw *hw, u32 index); 58 | s32 ixgbe_blink_led_stop_X540(struct ixgbe_hw *hw, u32 index); 59 | s32 ixgbe_get_thermal_sensor_data_X540(struct ixgbe_hw *hw); 60 | s32 ixgbe_init_thermal_sensor_thresh_X540(struct ixgbe_hw *hw); 61 | #endif /* _IXGBE_X540_H_ */ 62 | 63 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000/e1000_82543.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel PRO/1000 Linux driver 4 | Copyright(c) 1999 - 2010 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | Linux NICS 24 | e1000-devel Mailing List 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 26 | 27 | *******************************************************************************/ 28 | 29 | #ifndef _E1000_82543_H_ 30 | #define _E1000_82543_H_ 31 | 32 | #define PHY_PREAMBLE 0xFFFFFFFF 33 | #define PHY_PREAMBLE_SIZE 32 34 | #define PHY_SOF 0x1 35 | #define PHY_OP_READ 0x2 36 | #define PHY_OP_WRITE 0x1 37 | #define PHY_TURNAROUND 0x2 38 | 39 | #define TBI_COMPAT_ENABLED 0x1 /* Global "knob" for the workaround */ 40 | /* If TBI_COMPAT_ENABLED, then this is the current state (on/off) */ 41 | #define TBI_SBP_ENABLED 0x2 42 | 43 | void e1000_tbi_adjust_stats_82543(struct e1000_hw *hw, 44 | struct e1000_hw_stats *stats, 45 | u32 frame_len, u8 *mac_addr, 46 | u32 max_frame_size); 47 | void e1000_set_tbi_compatibility_82543(struct e1000_hw *hw, 48 | bool state); 49 | bool e1000_tbi_sbp_enabled_82543(struct e1000_hw *hw); 50 | 51 | #endif 52 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000/e1000_nvm.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | 3 | Intel PRO/1000 Linux driver 4 | Copyright(c) 1999 - 2010 Intel Corporation. 5 | 6 | This program is free software; you can redistribute it and/or modify it 7 | under the terms and conditions of the GNU General Public License, 8 | version 2, as published by the Free Software Foundation. 9 | 10 | This program is distributed in the hope it will be useful, but WITHOUT 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 | more details. 14 | 15 | You should have received a copy of the GNU General Public License along with 16 | this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18 | 19 | The full GNU General Public License is included in this distribution in 20 | the file called "COPYING". 21 | 22 | Contact Information: 23 | Linux NICS 24 | e1000-devel Mailing List 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 26 | 27 | *******************************************************************************/ 28 | 29 | #ifndef _E1000_NVM_H_ 30 | #define _E1000_NVM_H_ 31 | 32 | void e1000_init_nvm_ops_generic(struct e1000_hw *hw); 33 | s32 e1000_null_read_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c); 34 | void e1000_null_nvm_generic(struct e1000_hw *hw); 35 | s32 e1000_null_led_default(struct e1000_hw *hw, u16 *data); 36 | s32 e1000_null_write_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c); 37 | s32 e1000_acquire_nvm_generic(struct e1000_hw *hw); 38 | 39 | s32 e1000_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg); 40 | s32 e1000_read_mac_addr_generic(struct e1000_hw *hw); 41 | s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num, 42 | u32 pba_num_size); 43 | s32 e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 44 | s32 e1000_read_nvm_microwire(struct e1000_hw *hw, u16 offset, 45 | u16 words, u16 *data); 46 | s32 e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, 47 | u16 *data); 48 | s32 e1000_valid_led_default_generic(struct e1000_hw *hw, u16 *data); 49 | s32 e1000_validate_nvm_checksum_generic(struct e1000_hw *hw); 50 | s32 e1000_write_nvm_microwire(struct e1000_hw *hw, u16 offset, 51 | u16 words, u16 *data); 52 | s32 e1000_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, 53 | u16 *data); 54 | s32 e1000_update_nvm_checksum_generic(struct e1000_hw *hw); 55 | void e1000_stop_nvm(struct e1000_hw *hw); 56 | void e1000_release_nvm_generic(struct e1000_hw *hw); 57 | 58 | #define E1000_STM_OPCODE 0xDB00 59 | 60 | #endif 61 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000e/82571.h: -------------------------------------------------------------------------------- 1 | /* Intel PRO/1000 Linux driver 2 | * Copyright(c) 1999 - 2017 Intel Corporation. 3 | * 4 | * This program is free software; you can redistribute it and/or modify it 5 | * under the terms and conditions of the GNU General Public License, 6 | * version 2, as published by the Free Software Foundation. 7 | * 8 | * This program is distributed in the hope it will be useful, but WITHOUT 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11 | * more details. 12 | * 13 | * The full GNU General Public License is included in this distribution in 14 | * the file called "COPYING". 15 | * 16 | * Contact Information: 17 | * Linux NICS 18 | * e1000-devel Mailing List 19 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 20 | */ 21 | 22 | #ifndef _E1000E_82571_H_ 23 | #define _E1000E_82571_H_ 24 | 25 | #define ID_LED_RESERVED_F746 0xF746 26 | #define ID_LED_DEFAULT_82573 ((ID_LED_DEF1_DEF2 << 12) | \ 27 | (ID_LED_OFF1_ON2 << 8) | \ 28 | (ID_LED_DEF1_DEF2 << 4) | \ 29 | (ID_LED_DEF1_DEF2)) 30 | 31 | #define E1000_GCR_L1_ACT_WITHOUT_L0S_RX 0x08000000 32 | #define AN_RETRY_COUNT 5 /* Autoneg Retry Count value */ 33 | 34 | /* Intr Throttling - RW */ 35 | #define E1000_EITR_82574(_n) (0x000E8 + (0x4 * (_n))) 36 | 37 | #define E1000_EIAC_82574 0x000DC /* Ext. Interrupt Auto Clear - RW */ 38 | #define E1000_EIAC_MASK_82574 0x01F00000 39 | 40 | #define E1000_IVAR_INT_ALLOC_VALID 0x8 41 | 42 | /* Manageability Operation Mode mask */ 43 | #define E1000_NVM_INIT_CTRL2_MNGM 0x6000 44 | 45 | #define E1000_BASE1000T_STATUS 10 46 | #define E1000_IDLE_ERROR_COUNT_MASK 0xFF 47 | #define E1000_RECEIVE_ERROR_COUNTER 21 48 | #define E1000_RECEIVE_ERROR_MAX 0xFFFF 49 | bool e1000_check_phy_82574(struct e1000_hw *hw); 50 | bool e1000e_get_laa_state_82571(struct e1000_hw *hw); 51 | void e1000e_set_laa_state_82571(struct e1000_hw *hw, bool state); 52 | 53 | #endif 54 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000e/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | com.insanelymac.driver.${PRODUCT_NAME} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 3.3.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 3.3.6 25 | IOKitPersonalities 26 | 27 | e1000e 28 | 29 | CFBundleIdentifier 30 | com.insanelymac.driver.${PRODUCT_NAME} 31 | E1000_CTRL_TFCE 32 | 33 | E1000_DEFAULT_RXD 34 | 256 35 | E1000_DEFAULT_TXD 36 | 256 37 | IOClass 38 | ${PRODUCT_NAME} 39 | IOPCIClassMatch 40 | 0x02000000&0xffff0000 41 | IOPCIPrimaryMatch 42 | 0x10008086&0x0000ffff 43 | IOProviderClass 44 | IOPCIDevice 45 | NETIF_F_TSO 46 | 47 | 48 | 49 | OSBundleLibraries 50 | 51 | com.apple.iokit.IONetworkingFamily 52 | 1.5.0 53 | com.apple.iokit.IOPCIFamily 54 | 1.7 55 | com.apple.kpi.bsd 56 | 8.10.0 57 | com.apple.kpi.iokit 58 | 8.10.0 59 | com.apple.kpi.libkern 60 | 8.10.0 61 | com.apple.kpi.mach 62 | 8.10.0 63 | 64 | OSBundleRequired 65 | Network-Root 66 | 67 | 68 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000e/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000e/manage.h: -------------------------------------------------------------------------------- 1 | /* Intel PRO/1000 Linux driver 2 | * Copyright(c) 1999 - 2017 Intel Corporation. 3 | * 4 | * This program is free software; you can redistribute it and/or modify it 5 | * under the terms and conditions of the GNU General Public License, 6 | * version 2, as published by the Free Software Foundation. 7 | * 8 | * This program is distributed in the hope it will be useful, but WITHOUT 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11 | * more details. 12 | * 13 | * The full GNU General Public License is included in this distribution in 14 | * the file called "COPYING". 15 | * 16 | * Contact Information: 17 | * Linux NICS 18 | * e1000-devel Mailing List 19 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 20 | */ 21 | 22 | #ifndef _E1000E_MANAGE_H_ 23 | #define _E1000E_MANAGE_H_ 24 | 25 | bool e1000e_check_mng_mode_generic(struct e1000_hw *hw); 26 | bool e1000e_enable_tx_pkt_filtering(struct e1000_hw *hw); 27 | s32 e1000e_mng_write_dhcp_info(struct e1000_hw *hw, u8 *buffer, u16 length); 28 | bool e1000e_enable_mng_pass_thru(struct e1000_hw *hw); 29 | 30 | enum e1000_mng_mode { 31 | e1000_mng_mode_none = 0, 32 | e1000_mng_mode_asf, 33 | e1000_mng_mode_pt, 34 | e1000_mng_mode_ipmi, 35 | e1000_mng_mode_host_if_only 36 | }; 37 | 38 | #define E1000_FACTPS_MNGCG 0x20000000 39 | 40 | #define E1000_FWSM_MODE_MASK 0xE 41 | #define E1000_FWSM_MODE_SHIFT 1 42 | 43 | #define E1000_MNG_IAMT_MODE 0x3 44 | #define E1000_MNG_DHCP_COOKIE_LENGTH 0x10 45 | #define E1000_MNG_DHCP_COOKIE_OFFSET 0x6F0 46 | #define E1000_MNG_DHCP_COMMAND_TIMEOUT 10 47 | #define E1000_MNG_DHCP_TX_PAYLOAD_CMD 64 48 | #define E1000_MNG_DHCP_COOKIE_STATUS_PARSING 0x1 49 | #define E1000_MNG_DHCP_COOKIE_STATUS_VLAN 0x2 50 | 51 | #define E1000_VFTA_ENTRY_SHIFT 5 52 | #define E1000_VFTA_ENTRY_MASK 0x7F 53 | #define E1000_VFTA_ENTRY_BIT_SHIFT_MASK 0x1F 54 | 55 | #define E1000_HICR_EN 0x01 /* Enable bit - RO */ 56 | /* Driver sets this bit when done to put command in RAM */ 57 | #define E1000_HICR_C 0x02 58 | #define E1000_HICR_SV 0x04 /* Status Validity */ 59 | #define E1000_HICR_FW_RESET_ENABLE 0x40 60 | #define E1000_HICR_FW_RESET 0x80 61 | 62 | /* Intel(R) Active Management Technology signature */ 63 | #define E1000_IAMT_SIGNATURE 0x544D4149 64 | 65 | #endif 66 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000e/nvm.h: -------------------------------------------------------------------------------- 1 | /* Intel PRO/1000 Linux driver 2 | * Copyright(c) 1999 - 2017 Intel Corporation. 3 | * 4 | * This program is free software; you can redistribute it and/or modify it 5 | * under the terms and conditions of the GNU General Public License, 6 | * version 2, as published by the Free Software Foundation. 7 | * 8 | * This program is distributed in the hope it will be useful, but WITHOUT 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11 | * more details. 12 | * 13 | * The full GNU General Public License is included in this distribution in 14 | * the file called "COPYING". 15 | * 16 | * Contact Information: 17 | * Linux NICS 18 | * e1000-devel Mailing List 19 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 20 | */ 21 | 22 | #ifndef _E1000E_NVM_H_ 23 | #define _E1000E_NVM_H_ 24 | 25 | s32 e1000e_acquire_nvm(struct e1000_hw *hw); 26 | 27 | s32 e1000e_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg); 28 | s32 e1000_read_mac_addr_generic(struct e1000_hw *hw); 29 | s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num, 30 | u32 pba_num_size); 31 | s32 e1000e_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 32 | s32 e1000e_valid_led_default(struct e1000_hw *hw, u16 *data); 33 | s32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw); 34 | s32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 35 | s32 e1000e_update_nvm_checksum_generic(struct e1000_hw *hw); 36 | void e1000e_release_nvm(struct e1000_hw *hw); 37 | 38 | #define E1000_STM_OPCODE 0xDB00 39 | 40 | #endif 41 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/AppleIntelE1000e/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 2 7 | CFBundleShortVersionString 8 | 1.0 9 | CFBundleVersion 10 | 1 11 | ProjectName 12 | DevToolsWizardTemplates 13 | SourceVersion 14 | 15920000 15 | 16 | 17 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ApplePCIIDE/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ApplePCIIDE/Readme.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf250 2 | {\fonttbl\f0\fnil\fcharset0 Monaco;} 3 | {\colortbl;\red255\green255\blue255;} 4 | \vieww12940\viewh11720\viewkind0 5 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural 6 | 7 | \f0\fs20 \cf0 \ 8 | 2009-11-27\ 9 | \ 10 | Supported PCI IDE/SATA cards.\ 11 | \ 12 | Don't connect master/slave drives. I never tested more than 1 drives per port.\ 13 | \ 14 | VIA 6421\ 15 | Both of SATA and PATA work.\ 16 | \ 17 | SiliconImage 0680\ 18 | Tested with IDE BIOS 3.4.0. With this revision, Linux grub doesn't boot.\ 19 | As it seems that the BIOS does not initialize hardware completely, reboot may not work if your boot drive is connected to the \ul secondary\ulnone channel. In the case, even hardware reset does not work. You have to shutdown and power on again to reboot.\ 20 | To recognize connected drives, Chameleon 2.0 RC4 or later is required.\ 21 | \ 22 | SiliconImage 3512/3112\ 23 | I experienced crash when disk sleep is enabled. So I disabled power state control. Sil3132 driver from the vendor does not support it anyway.\ 24 | To boot, Chameleon 2.0 RC4 or later is required.\ 25 | \ 26 | SiliconImage 3114\ 27 | Only the first 2 ports work as 3112.\ 28 | \ 29 | ITE 8211/8212\ 30 | Only PIO mode is supported. UDMA mode always froze in my experiments.} -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ApplePCIIDE/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 2 7 | CFBundleShortVersionString 8 | 1.0 9 | CFBundleVersion 10 | 1 11 | ProjectName 12 | DevToolsWizardTemplates 13 | SourceVersion 14 | 15920000 15 | 16 | 17 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/KextIntf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * KextIntf.h 3 | * PStateChanger 4 | * 5 | * 6 | */ 7 | #include 8 | typedef struct { 9 | uint32_t frequency; // MHz 10 | uint32_t voltage; // mV 11 | uint8_t fid; 12 | uint8_t vid; 13 | uint8_t did; 14 | uint8_t pstate; 15 | } PSTATE_CTL_INFO; 16 | 17 | typedef struct { 18 | uint32_t frequency; // MHz 19 | uint32_t voltage; // mV 20 | uint16_t temperature; // degree ? 21 | uint8_t pstate; 22 | uint8_t pad; 23 | } PSTATE_STATUS_INFO; 24 | 25 | int getPstateTable(PSTATE_CTL_INFO*); 26 | 27 | int getPstateCurrent(PSTATE_STATUS_INFO*); 28 | 29 | int getPstateInterval(); 30 | 31 | void setPstate(unsigned int newState); -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/LoadChart.h: -------------------------------------------------------------------------------- 1 | // 2 | // LoadChart.h 3 | // PStateChanger 4 | // 5 | // 6 | 7 | #import 8 | 9 | 10 | @interface LoadChart : NSView { 11 | int _count, _start; 12 | float* _data; 13 | float* _pstate; 14 | float _frameWidth; 15 | } 16 | 17 | - (void)setData:(float*)data pstate:(float*)pstate count:(int)count start:(int)start; 18 | - (void)setFrameWidth:(float)aValue; 19 | @end 20 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/LoadChart.m: -------------------------------------------------------------------------------- 1 | // 2 | // LoadChart.m 3 | // PStateChanger 4 | // 5 | // 6 | 7 | #import "LoadChart.h" 8 | 9 | 10 | @implementation LoadChart 11 | - (void)setFrameWidth:(float)aValue { 12 | _frameWidth = aValue; 13 | } 14 | 15 | - (void)drawRect:(NSRect)dirtyRect { 16 | [[NSColor blackColor] set]; 17 | NSRect rect = [self bounds]; 18 | NSRectFill(rect); 19 | // 20 | if(_data && _count){ 21 | int k; 22 | CGFloat wid = rect.size.width/_count; 23 | [[NSColor blueColor] set]; 24 | float level = _pstate[_start % _count]; 25 | int start = 0; 26 | for( k = 1; k <= _count; k++ ){ 27 | if(k == _count || level != _pstate[(k+_start) % _count]){ 28 | NSRect temp; 29 | temp.origin.x = rect.origin.x + wid * start - 0.5; 30 | temp.origin.y = rect.origin.y; 31 | temp.size.width = wid * (k - start) + 0.5; 32 | temp.size.height = rect.size.height *level; 33 | NSRectFill(temp); 34 | start = k; 35 | level = _pstate[(k+_start) % _count]; 36 | } 37 | } 38 | 39 | [[NSColor greenColor] set]; 40 | for( k = 0; k < _count; k++ ){ 41 | float load = _data[(k+_start) % _count]; 42 | if( load > 0.0 ){ 43 | NSRect temp; 44 | temp.origin.x = rect.origin.x + wid * k - 0.5; 45 | temp.origin.y = rect.origin.y; 46 | temp.size.width = wid + 0.5; 47 | temp.size.height = rect.size.height * load; 48 | NSRectFill(temp); 49 | } 50 | } 51 | 52 | } 53 | if(_frameWidth > 0){ 54 | [[NSColor whiteColor] set]; 55 | NSFrameRectWithWidth(rect, _frameWidth); 56 | } 57 | } 58 | 59 | - (void)setData:(float*)data pstate:(float*)pstate count:(int)count start:(int)start { 60 | _count = count; 61 | _start = start; 62 | _data = data; 63 | _pstate = pstate; 64 | [self setNeedsDisplay:YES]; 65 | } 66 | @end 67 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/PStateChanger-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | cpus.icns 11 | CFBundleIdentifier 12 | com.insanelymac.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleSignature 20 | ???? 21 | CFBundleShortVersionString 22 | 1.0.3 23 | LSMinimumSystemVersion 24 | ${MACOSX_DEPLOYMENT_TARGET} 25 | CFBundleVersion 26 | 1 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/PStateChangerAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // PStateChangerAppDelegate.h 3 | // PStateChanger 4 | // 5 | // 6 | 7 | #import 8 | 9 | @class LoadChart; 10 | #if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5 11 | @interface PStateChangerAppDelegate : NSObject { 12 | #else 13 | @interface PStateChangerAppDelegate : NSObject { 14 | #endif 15 | NSWindow *window; 16 | IBOutlet LoadChart *lcview; 17 | IBOutlet NSTableView *tview; 18 | IBOutlet NSTableView *sview; 19 | IBOutlet NSButton *autoCheckBox; 20 | IBOutlet NSForm* prefForm; 21 | IBOutlet NSButton* applyButton; 22 | IBOutlet NSButton* saveButton; 23 | IBOutlet NSButton* loadButton; 24 | IBOutlet NSButton* defaultButton; 25 | NSTimer *updateTimer; 26 | 27 | LoadChart *docview; 28 | Boolean autoThrottle; 29 | int fixedState; 30 | } 31 | 32 | @property (assign) IBOutlet NSWindow *window; 33 | -(IBAction)checked:(id)sender; 34 | -(IBAction)pushed:(id)sender; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/PStateChanger_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PStateChanger' target in the 'PStateChanger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/cpus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/cpus.icns -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PStateChanger 4 | // 5 | // Created by 中本 浩 on 09/09/24. 6 | // Copyright 2009 (株)ボーンデジタル. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/monitor.c: -------------------------------------------------------------------------------- 1 | /* 2 | * monitor.cpp 3 | * 4 | */ 5 | 6 | #include "monitor.h" 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | static integer_t prevTicks[2]; 13 | static int entry; 14 | 15 | void monitor_init() 16 | { 17 | prevTicks[0] = 0; 18 | prevTicks[1] = 0; 19 | entry = 0; 20 | } 21 | 22 | float monitor_probe() 23 | { 24 | if(entry > 0) 25 | return 0; 26 | 27 | entry += 1; 28 | 29 | natural_t numProcessors = 0U; 30 | natural_t numProcessorInfo; 31 | processor_info_array_t processorInfo; 32 | float inUse = 0, total = 0; 33 | 34 | kern_return_t err = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &numProcessors, &processorInfo, &numProcessorInfo); 35 | if(err == KERN_SUCCESS) { 36 | integer_t usedTicks = 0, idleTicks = 0; 37 | for(int i = 0; i < numProcessors; ++i) { 38 | int k = (CPU_STATE_MAX * i); 39 | 40 | usedTicks += processorInfo[k + CPU_STATE_USER] + processorInfo[k + CPU_STATE_SYSTEM] + processorInfo[k + CPU_STATE_NICE]; 41 | idleTicks += processorInfo[k + CPU_STATE_IDLE]; 42 | } 43 | inUse = usedTicks - prevTicks[0]; 44 | total = inUse + idleTicks - prevTicks[1]; 45 | prevTicks[0] = usedTicks; 46 | prevTicks[1] = idleTicks; 47 | vm_deallocate(mach_task_self(), (vm_address_t)processorInfo, sizeof(integer_t) * numProcessorInfo); 48 | } else { // only to prevent zero-division 49 | total = 1; 50 | } 51 | entry -= 1; 52 | return inUse / total; 53 | } -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/monitor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * monitor.h 3 | * 4 | */ 5 | 6 | void monitor_init(); 7 | float monitor_probe(); -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/PStateChanger/preference.h: -------------------------------------------------------------------------------- 1 | /* 2 | * preference.h 3 | * PStateChanger 4 | * 5 | */ 6 | 7 | typedef struct { 8 | int interval; // ms 9 | int pstate_min; // 0.. 10 | int pstate_max; // 11 | int threshold_highest; // % 12 | int threshold_up; // % 13 | int threshold_down; // % 14 | int threshold_lowest; // % 15 | int doc_method; 16 | } PSTATECHANGER_PREF; 17 | 18 | int checkPref(PSTATECHANGER_PREF*, int pstateCount, int minInterval); 19 | int savePref(PSTATECHANGER_PREF*); 20 | void loadPref(PSTATECHANGER_PREF*, int); 21 | void defaultPref(PSTATECHANGER_PREF*, int); 22 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleName 10 | ${PRODUCT_NAME} 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | com.insanelymac.driver.${PRODUCT_NAME} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.43.0 23 | CFBundleShortVersionString 24 | 1.43.0 25 | IOKitPersonalities 26 | 27 | ViaVelocity 28 | 29 | CFBundleIdentifier 30 | com.insanelymac.driver.${PRODUCT_NAME} 31 | IOClass 32 | ${PRODUCT_NAME} 33 | IOPCIMatch 34 | 0x31191106 35 | IOProviderClass 36 | IOPCIDevice 37 | MAX_PACKET_SIZE 38 | 2048 39 | RX_THRESH 40 | 0 41 | DMA_LENGTH 42 | 0 43 | RX_DESC 44 | 252 45 | TX_DESC 46 | 256 47 | TAGGING 48 | 1 49 | FLOW_CNTL 50 | 1 51 | WOL 52 | 0 53 | INT_WORKS 54 | 64 55 | VAL_PKT_LEN 56 | 57 | TX_CSUM_OFFLOAD 58 | 59 | VERBOSE 60 | 61 | 62 | 63 | OSBundleLibraries 64 | 65 | com.apple.iokit.IONetworkingFamily 66 | 1.4 67 | com.apple.iokit.IOPCIFamily 68 | 1.6 69 | com.apple.kpi.bsd 70 | 8.0.0b2 71 | com.apple.kpi.iokit 72 | 8.0.0b2 73 | com.apple.kpi.libkern 74 | 8.0.0b2 75 | com.apple.kpi.mach 76 | 8.0.0b2 77 | 78 | OSBundleRequired 79 | Network-Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/kcompat.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * kcompat.cpp 3 | * ViaVelocity 4 | * 5 | * 6 | */ 7 | 8 | #include "osdep.h" 9 | #include "kcompat.h" 10 | 11 | #include 12 | 13 | extern "C" void pci_read_config_byte(void* dev, U8 offset, U8* pData) 14 | { 15 | *pData = ((IOPCIDevice*)dev)->configRead8(offset); 16 | } 17 | 18 | extern "C" void pci_read_config_dword(void* dev, U8 offset, U32* pData) 19 | { 20 | *pData = ((IOPCIDevice*)dev)->configRead32(offset); 21 | } 22 | 23 | extern "C" void pci_write_config_byte(void* dev, U8 offset, U8 data) 24 | { 25 | ((IOPCIDevice*)dev)->configWrite8(offset,data); 26 | } 27 | 28 | extern "C" void pci_write_config_dword(void* dev, U8 offset, U32 data) 29 | { 30 | ((IOPCIDevice*)dev)->configWrite32(offset,data); 31 | } 32 | 33 | 34 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/kcompat.h: -------------------------------------------------------------------------------- 1 | #ifndef _KCOMPAT_H_ 2 | #define _KCOMPAT_H_ 3 | 4 | 5 | #define ETH_ALEN 6 /* Octets in one ethernet addr */ 6 | #define ETH_HLEN 14 /* Total octets in header. */ 7 | #define ETH_ZLEN 60 /* Min. octets in frame sans FCS */ 8 | #define ETH_DATA_LEN 1500 /* Max. octets in payload */ 9 | #define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */ 10 | #define ETH_FCS_LEN 4 /* Octets in the FCS */ 11 | #define ETH_P_ARP 0x0806 12 | 13 | #define VLAN_HLEN 4 /* The additional bytes (on top of the Ethernet header) that VLAN requires. */ 14 | #define VLAN_ETH_ALEN 6 /* Octets in one ethernet addr */ 15 | #define VLAN_ETH_HLEN 18 /* Total octets in header. */ 16 | #define VLAN_ETH_ZLEN 64 /* Min. octets in frame sans FCS */ 17 | 18 | #define NET_IP_ALIGN 2 19 | 20 | #define ENOMEM 12 21 | #define EIO 5 22 | #define NETDEV_TX_OK 0 23 | #define NETDEV_TX_BUSY 1 24 | 25 | #define PCI_COMMAND_INVALIDATE 0x10 /* Use memory write and invalidate */ 26 | 27 | #define NETIF_F_SG 1 /* Scatter/gather IO. */ 28 | #define NETIF_F_IP_CSUM 2 /* Can checksum TCP/UDP over IPv4. */ 29 | #define NETIF_F_NO_CSUM 4 /* Does not require checksum. F.e. loopack. */ 30 | #define NETIF_F_HW_CSUM 8 /* Can checksum all the packets. */ 31 | #define NETIF_F_IPV6_CSUM 16 /* Can checksum TCP/UDP over IPV6 */ 32 | #define NETIF_F_HIGHDMA 32 /* Can DMA to high memory. */ 33 | #define NETIF_F_FRAGLIST 64 /* Scatter/gather IO. */ 34 | //#define NETIF_F_HW_VLAN_TX 128 /* Transmit VLAN hw acceleration */ 35 | //#define NETIF_F_HW_VLAN_RX 256 /* Receive VLAN hw acceleration */ 36 | //#define NETIF_F_HW_VLAN_FILTER 512 /* Receive filtering on VLAN */ 37 | //#define NETIF_F_VLAN_CHALLENGED 1024 /* Device cannot handle VLAN packets */ 38 | #define NETIF_F_GSO 2048 /* Enable software GSO. */ 39 | #define NETIF_F_NETNS_LOCAL 8192 /* Does not change network namespaces */ 40 | #define NETIF_F_GRO 16384 /* Generic receive offload */ 41 | #define NETIF_F_LRO 32768 /* large receive offload */ 42 | 43 | /* the GSO_MASK reserves bits 16 through 23 */ 44 | #define NETIF_F_FCOE_CRC (1 << 24) /* FCoE CRC32 */ 45 | #define NETIF_F_SCTP_CSUM (1 << 25) /* SCTP checksum offload */ 46 | #define NETIF_F_FCOE_MTU (1 << 26) /* Supports max FCoE MTU, 2158 bytes*/ 47 | #define NETIF_F_NTUPLE (1 << 27) /* N-tuple filters supported */ 48 | 49 | #define IFF_PROMISC 0x100 /* receive all packets */ 50 | #define IFF_ALLMULTI 0x200 /* receive all multicast packets*/ 51 | #define IFF_MULTICAST 0x1000 52 | 53 | #ifdef __cplusplus 54 | extern "C" { 55 | #endif 56 | 57 | void pci_read_config_byte(void* dev, U8 offset, U8* pData); 58 | void pci_read_config_dword(void* dev, U8 offset, U32* pData); 59 | 60 | void pci_write_config_byte(void* dev, U8 offset, U8 data); 61 | void pci_write_config_dword(void* dev, U8 offset, U32 data); 62 | 63 | #ifdef __cplusplus 64 | } 65 | #endif 66 | 67 | 68 | #endif -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/velocity_cfg.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 3 | * All rights reserved. 4 | * 5 | * This software may be redistributed and/or modified under 6 | * the terms of the GNU General Public License as published by the Free 7 | * Software Foundation; either version 2 of the License, or 8 | * any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, but 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 12 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13 | * for more details. 14 | * 15 | * 16 | * File: velocity_cfg.h 17 | * 18 | * Purpose: The OS dependent types & constants. 19 | * 20 | * Author: Chuang Liang-Shing, AJ Jiang 21 | * 22 | * Date: Jan 24, 2003 23 | * 24 | */ 25 | 26 | 27 | /* 28 | * Description: This file defined OS dependent macros & defines 29 | */ 30 | 31 | #ifndef __VELOCITY_CFG_H__ 32 | #define __VELOCITY_CFG_H__ 33 | 34 | #ifndef __APPLE__ 35 | 36 | #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) 37 | #include 38 | #endif 39 | 40 | #include 41 | 42 | typedef 43 | struct _version { 44 | UINT8 major; 45 | UINT8 minor; 46 | UINT8 build; 47 | } version_t, *pversion_t; 48 | 49 | #define VELOCITY_NAME "velocityget" 50 | #define VELOCITY_FULL_DRV_NAM "VIA Networking Velocity Family Gigabit Ethernet Adapter Driver" 51 | 52 | #ifndef MAJOR_VERSION 53 | #define MAJOR_VERSION "1" 54 | #endif 55 | 56 | #ifndef MINOR_VERSION 57 | #define MINOR_VERSION "43" 58 | #endif 59 | 60 | #ifndef VELOCITY_VERSION 61 | #define VELOCITY_VERSION MAJOR_VERSION"."MINOR_VERSION 62 | #endif 63 | 64 | 65 | 66 | #define MAX_UINTS 8 67 | #define OPTION_DEFAULT { [0 ... MAX_UINTS-1] = -1} 68 | 69 | #define REV_ID_VT6110 (0) 70 | #define DEVICE_ID (0x3119) 71 | 72 | #define VAR_USED(p) do {(p)=(p);} while (0) 73 | 74 | #endif // __APPLE__ 75 | #endif // __VELOCITY_CFG_H__ 76 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/velocity_dbg.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 3 | * All rights reserved. 4 | * 5 | * This software may be redistributed and/or modified under 6 | * the terms of the GNU General Public License as published by the Free 7 | * Software Foundation; either version 2 of the License, or 8 | * any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, but 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 12 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13 | * for more details. 14 | * 15 | * 16 | * File: velocity_dbg.h 17 | * 18 | * Purpose: Hearder file for inline debug routine 19 | * 20 | * Author: Chuang Liang-Shing, AJ Jiang 21 | * 22 | * Date: Jan 24, 2003 23 | * 24 | */ 25 | 26 | 27 | #ifndef __VELOCITY_DBG_H__ 28 | #define __VELOCITY_DBG_H__ 29 | 30 | #ifdef __APPLE__ 31 | #define printk IOLog 32 | #define KERN_ERR 33 | #endif 34 | 35 | #ifdef VELOCITY_DEBUG 36 | #define ASSERT(x) { \ 37 | if (!(x)) { \ 38 | printk(KERN_ERR "assertion %s failed: file %s line %d\n", #x,\ 39 | __FUNCTION__, __LINE__);\ 40 | *(int*) 0=0;\ 41 | }\ 42 | } 43 | #define VELOCITY_DBG(p,args...) printk(p, ##args) 44 | #else 45 | #define ASSERT(x) 46 | #define VELOCITY_DBG(x) 47 | #endif 48 | 49 | 50 | #define VELOCITY_PRT_CAMMASK(p,t) {\ 51 | int i;\ 52 | if ((t)==VELOCITY_MULTICAST_CAM) {\ 53 | for (i=0;i<(MCAM_SIZE/8);i++)\ 54 | printk("%02X",(p)->abyMCAMMask[i]);\ 55 | }\ 56 | else {\ 57 | for (i=0;i<(VCAM_SIZE/8);i++)\ 58 | printk("%02X",(p)->abyVCAMMask[i]);\ 59 | }\ 60 | printk("\n");\ 61 | } 62 | 63 | #endif // __VELOCITY_DBG_H__ 64 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/ViaVelocity/velocity_wol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 3 | * All rights reserved. 4 | * 5 | * This software may be redistributed and/or modified under 6 | * the terms of the GNU General Public License as published by the Free 7 | * Software Foundation; either version 2 of the License, or 8 | * any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, but 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 12 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13 | * for more details. 14 | * 15 | * 16 | * File: velocity_wol.h 17 | * 18 | * Purpose: Hearder for WOL definitions. 19 | * 20 | * Author: Chuang Liang-Shing, AJ Jiang 21 | * 22 | * Date: Jan 24, 2003 23 | * 24 | */ 25 | 26 | #ifndef __VELOCITY_WOL_H__ 27 | #define __VELOCITY_WOL_H__ 28 | 29 | #include "velocity.h" 30 | 31 | struct __velocity_info; 32 | 33 | typedef U8 MCAM_ADDR[ETH_ALEN]; 34 | 35 | typedef 36 | struct _arp_packet { 37 | U8 abyDMAC[ETH_ALEN]; 38 | U8 abySMAC[ETH_ALEN]; 39 | U16 wType; 40 | U16 ar_hrd; 41 | U16 ar_pro; 42 | U8 ar_hln; 43 | U8 ar_pln; 44 | U16 ar_op; 45 | U8 ar_sha[ETH_ALEN]; 46 | U8 ar_sip[4]; 47 | U8 ar_tha[ETH_ALEN]; 48 | U8 ar_tip[4]; 49 | } __attribute__ ((__packed__)) 50 | ARP_PACKET, *PARP_PACKET; 51 | 52 | typedef 53 | struct _magic_packet { 54 | U8 abyDMAC[6]; 55 | U8 abySMAC[6]; 56 | U16 wType; 57 | U8 abyMAC[16][6]; 58 | U8 abyPassword[6]; 59 | } 60 | __attribute__ ((__packed__)) 61 | MAGIC_PACKET, *PMAGIC_PACKET; 62 | 63 | typedef 64 | struct __velocity_context { 65 | U8 abyMacRegs[256]; 66 | MCAM_ADDR aMcamAddr[MCAM_SIZE]; 67 | U16 awVcam[VCAM_SIZE]; 68 | U32 dwCammask[2]; 69 | U32 dwPatCRC[2]; 70 | U32 dwPattern[8]; 71 | } VELOCITY_CONTEXT, *PVELOCITY_CONTEXT; 72 | 73 | 74 | BOOL velocity_set_wol(struct __velocity_info*); 75 | void velocity_save_mac_context(struct velocity_hw* hw, PVELOCITY_CONTEXT pContext); 76 | void velocity_restore_mac_context(struct velocity_hw* hw, PVELOCITY_CONTEXT pContext); 77 | void velocity_save_pci_context(struct __velocity_info* pInfo, PU32 pContext); 78 | void velocity_restore_pci_context(struct __velocity_info* pInfo, U32 pContext); 79 | 80 | #endif // __VELOCITY_WOL_H__ 81 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleGetInfoString 10 | © 2009 Contributors 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | com.insanelymac.driver.${PRODUCT_NAME:identifier} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ${PRODUCT_NAME} 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0.4 25 | IOKitPersonalities 26 | 27 | PowerManager 28 | 29 | CFBundleIdentifier 30 | com.insanelymac.driver.${PRODUCT_NAME:identifier} 31 | IOClass 32 | VoodooPState 33 | IOMatchCategory 34 | VoodooPState 35 | IOProviderClass 36 | IOResources 37 | IOResourceMatch 38 | IOKit 39 | PowerControl 40 | 41 | UseACPI 42 | 43 | TimerInterval 44 | 100 45 | ColdStart 46 | 47 | UseEfiFsb 48 | 49 | UserVoltageMax 50 | 0 51 | UserVoltageMin 52 | 0 53 | VoltageOverride 54 | 55 | VoltageProbe 56 | 57 | 58 | 59 | 60 | OSBundleLibraries 61 | 62 | com.apple.kpi.iokit 63 | 8.0.0 64 | com.apple.kpi.libkern 65 | 8.0.0 66 | com.apple.kpi.mach 67 | 8.0.0 68 | com.apple.kpi.unsupported 69 | 8.0.0 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/Support.h: -------------------------------------------------------------------------------- 1 | /* 2 | --- Support --- 3 | (C) 2008 Superhai 4 | 5 | Contact http://www.superhai.com/ 6 | 7 | */ 8 | 9 | // Information helpers 10 | 11 | #include 12 | 13 | extern const char * KextVersion; 14 | extern const char * KextProductName; 15 | extern const char * KextOSX; 16 | extern const char * KextConfig; 17 | extern const char * KextBuildDate; 18 | extern const char * KextBuildTime; 19 | 20 | const unsigned long Kilo = 1000; 21 | const unsigned long Mega = Kilo * 1000; 22 | const unsigned long Giga = Mega * 1000; 23 | 24 | 25 | // Debug output support 26 | 27 | #define INFO 1 28 | #define ERROR 1 29 | 30 | #if DEBUG 31 | #define DebugLog(string, args...) IOLog("%s: [Debug] [%05u] " string "\n", KextProductName, __LINE__, ## args); IOSleep(100) 32 | #define DebugMarker IOLog("%s: [Debug] [%s][%u] \n", KextProductName, __PRETTY_FUNCTION__, __LINE__); IOSleep(100) 33 | #else 34 | #define DebugLog(string, args...) 35 | #define DebugMarker 36 | #endif 37 | 38 | #if INFO 39 | #define InfoLog(string, args...) IOLog("%s: " string "\n", KextProductName, ## args) 40 | #else 41 | #define InfoLog(string, args...) 42 | #endif 43 | 44 | #if ERROR 45 | #define ErrorLog(string, args...) IOLog("%s: [Error] " string "\n", KextProductName, ## args) 46 | #define WarningLog(string, args...) IOLog("%s: [Warning] " string "\n", KextProductName, ## args) 47 | #else 48 | #define ErrorLog(string, args...) 49 | #define WarningLog(string, args...) 50 | #endif 51 | 52 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/VoodooPState.xcodeproj/TemplateIcon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/VoodooPState.xcodeproj/TemplateIcon.tiff -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/probe.h: -------------------------------------------------------------------------------- 1 | /* 2 | * probe.h 3 | * VoodooPState 4 | * 5 | * Created by hnak on 09/03/14. 6 | * Copyright 2009 __MyCompanyName__. All rights reserved. 7 | * 8 | */ 9 | 10 | class VoodooPState; 11 | bool intel_probe(VoodooPState*); 12 | bool amd_probe(VoodooPState*); -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e-Source-Code/VoodooPState/strings.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * strings.cpp 3 | * VoodooPState 4 | * 5 | * Created by hnak on 09/03/14. 6 | * Copyright 2009 __MyCompanyName__. All rights reserved. 7 | * 8 | */ 9 | #include "Support.h" 10 | #include "VoodooPState.h" 11 | 12 | #define defString(s) defXString(s) 13 | #define defXString(s) #s 14 | 15 | const char * KextVersion = defString(KEXT_VERSION); 16 | const char * KextProductName = defString(KEXT_PRODUCTNAME); 17 | const char * KextOSX = defString(KEXT_OSX); 18 | const char * KextConfig = defString(KEXT_CONFIG); 19 | const char * KextBuildDate = __DATE__; 20 | const char * KextBuildTime = __TIME__; 21 | 22 | const char * keyPowerControl = "PowerControl"; 23 | const char * keyVoltageOverride = "VoltageOverride"; 24 | const char * keyVoltageProbe = "VoltageProbe"; 25 | const char * keyUserVoltageMin = "UserVoltageMin"; 26 | const char * keyUserVoltageMax = "UserVoltageMax"; 27 | const char * keyUseEfiFsb = "UseEfiFsb"; 28 | const char * keyPStateLimitHigh = "PStateLimitHigh"; 29 | const char * keyPStateLimitLow = "PStateLimitLow"; 30 | const char * keyTStateControl = "TStateControl"; 31 | const char * keyPStates = "PStates"; 32 | const char * keyFid = "FID"; 33 | const char * keyDid = "DID"; 34 | const char * keyVid = "VID"; 35 | const char * keyProductName = "Product Name"; 36 | const char * keyProductVersion = "Product Version"; 37 | const char * keyBuildConfig = "Build Config"; 38 | const char * keyBuildDate = "Build Date"; 39 | const char * keyBuildTime = "Build Time"; 40 | const char * keyCpuCoreTech = "CPU Core Technology"; 41 | const char * keyFrontSideBus = "Front Side Bus"; 42 | const char * keyCharacteristics = "Characteristics"; 43 | const char * keyCurrentPState = "P-State"; 44 | const char * keyCurrentThrottle = "Throttle"; 45 | const char * keyTemperature = "Temperature"; 46 | const char * keyCurrentFrequency = "Frequency"; 47 | const char * keyCurrentVoltage = "Voltage"; 48 | const char * keyCurrentProfile = "Profile"; 49 | const char * keyStatus = "Status"; 50 | const char * keyEfiPlatform = "/efi/platform"; 51 | const char * keyEfiFsbFrequency = "FSBFrequency"; 52 | const char * keyColdStart = "ColdStart"; 53 | const char * keyTimerInterval = "TimerInterval"; 54 | const char * keyUseACPI = "UseACPI"; 55 | -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e.kext/Contents/MacOS/AppleIntelE1000e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e.kext/Contents/MacOS/AppleIntelE1000e -------------------------------------------------------------------------------- /32Bit-only/AppleIntelE1000e.kext/Contents/Resources/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AppleIntelE1000e.kext/Contents/Resources/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AtherosL1Ethernet.i386.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AtherosL1Ethernet 9 | CFBundleIdentifier 10 | ru.Applelife.AtherosL1Ethernet 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AtherosL1Ethernet 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.2.40b3 21 | IOKitPersonalities 22 | 23 | Atheros L1e NIC Driver 24 | 25 | CFBundleIdentifier 26 | ru.Applelife.AtherosL1Ethernet 27 | IOClass 28 | AtherosL1Ethernet 29 | IOPCIMatch 30 | 0x10481969 31 | IOProbeScore 32 | 500 33 | IOProviderClass 34 | IOPCIDevice 35 | Name 36 | PCI ID Matching 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.5 43 | com.apple.iokit.IOPCIFamily 44 | 1.6 45 | com.apple.kpi.bsd 46 | 8.0.0b2 47 | com.apple.kpi.iokit 48 | 8.0.0b2 49 | com.apple.kpi.libkern 50 | 8.0.0b2 51 | com.apple.kpi.mach 52 | 8.0.0b2 53 | 54 | OSBundleRequired 55 | Network-Root 56 | 57 | 58 | -------------------------------------------------------------------------------- /32Bit-only/AtherosL1Ethernet.i386.kext/Contents/MacOS/AtherosL1Ethernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AtherosL1Ethernet.i386.kext/Contents/MacOS/AtherosL1Ethernet -------------------------------------------------------------------------------- /32Bit-only/AtherosL1Ethernet.i386.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AtherosL1Ethernet.i386.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AtherosL1eEthernet.i386.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AttansicL1eEthernet 9 | CFBundleIdentifier 10 | ru.Applelife.AttansicL1eEthernet 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AttansicL1eEthernet 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.1b0 21 | IOKitPersonalities 22 | 23 | Attansic L1e NIC Driver 24 | 25 | CFBundleIdentifier 26 | ru.Applelife.AttansicL1eEthernet 27 | IOClass 28 | AttansicL1eEthernet 29 | IOPCIMatch 30 | 0x10261969 31 | IOProbeScore 32 | 500 33 | IOProviderClass 34 | IOPCIDevice 35 | Name 36 | PCI ID Matching 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.5 43 | com.apple.iokit.IOPCIFamily 44 | 1.6 45 | com.apple.kpi.bsd 46 | 8.0.0b2 47 | com.apple.kpi.iokit 48 | 8.0.0b2 49 | com.apple.kpi.libkern 50 | 8.0.0b2 51 | com.apple.kpi.mach 52 | 8.0.0b2 53 | 54 | OSBundleRequired 55 | Network-Root 56 | 57 | 58 | -------------------------------------------------------------------------------- /32Bit-only/AtherosL1eEthernet.i386.kext/Contents/MacOS/AttansicL1eEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AtherosL1eEthernet.i386.kext/Contents/MacOS/AttansicL1eEthernet -------------------------------------------------------------------------------- /32Bit-only/AtherosL1eEthernet.i386.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AtherosL1eEthernet.i386.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AtherosL2Ethernet.i386.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AttansicL2Ethernet 9 | CFBundleIdentifier 10 | ru.Applelife.AttansicL2Ethernet 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AttansicL2Ethernet 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.40b4 21 | IOKitPersonalities 22 | 23 | Attansic L2 NIC Driver 24 | 25 | CFBundleIdentifier 26 | ru.Applelife.AttansicL2Ethernet 27 | IOClass 28 | AttansicL2Ethernet 29 | IOPCIMatch 30 | 0x20481969 31 | IOProbeScore 32 | 500 33 | IOProviderClass 34 | IOPCIDevice 35 | Name 36 | PCI ID Matching 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.5 43 | com.apple.iokit.IOPCIFamily 44 | 1.6 45 | com.apple.kpi.bsd 46 | 8.0.0b2 47 | com.apple.kpi.iokit 48 | 8.0.0b2 49 | com.apple.kpi.libkern 50 | 8.0.0b2 51 | com.apple.kpi.mach 52 | 8.0.0b2 53 | 54 | OSBundleRequired 55 | Network-Root 56 | 57 | 58 | -------------------------------------------------------------------------------- /32Bit-only/AtherosL2Ethernet.i386.kext/Contents/MacOS/AttansicL2Ethernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AtherosL2Ethernet.i386.kext/Contents/MacOS/AttansicL2Ethernet -------------------------------------------------------------------------------- /32Bit-only/AtherosL2Ethernet.i386.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AtherosL2Ethernet.i386.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/AttansicL1eEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AttansicL1eEthernet 9 | CFBundleIdentifier 10 | ru.Applelife.AttansicL1eEthernet 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AttansicL1eEthernet 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.1b0 21 | IOKitPersonalities 22 | 23 | Attansic L1e NIC Driver 24 | 25 | CFBundleIdentifier 26 | ru.Applelife.AttansicL1eEthernet 27 | IOClass 28 | AttansicL1eEthernet 29 | IOPCIMatch 30 | 0x10261969 31 | IOProbeScore 32 | 500 33 | IOProviderClass 34 | IOPCIDevice 35 | Name 36 | PCI ID Matching 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.5 43 | com.apple.iokit.IOPCIFamily 44 | 1.6 45 | com.apple.kpi.bsd 46 | 8.0.0b2 47 | com.apple.kpi.iokit 48 | 8.0.0b2 49 | com.apple.kpi.libkern 50 | 8.0.0b2 51 | com.apple.kpi.mach 52 | 8.0.0b2 53 | 54 | OSBundleRequired 55 | Network-Root 56 | 57 | 58 | -------------------------------------------------------------------------------- /32Bit-only/AttansicL1eEthernet.kext/Contents/MacOS/AttansicL1eEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AttansicL1eEthernet.kext/Contents/MacOS/AttansicL1eEthernet -------------------------------------------------------------------------------- /32Bit-only/AttansicL1eEthernet.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/AttansicL1eEthernet.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/FakeSMC-32.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | fakesmc 9 | CFBundleIdentifier 10 | org.netkas.fakesmc 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | fakesmc 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 2.5 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 2 23 | IOKitPersonalities 24 | 25 | FakeSMC 26 | 27 | CFBundleIdentifier 28 | org.netkas.fakesmc 29 | IOClass 30 | FakeSMC 31 | IOMatchCategory 32 | IOACPIPlatformDevice 33 | IOProviderClass 34 | AppleACPIPlatformExpert 35 | IOResourceMatch 36 | ACPI 37 | SMCKeys 38 | 39 | $Num 40 | 41 | AQ== 42 | 43 | ACID 44 | 45 | AAAAAAAA 46 | 47 | BALG 48 | 49 | AAAAAAAA 50 | 51 | LSOF 52 | 53 | AQ== 54 | 55 | LSSB 56 | 57 | AQE= 58 | 59 | MOST 60 | 61 | AAAAAAAA 62 | 63 | MSDS 64 | 65 | AwAAAAAA 66 | 67 | MSSD 68 | 69 | AA== 70 | 71 | MSSP 72 | 73 | AA== 74 | 75 | NATJ 76 | 77 | AA== 78 | 79 | NVPR 80 | 81 | AAAAAAAA 82 | 83 | OSK0 84 | ourhardworkbythesewordsguardedpl 85 | OSK1 86 | easedontsteal(c)AppleComputerInc 87 | REV 88 | 89 | ATAPAAAD 90 | 91 | 92 | debug 93 | 94 | smc-compatible 95 | smc-napa 96 | tjmax 97 | 100 98 | 99 | 100 | OSBundleLibraries 101 | 102 | com.apple.iokit.IOACPIFamily 103 | 1.0.0d1 104 | com.apple.kernel.6.0 105 | 7.9.9 106 | com.apple.kpi.iokit 107 | 7.0 108 | com.apple.kpi.libkern 109 | 8.0.0d0 110 | com.apple.kpi.unsupported 111 | 8.0.0b1 112 | 113 | OSBundleRequired 114 | Root 115 | 116 | 117 | -------------------------------------------------------------------------------- /32Bit-only/FakeSMC-32.kext/Contents/MacOS/fakesmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/FakeSMC-32.kext/Contents/MacOS/fakesmc -------------------------------------------------------------------------------- /32Bit-only/FakeSMC-32.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/FakeSMC-32.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/IOSDHCIBlockDevice.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | IOSDHCIBlockDevice 9 | CFBundleIdentifier 10 | IOSDHCIBlockDevice 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | IOSDHCIBlockDevice 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.0d1 21 | IOKitPersonalities 22 | 23 | SD Card Host Controller 24 | 25 | IOClass 26 | IOSDHCIBlockDevice 27 | IOPCIMatch 28 | 0x2381197b 29 | IOProviderClass 30 | IOPCIDevice 31 | 32 | 33 | OSBundleLibraries 34 | 35 | com.apple.iokit.IOPCIFamily 36 | 1.2 37 | com.apple.iokit.IOStorageFamily 38 | 1.0 39 | com.apple.kernel.iokit 40 | 6.9.9 41 | com.apple.kernel.libkern 42 | 6.9.9 43 | com.apple.kernel.mach 44 | 6.9.9 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /32Bit-only/IOSDHCIBlockDevice.kext/Contents/MacOS/IOSDHCIBlockDevice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/IOSDHCIBlockDevice.kext/Contents/MacOS/IOSDHCIBlockDevice -------------------------------------------------------------------------------- /32Bit-only/IOSDHCIBlockDevice.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/IOSDHCIBlockDevice.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/IOSDHCIBlockDevice.kext/Contents/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | IOSDHCIBlockDevice 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | IOSDHCIBlockDevice 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IOSDHCIBlockDevice 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0.0d1 23 | IOKitPersonalities 24 | 25 | SD Card Host Controller 26 | 27 | IOClass 28 | IOSDHCIBlockDevice 29 | IOPCIMatch 30 | 0x2381197b 31 | IOProviderClass 32 | IOPCIDevice 33 | 34 | 35 | OSBundleLibraries 36 | 37 | com.apple.iokit.IOPCIFamily 38 | 1.2 39 | com.apple.iokit.IOStorageFamily 40 | 1.0 41 | com.apple.kernel.iokit 42 | 6.9.9 43 | com.apple.kernel.libkern 44 | 6.9.9 45 | com.apple.kernel.mach 46 | 6.9.9 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /32Bit-only/LaptopDisplay.kext/Contents/MacOS/LaptopDisplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/LaptopDisplay.kext/Contents/MacOS/LaptopDisplay -------------------------------------------------------------------------------- /32Bit-only/LaptopDisplay.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/LaptopDisplay.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/RealtekR1000.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | RealtekR1000 9 | CFBundleIdentifier 10 | com.psystar.driver.RealtekR1000 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | Realtek RTL816X/8111 Family Fast Ethernet Driver 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.8.1 21 | IOKitPersonalities 22 | 23 | Realtek RTL8111B/RTL8168 NIC 24 | 25 | CFBundleIdentifier 26 | com.psystar.driver.RealtekR1000 27 | IOClass 28 | com_psystar_RealtekR1000 29 | IOPCIMatch 30 | 0x816910ec 0x816710ec 0x816810ec 0x813610ec 31 | IOProbeScore 32 | 10000 33 | IOProviderClass 34 | IOPCIDevice 35 | 36 | 37 | NSPrincipalClass 38 | com_psystar_RealtekR1000 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.4.3 43 | com.apple.iokit.IOPCIFamily 44 | 1.6 45 | com.apple.kpi.bsd 46 | 8.0.0b2 47 | com.apple.kpi.iokit 48 | 8.0.0b2 49 | com.apple.kpi.libkern 50 | 8.0.0b2 51 | com.apple.kpi.mach 52 | 8.0.0b2 53 | com.apple.kpi.unsupported 54 | 8.0.0b2 55 | 56 | OSBundleRequired 57 | Network-Root 58 | 59 | 60 | -------------------------------------------------------------------------------- /32Bit-only/RealtekR1000.kext/Contents/MacOS/RealtekR1000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/RealtekR1000.kext/Contents/MacOS/RealtekR1000 -------------------------------------------------------------------------------- /32Bit-only/RealtekR1000.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/RealtekR1000.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/RealtekR1000.kext/Contents/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | RealtekR1000 9 | CFBundleIdentifier 10 | com.psystar.driver.RealtekR1000 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | Realtek RTL816X/8111 Family Fast Ethernet Driver 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.8.1 21 | IOKitPersonalities 22 | 23 | Realtek RTL8111B/RTL8168 NIC 24 | 25 | CFBundleIdentifier 26 | com.psystar.driver.RealtekR1000 27 | IOClass 28 | com_psystar_RealtekR1000 29 | IOPCIMatch 30 | 0x816910ec 0x816710ec 0x816810ec 0x813610ec 31 | IOProbeScore 32 | 10000 33 | IOProviderClass 34 | IOPCIDevice 35 | 36 | 37 | NSPrincipalClass 38 | com_psystar_RealtekR1000 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IONetworkingFamily 42 | 1.4.3 43 | com.apple.iokit.IOPCIFamily 44 | 1.6 45 | com.apple.kpi.bsd 46 | 8.0.0b2 47 | com.apple.kpi.iokit 48 | 8.0.0b2 49 | com.apple.kpi.libkern 50 | 8.0.0b2 51 | com.apple.kpi.mach 52 | 8.0.0b2 53 | com.apple.kpi.unsupported 54 | 8.0.0b2 55 | 56 | OSBundleRequired 57 | Network-Root 58 | 59 | 60 | -------------------------------------------------------------------------------- /32Bit-only/VoodooBattery.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooBattery 9 | CFBundleGetInfoString 10 | © 2009 Superhai 11 | CFBundleIdentifier 12 | com.superhai.driver.VoodooBattery 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooBattery 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.2.1 23 | IOKitPersonalities 24 | 25 | BatteryManager 26 | 27 | CFBundleIdentifier 28 | com.superhai.driver.VoodooBattery 29 | IOClass 30 | VoodooBattery 31 | IOMatchCategory 32 | VoodooBattery 33 | IOProviderClass 34 | IOResources 35 | IOResourceMatch 36 | IOKit 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IOACPIFamily 42 | 1.0.0 43 | com.apple.kpi.iokit 44 | 8.0.0 45 | com.apple.kpi.libkern 46 | 8.0.0 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /32Bit-only/VoodooBattery.kext/Contents/MacOS/VoodooBattery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/VoodooBattery.kext/Contents/MacOS/VoodooBattery -------------------------------------------------------------------------------- /32Bit-only/VoodooBattery.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/VoodooBattery.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/VoodooPowerMini.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooPowerMini 9 | CFBundleGetInfoString 10 | © 2009 Superhai 11 | CFBundleIdentifier 12 | com.superhai.driver.VoodooPowerMini 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooPowerMini 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.2.4 23 | IOKitPersonalities 24 | 25 | PowerManager 26 | 27 | CFBundleIdentifier 28 | com.superhai.driver.VoodooPowerMini 29 | IOClass 30 | VoodooPowerMini 31 | IOMatchCategory 32 | VoodooPowerMini 33 | IOProviderClass 34 | IOResources 35 | IOResourceMatch 36 | IOKit 37 | PowerControl 38 | 39 | LoopTimerFactor 40 | 4 41 | OnAC 42 | 43 | Hysteresis 44 | 50 45 | PStateLimitHigh 46 | 0 47 | PStateLimitLow 48 | 0 49 | Threshold 50 | 200 51 | 52 | OnBattery 53 | 54 | Hysteresis 55 | 100 56 | PStateLimitHigh 57 | 15 58 | PStateLimitLow 59 | 0 60 | Threshold 61 | 500 62 | 63 | OnBatteryLow 64 | 65 | Hysteresis 66 | 100 67 | PStateLimitHigh 68 | 15 69 | PStateLimitLow 70 | 0 71 | Threshold 72 | 800 73 | 74 | UseEfiFsb 75 | 76 | UserVoltageMax 77 | 1000 78 | UserVoltageMin 79 | 850 80 | VoltageOverride 81 | 82 | VoltageProbe 83 | 84 | 85 | 86 | 87 | OSBundleLibraries 88 | 89 | com.apple.kernel.libkern 90 | 1.0.0 91 | com.apple.kpi.iokit 92 | 7.0 93 | com.apple.kpi.libkern 94 | 8.0.0d0 95 | com.apple.kpi.mach 96 | 8.0.0d0 97 | com.apple.kpi.unsupported 98 | 8.0.0b1 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /32Bit-only/VoodooPowerMini.kext/Contents/MacOS/VoodooPowerMini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/VoodooPowerMini.kext/Contents/MacOS/VoodooPowerMini -------------------------------------------------------------------------------- /32Bit-only/VoodooPowerMini.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/VoodooPowerMini.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /32Bit-only/Zip/ATY_Init.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/ATY_Init.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/AppleACPIBatteryManager.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/AppleACPIBatteryManager.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/AppleIntelE1000e.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/AppleIntelE1000e.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/AtherosL1Ethernet.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/AtherosL1Ethernet.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/AtherosL1eEthernet.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/AtherosL1eEthernet.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/AtherosL2Ethernet.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/AtherosL2Ethernet.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/AttansicL1eEthernet.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/AttansicL1eEthernet.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/FakeSMC-32.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/FakeSMC-32.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/IOSDHCIBlockDevice.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/IOSDHCIBlockDevice.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/LaptopDisplay.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/LaptopDisplay.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/RealtekR1000.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/RealtekR1000.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/VoodooBattery.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/VoodooBattery.kext.zip -------------------------------------------------------------------------------- /32Bit-only/Zip/VoodooPowerMini.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/32Bit-only/Zip/VoodooPowerMini.kext.zip -------------------------------------------------------------------------------- /Archive/AppleVIAATA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AppleVIAATA 9 | CFBundleGetInfoString 10 | 1.0.2, Copyright Apple Computer, Inc. 2004 11 | CFBundleIdentifier 12 | com.apple.driver.AppleVIAATA 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Apple VIA ATA Driver 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0.2 25 | IOKitPersonalities 26 | 27 | VIA ATA Driver 28 | 29 | CFBundleIdentifier 30 | com.apple.driver.AppleVIAATA 31 | IOClass 32 | AppleVIAATADriver 33 | IOProviderClass 34 | AppleVIAATAChannel 35 | 36 | VIA PATA Controller 37 | 38 | CFBundleIdentifier 39 | com.apple.driver.AppleVIAATA 40 | Hardware Name 41 | 82C571 42 | IOClass 43 | AppleVIAATARoot 44 | IOPCIPrimaryMatch 45 | 0x05711106 0x610111AB 46 | IOProbeScore 47 | 1000 48 | IOProviderClass 49 | IOPCIDevice 50 | ISA Bridge Matching 51 | 52 | IOPCIClassMatch 53 | 0x06010000&0xffff0000 54 | IOProviderClass 55 | IOPCIDevice 56 | 57 | Serial ATA 58 | 59 | 60 | VIA SATA Controller 61 | 62 | CFBundleIdentifier 63 | com.apple.driver.AppleVIAATA 64 | Hardware Name 65 | 8237 SATA 66 | IOClass 67 | AppleVIAATARoot 68 | IOPCIPrimaryMatch 69 | 0x528810B9 0x528910B9 0x528710B9 0x31491106 0x00e310de 0x00ee10de 0x55131039 0x09631039 0x10B95229 0x522910B9 70 | IOProbeScore 71 | 1000 72 | IOProviderClass 73 | IOPCIDevice 74 | Serial ATA 75 | 76 | 77 | 78 | OSBundleLibraries 79 | 80 | com.apple.iokit.IOATAFamily 81 | 1.6.1f3 82 | com.apple.iokit.IOPCIFamily 83 | 2.0 84 | com.apple.kpi.iokit 85 | 9.0.0 86 | com.apple.kpi.libkern 87 | 9.0.0 88 | 89 | OSBundleRequired 90 | Local-Root 91 | 92 | 93 | -------------------------------------------------------------------------------- /Archive/AppleVIAATA.kext/Contents/MacOS/AppleVIAATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/AppleVIAATA.kext/Contents/MacOS/AppleVIAATA -------------------------------------------------------------------------------- /Archive/AppleVIAATA.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/AppleVIAATA.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | IOATAFamily 9 | CFBundleGetInfoString 10 | 9.9.9, Copyright Apple Inc. 2000-2008 11 | CFBundleIdentifier 12 | com.apple.iokit.IOATAFamily 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IOATAFamily 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 9.9.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 9.9.9 25 | IOKitPersonalities 26 | 27 | OSBundleCompatibleVersion 28 | 1.0b1 29 | OSBundleLibraries 30 | 31 | com.apple.kpi.bsd 32 | 8.0.0 33 | com.apple.kpi.iokit 34 | 8.0.0 35 | com.apple.kpi.libkern 36 | 8.0.0 37 | com.apple.kpi.mach 38 | 8.0.0 39 | 40 | OSBundleRequired 41 | Root 42 | 43 | 44 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/MacOS/IOATAFamily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/MacOS/IOATAFamily -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeDirectory -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeRequirements -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | version.plist 8 | 9 | WIGXhLqgsN3rwx6SwwEPqvFfASk= 10 | 11 | 12 | rules 13 | 14 | ^Resources/ 15 | 16 | ^Resources/.*\.lproj/ 17 | 18 | omit 19 | 20 | weight 21 | 10 22 | 23 | ^Resources/.*\.lproj/locversion.plist$ 24 | 25 | omit 26 | 27 | weight 28 | 30 29 | 30 | ^Resources/.*\.nib/classes\.nib$ 31 | 32 | optional 33 | 34 | weight 35 | 5 36 | 37 | ^Resources/.*\.nib/data\.dependency$ 38 | 39 | optional 40 | 41 | weight 42 | 5 43 | 44 | ^Resources/.*\.nib/designable\.nib$ 45 | 46 | optional 47 | 48 | weight 49 | 5 50 | 51 | ^Resources/.*\.nib/info\.nib$ 52 | 53 | optional 54 | 55 | weight 56 | 5 57 | 58 | ^Resources/English\.lproj/ 59 | 60 | optional 61 | 62 | weight 63 | 20 64 | 65 | ^version.plist$ 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/CodeSignature -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/MacOS/AppleIntelPIIXATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/MacOS/AppleIntelPIIXATA -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | version.plist 8 | 9 | WIGXhLqgsN3rwx6SwwEPqvFfASk= 10 | 11 | 12 | rules 13 | 14 | ^Resources/ 15 | 16 | ^Resources/.*\.lproj/ 17 | 18 | omit 19 | 20 | weight 21 | 10 22 | 23 | ^Resources/.*\.lproj/locversion.plist$ 24 | 25 | omit 26 | 27 | weight 28 | 30 29 | 30 | ^Resources/.*\.nib/classes\.nib$ 31 | 32 | optional 33 | 34 | weight 35 | 5 36 | 37 | ^Resources/.*\.nib/data\.dependency$ 38 | 39 | optional 40 | 41 | weight 42 | 5 43 | 44 | ^Resources/.*\.nib/designable\.nib$ 45 | 46 | optional 47 | 48 | weight 49 | 5 50 | 51 | ^Resources/.*\.nib/info\.nib$ 52 | 53 | optional 54 | 55 | weight 56 | 5 57 | 58 | ^Resources/English\.lproj/ 59 | 60 | optional 61 | 62 | weight 63 | 20 64 | 65 | ^version.plist$ 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 75 7 | CFBundleShortVersionString 8 | 2.5.0 9 | CFBundleVersion 10 | 2.5.0 11 | ProjectName 12 | AppleIntelPIIXATA 13 | SourceVersion 14 | 2500004 15 | 16 | 17 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/CodeDirectory: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/CodeRequirements: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/CodeResources: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeResources -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/CodeSignature: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeSignature -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | IOATABlockStorage 9 | CFBundleGetInfoString 10 | 2.5.0, Copyright Apple Inc. 2005-2008 11 | CFBundleIdentifier 12 | com.apple.iokit.IOATABlockStorage 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IOATABlockStorage 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.5.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 2.5.0 25 | IOKitPersonalities 26 | 27 | AppleATADiskDriver 28 | 29 | CFBundleIdentifier 30 | com.apple.iokit.IOATABlockStorage 31 | IOClass 32 | AppleATADiskDriver 33 | IOProviderClass 34 | IOATADevice 35 | ata device type 36 | ata 37 | 38 | 39 | OSBundleCompatibleVersion 40 | 2.0.0 41 | OSBundleLibraries 42 | 43 | com.apple.iokit.IOATAFamily 44 | 1.5.1d1 45 | com.apple.iokit.IOStorageFamily 46 | 1.0.0 47 | com.apple.kpi.bsd 48 | 8.0.0 49 | com.apple.kpi.iokit 50 | 8.0.0 51 | com.apple.kpi.libkern 52 | 8.0.0 53 | com.apple.kpi.mach 54 | 8.0.0 55 | 56 | OSBundleRequired 57 | Local-Root 58 | 59 | 60 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/MacOS/IOATABlockStorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/MacOS/IOATABlockStorage -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/Resources/PCCard.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/Resources/PCCard.icns -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/PCCard.icns 8 | 9 | m+SLV8qE/IhmgS+mZFSClMn1e1Q= 10 | 11 | version.plist 12 | 13 | i7M1JSdNzZOv19dyEB6Z9WBHrJQ= 14 | 15 | 16 | rules 17 | 18 | ^Resources/ 19 | 20 | ^Resources/.*\.lproj/ 21 | 22 | omit 23 | 24 | weight 25 | 10 26 | 27 | ^Resources/.*\.lproj/locversion.plist$ 28 | 29 | omit 30 | 31 | weight 32 | 30 33 | 34 | ^Resources/.*\.nib/classes\.nib$ 35 | 36 | optional 37 | 38 | weight 39 | 5 40 | 41 | ^Resources/.*\.nib/data\.dependency$ 42 | 43 | optional 44 | 45 | weight 46 | 5 47 | 48 | ^Resources/.*\.nib/designable\.nib$ 49 | 50 | optional 51 | 52 | weight 53 | 5 54 | 55 | ^Resources/.*\.nib/info\.nib$ 56 | 57 | optional 58 | 59 | weight 60 | 5 61 | 62 | ^Resources/English\.lproj/ 63 | 64 | optional 65 | 66 | weight 67 | 20 68 | 69 | ^version.plist$ 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATABlockStorage.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 168 7 | CFBundleShortVersionString 8 | 2.5.0 9 | CFBundleVersion 10 | 2.5.0 11 | ProjectName 12 | IOATABlockStorage 13 | SourceVersion 14 | 2500104 15 | 16 | 17 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/CodeDirectory: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/CodeRequirements: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/CodeResources: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeResources -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/CodeSignature: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeSignature -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | IOATAPIProtocolTransport 9 | CFBundleGetInfoString 10 | 2.5.0, Copyright Apple Inc. 2000-2008 11 | CFBundleIdentifier 12 | com.apple.iokit.IOATAPIProtocolTransport 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IOATAPIProtocolTransport 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.5.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 2.5.0 25 | IOKitPersonalities 26 | 27 | IOATAPIProtocolTransport 28 | 29 | CFBundleIdentifier 30 | com.apple.iokit.IOATAPIProtocolTransport 31 | IOClass 32 | IOATAPIProtocolTransport 33 | IOProviderClass 34 | IOATADevice 35 | Physical Interconnect 36 | ATAPI 37 | Physical Interconnect Location 38 | Internal 39 | Read Time Out Duration 40 | 15000 41 | Retry Count 42 | 1 43 | Write Time Out Duration 44 | 15000 45 | ata device type 46 | atapi 47 | 48 | 49 | OSBundleCompatibleVersion 50 | 1.0.0 51 | OSBundleLibraries 52 | 53 | com.apple.iokit.IOATAFamily 54 | 1.4.8f1 55 | com.apple.iokit.IOSCSIArchitectureModelFamily 56 | 1.0.0 57 | com.apple.kpi.bsd 58 | 9.0.0 59 | com.apple.kpi.iokit 60 | 9.0.0 61 | com.apple.kpi.libkern 62 | 9.0.0 63 | com.apple.kpi.mach 64 | 9.0.0 65 | 66 | OSBundleRequired 67 | Local-Root 68 | 69 | 70 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/MacOS/IOATAPIProtocolTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/MacOS/IOATAPIProtocolTransport -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | version.plist 8 | 9 | +OavNP4cesogqJcAbsKAf/HDVQc= 10 | 11 | 12 | rules 13 | 14 | ^Resources/ 15 | 16 | ^Resources/.*\.lproj/ 17 | 18 | omit 19 | 20 | weight 21 | 10 22 | 23 | ^Resources/.*\.lproj/locversion.plist$ 24 | 25 | omit 26 | 27 | weight 28 | 30 29 | 30 | ^Resources/.*\.nib/classes\.nib$ 31 | 32 | optional 33 | 34 | weight 35 | 5 36 | 37 | ^Resources/.*\.nib/data\.dependency$ 38 | 39 | optional 40 | 41 | weight 42 | 5 43 | 44 | ^Resources/.*\.nib/designable\.nib$ 45 | 46 | optional 47 | 48 | weight 49 | 5 50 | 51 | ^Resources/.*\.nib/info\.nib$ 52 | 53 | optional 54 | 55 | weight 56 | 5 57 | 58 | ^Resources/English\.lproj/ 59 | 60 | optional 61 | 62 | weight 63 | 20 64 | 65 | ^version.plist$ 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /Archive/IOATAFamily.kext/Contents/PlugIns/IOATAPIProtocolTransport.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 97 7 | CFBundleShortVersionString 8 | 2.5.0 9 | CFBundleVersion 10 | 2.5.0 11 | ProjectName 12 | IOATAPIProtocolTransport 13 | SourceVersion 14 | 2500006 15 | 16 | 17 | -------------------------------------------------------------------------------- /Archive/NVinject.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | NVinject 9 | CFBundleGetInfoString 10 | NVinject 0.2.0, Copyright 2007 nvinject.free.fr 11 | CFBundleIdentifier 12 | com.nvinject 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NVinject 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 0.2.0 23 | IOKitPersonalities 24 | 25 | NVinject 26 | 27 | CFBundleIdentifier 28 | com.nvinject 29 | IOClass 30 | com_nvinject 31 | IOMatchCategory 32 | IOFramebuffer 33 | IONameMatch 34 | display 35 | IOPCIMatch 36 | 0x000010de&0x0000ffff 37 | IOProbeScore 38 | 0 39 | IOProviderClass 40 | IOPCIDevice 41 | entriesToAdd 42 | 43 | @0,compatible 44 | NVDA,NVMac 45 | @0,device_type 46 | display 47 | @0,name 48 | NVDA,Display-A 49 | @1,compatible 50 | NVDA,NVMac 51 | @1,device_type 52 | display 53 | @1,name 54 | NVDA,Display-B 55 | NVCAP 56 | 57 | BAAAAAAAAwAMAAAAAAAABwAAAAA= 58 | 59 | NVPM 60 | 61 | AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 62 | 63 | VRAM,totalsize 64 | 65 | AAAAEA== 66 | 67 | device_type 68 | NVDA,Parent 69 | model 70 | Graphics by NVIDIA 71 | name 72 | display 73 | rom-revision 74 | NVinject 0.2.0 75 | 76 | 77 | 78 | OSBundleLibraries 79 | 80 | com.apple.iokit.IOPCIFamily 81 | 1.0.0b1 82 | com.apple.kernel.iokit 83 | 6.0 84 | 85 | OSBundleRequired 86 | Safe Boot 87 | 88 | 89 | -------------------------------------------------------------------------------- /Archive/NVinject.kext/Contents/MacOS/NVinject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/NVinject.kext/Contents/MacOS/NVinject -------------------------------------------------------------------------------- /Archive/NVinjectGo.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | NVinjectGo 9 | CFBundleGetInfoString 10 | NVinjectGo 0.2.0, Copyright 2007 nvinject.free.fr 11 | CFBundleIdentifier 12 | com.NVinjectGo 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NVinjectGo 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 0.2.0 23 | IOKitPersonalities 24 | 25 | NVinjectGo 26 | 27 | CFBundleIdentifier 28 | com.NVinjectGo 29 | IOClass 30 | com_NVinjectGo 31 | IOMatchCategory 32 | IOFramebuffer 33 | IONameMatch 34 | display 35 | IOPCIMatch 36 | 0x000010de&0x0000ffff 37 | IOProbeScore 38 | 60000 39 | IOProviderClass 40 | IOPCIDevice 41 | entriesToAdd 42 | 43 | @0,compatible 44 | NVDA,NVMac 45 | @0,device_type 46 | display 47 | @0,name 48 | NVDA,Display-A 49 | @1,compatible 50 | NVDA,NVMac 51 | @1,device_type 52 | display 53 | @1,display-type 54 | LCD 55 | @1,name 56 | NVDA,Display-B 57 | NVCAP 58 | 59 | BAAAAAAAAwAMAAAAAAAABwAAAAA= 60 | 61 | device_type 62 | NVDA,GeForce 63 | model 64 | Graphics by NVIDIA 65 | name 66 | NVDA,Parent 67 | rom-revision 68 | NVinjectGo 0.2.0 69 | 70 | 71 | 72 | OSBundleLibraries 73 | 74 | com.apple.iokit.IOPCIFamily 75 | 1.0.0b1 76 | com.apple.kernel.iokit 77 | 6.0 78 | 79 | OSBundleRequired 80 | Safe Boot 81 | 82 | 83 | -------------------------------------------------------------------------------- /Archive/NVinjectGo.kext/Contents/MacOS/NVinjectGo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/NVinjectGo.kext/Contents/MacOS/NVinjectGo -------------------------------------------------------------------------------- /Archive/OpenHaltRestart.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OpenHaltRestart 9 | CFBundleIdentifier 10 | com.psystar.driver.OpenHaltRestart 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | OpenHaltRestart 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.3 21 | IOKitPersonalities 22 | 23 | OpenHaltRestart 24 | 25 | CFBundleIdentifier 26 | com.psystar.driver.OpenHaltRestart 27 | IOClass 28 | com_psystar_OpenHaltRestart 29 | IOMatchCategory 30 | com_psystar_OpenHaltRestart 31 | IOProbeScore 32 | -1000 33 | IOProviderClass 34 | IOPlatformExpertDevice 35 | IOResourceMatch 36 | ACPI 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.kpi.iokit 42 | 9.0 43 | com.apple.kpi.libkern 44 | 9.0 45 | 46 | OSBundleRequired 47 | Root 48 | 49 | 50 | -------------------------------------------------------------------------------- /Archive/OpenHaltRestart.kext/Contents/MacOS/OpenHaltRestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/OpenHaltRestart.kext/Contents/MacOS/OpenHaltRestart -------------------------------------------------------------------------------- /Archive/OpenHaltRestart.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/OpenHaltRestart.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Archive/SuperNForceATA.kext/Contents/MacOS/SuperNForceATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/SuperNForceATA.kext/Contents/MacOS/SuperNForceATA -------------------------------------------------------------------------------- /Archive/SuperNForceATA.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/SuperNForceATA.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Archive/SuperVIAATA.kext/Contents/MacOS/SuperVIAATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Archive/SuperVIAATA.kext/Contents/MacOS/SuperVIAATA -------------------------------------------------------------------------------- /FAT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/.DS_Store -------------------------------------------------------------------------------- /FAT/AppleACPIPS2Nub.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | AppleACPIPS2Nub 9 | CFBundleIdentifier 10 | com.yourcompany.driver.AppleACPIPS2Nub 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | AppleACPIPS2Nub 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.0d1 21 | IOKitPersonalities 22 | 23 | ACPI PS/2 Nub 24 | 25 | CFBundleIdentifier 26 | com.yourcompany.driver.AppleACPIPS2Nub 27 | IOClass 28 | AppleACPIPS2Nub 29 | IONameMatch 30 | 31 | PNP0303 32 | PNP030B 33 | 34 | IOProviderClass 35 | IOACPIPlatformDevice 36 | MouseNameMatch 37 | 38 | PNP0F03 39 | PNP0F0B 40 | PNP0F0E 41 | PNP0F13 42 | 43 | 44 | 45 | OSBundleLibraries 46 | 47 | com.apple.iokit.IOACPIFamily 48 | 1.0.0d1 49 | com.apple.kpi.bsd 50 | 8.0.0 51 | com.apple.kpi.iokit 52 | 8.0.0 53 | com.apple.kpi.libkern 54 | 8.0.0 55 | com.apple.kpi.mach 56 | 8.0.0 57 | com.apple.kpi.unsupported 58 | 8.0.0 59 | 60 | OSBundleRequired 61 | Root 62 | 63 | 64 | -------------------------------------------------------------------------------- /FAT/AppleACPIPS2Nub.kext/Contents/MacOS/AppleACPIPS2Nub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/AppleACPIPS2Nub.kext/Contents/MacOS/AppleACPIPS2Nub -------------------------------------------------------------------------------- /FAT/CPUi.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | CPUi 9 | CFBundleIdentifier 10 | com.mojodojo.driver.CPUi 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | CPUi 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0.6 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0.6b1 23 | IOKitPersonalities 24 | 25 | CPU-i 26 | 27 | CFBundleIdentifier 28 | com.mojodojo.driver.CPUi 29 | IOClass 30 | CPUi 31 | IOMatchCategory 32 | CPUi 33 | IOProviderClass 34 | IOResources 35 | IOResourceMatch 36 | IOKit 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.kpi.iokit 42 | 9.0.0 43 | com.apple.kpi.libkern 44 | 9.0.0 45 | com.apple.kpi.mach 46 | 9.0.0 47 | com.apple.kpi.unsupported 48 | 9.0.0 49 | 50 | OSBundleRequired 51 | Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /FAT/CPUi.kext/Contents/MacOS/CPUi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/CPUi.kext/Contents/MacOS/CPUi -------------------------------------------------------------------------------- /FAT/CPUi.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/CPUi.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/EvOreboot.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | EvOreboot 9 | CFBundleIdentifier 10 | es.osx86.driver.EvOreboot 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | EvOreboot 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.3 21 | IOKitPersonalities 22 | 23 | EvOreboot 24 | 25 | CFBundleIdentifier 26 | es.osx86.driver.EvOreboot 27 | IOClass 28 | es_osx86_EvOreboot 29 | IOMatchCategory 30 | es_osx86_EvOreboot 31 | IOProbeScore 32 | -1000 33 | IOProviderClass 34 | IOPlatformExpertDevice 35 | IOResourceMatch 36 | ACPI 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.kpi.iokit 42 | 9.0 43 | com.apple.kpi.libkern 44 | 9.0 45 | 46 | OSBundleRequired 47 | Root 48 | 49 | 50 | -------------------------------------------------------------------------------- /FAT/EvOreboot.kext/Contents/MacOS/EvOreboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/EvOreboot.kext/Contents/MacOS/EvOreboot -------------------------------------------------------------------------------- /FAT/EvOreboot.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/EvOreboot.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/NVEnabler-64.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | NVEnabler 9 | CFBundleIdentifier 10 | com.osxenablers.NVEnabler 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | NVEnabler 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.0.1 21 | IOKitPersonalities 22 | 23 | NVEnabler 24 | 25 | CFBundleIdentifier 26 | com.osxenablers.NVEnabler 27 | IOClass 28 | NVEnabler 29 | IOKitDebug 30 | 65535 31 | IOMatchCategory 32 | IOFramebuffer 33 | IONameMatch 34 | display 35 | IOPCIMatch 36 | 0x000010de&0x0000ffff 37 | IOProbeScore 38 | 8000 39 | IOProviderClass 40 | IOPCIDevice 41 | addProperties 42 | 43 | @0,compatible 44 | NVDA,NVMac 45 | @0,device_type 46 | display 47 | @0,display-cfg 48 | 49 | AwEAAA== 50 | 51 | @0,name 52 | NVDA,Display-A 53 | @1,compatible 54 | NVDA,NVMac 55 | @1,device_type 56 | display 57 | @1,display-cfg 58 | 59 | //8AAQ== 60 | 61 | @1,name 62 | NVDA,Display-B 63 | device_type 64 | NVDA,Parent 65 | 66 | skipvbios_disabled 67 | 68 | 69 | 70 | OSBundleLibraries 71 | 72 | com.apple.iokit.IOPCIFamily 73 | 1.2 74 | com.apple.kpi.bsd 75 | 8.0.0 76 | com.apple.kpi.iokit 77 | 8.0 78 | com.apple.kpi.libkern 79 | 8.0 80 | com.apple.kpi.mach 81 | 8.0.0 82 | com.apple.kpi.unsupported 83 | 8.0.0 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /FAT/NVEnabler-64.kext/Contents/MacOS/NVEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/NVEnabler-64.kext/Contents/MacOS/NVEnabler -------------------------------------------------------------------------------- /FAT/NVEnabler-64.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/NVEnabler-64.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/NullCPUPowerManagement.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | NullCPUPowerManagement 9 | CFBundleIdentifier 10 | org.tgwbd.driver.NullCPUPowerManagement 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | NullCPUPowerManagement 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.0d2 21 | IOKitPersonalities 22 | 23 | IntelCPUPowerManagement 24 | 25 | CFBundleIdentifier 26 | org.tgwbd.driver.NullCPUPowerManagement 27 | IOClass 28 | NullCPUPowerManagement 29 | IOMatchCategory 30 | AppleIntelCPUPowerManagement 31 | IOProbeScore 32 | 100 33 | IOProviderClass 34 | IOResources 35 | IOResourceMatch 36 | IOKit 37 | 38 | 39 | OSBundleLibraries 40 | 41 | com.apple.kpi.iokit 42 | 8.0.0 43 | com.apple.kpi.libkern 44 | 8.0.0 45 | com.apple.kpi.unsupported 46 | 8.0.0 47 | 48 | OSBundleRequired 49 | Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /FAT/NullCPUPowerManagement.kext/Contents/MacOS/NullCPUPowerManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/NullCPUPowerManagement.kext/Contents/MacOS/NullCPUPowerManagement -------------------------------------------------------------------------------- /FAT/NullCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/NullCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooHDA 9 | CFBundleIdentifier 10 | org.voodoo.driver.VoodooHDA 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | VoodooHDA 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.2.1 21 | IOKitPersonalities 22 | 23 | VoodooHDA 24 | 25 | CFBundleIdentifier 26 | org.voodoo.driver.VoodooHDA 27 | IOClass 28 | VoodooHDADevice 29 | IOMatchCategory 30 | VoodooHDADevice 31 | IOPCIClassMatch 32 | 0x04030000&0xffff0000 33 | IOProviderClass 34 | IOPCIDevice 35 | IOUserClientClass 36 | VoodooHDAUserClient 37 | VoodooHDAVerboseLevel 38 | 0 39 | 40 | 41 | OSBundleLibraries 42 | 43 | com.apple.iokit.IOAudioFamily 44 | 1.1fc9 45 | com.apple.iokit.IOPCIFamily 46 | 1.1 47 | com.apple.kpi.bsd 48 | 8.0.0 49 | com.apple.kpi.iokit 50 | 8.0.0 51 | com.apple.kpi.libkern 52 | 8.0.0 53 | com.apple.kpi.mach 54 | 8.0.0 55 | com.apple.kpi.unsupported 56 | 8.0.0 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /FAT/VoodooHDA.kext/Contents/Info.plist.backup: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooHDA 9 | CFBundleIdentifier 10 | org.voodoo.driver.VoodooHDA 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | VoodooHDA 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.2.1 21 | IOKitPersonalities 22 | 23 | VoodooHDA 24 | 25 | CFBundleIdentifier 26 | org.voodoo.driver.VoodooHDA 27 | IOClass 28 | VoodooHDADevice 29 | IOMatchCategory 30 | VoodooHDADevice 31 | IOPCIClassMatch 32 | 0x04030000&0xffff0000 33 | IOProviderClass 34 | IOPCIDevice 35 | IOUserClientClass 36 | VoodooHDAUserClient 37 | VoodooHDAVerboseLevel 38 | 1 39 | 40 | 41 | OSBundleLibraries 42 | 43 | com.apple.iokit.IOAudioFamily 44 | 1.1fc9 45 | com.apple.iokit.IOPCIFamily 46 | 1.1 47 | com.apple.kernel.6.0 48 | 7.9.9 49 | com.apple.kpi.bsd 50 | 8.0.0 51 | com.apple.kpi.iokit 52 | 8.0.0 53 | com.apple.kpi.libkern 54 | 8.0.0 55 | com.apple.kpi.mach 56 | 8.0.0 57 | com.apple.kpi.unsupported 58 | 8.0.0 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /FAT/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /FAT/VoodooHDA.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooHDA.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleIdentifier 10 | org.voodoo.driver.PS2Controller 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | Voodoo PS/2 Controller 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.1.0 23 | IOKitPersonalities 24 | 25 | ApplePS2Controller 26 | 27 | CFBundleIdentifier 28 | org.voodoo.driver.PS2Controller 29 | IOClass 30 | ApplePS2Controller 31 | IONameMatch 32 | ps2controller 33 | IOProviderClass 34 | IOPlatformDevice 35 | 36 | 37 | OSBundleCompatibleVersion 38 | 1.1.0 39 | OSBundleLibraries 40 | 41 | com.apple.iokit.IOACPIFamily 42 | 1.0.0d1 43 | com.apple.kpi.bsd 44 | 8.0.0 45 | com.apple.kpi.iokit 46 | 8.0.0 47 | com.apple.kpi.libkern 48 | 8.0.0 49 | com.apple.kpi.mach 50 | 8.0.0 51 | com.apple.kpi.unsupported 52 | 8.0.0 53 | 54 | OSBundleRequired 55 | Console 56 | 57 | 58 | -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooPS2Keyboard 9 | CFBundleGetInfoString 10 | 1.1.0, Copyright Apple Computer, Inc. 2000-2003 11 | CFBundleIdentifier 12 | org.voodoo.driver.PS2Keyboard 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Keyboard 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.1.0 25 | IOKitPersonalities 26 | 27 | ApplePS2Keyboard 28 | 29 | CFBundleIdentifier 30 | org.voodoo.driver.PS2Keyboard 31 | IOClass 32 | ApplePS2Keyboard 33 | IOProviderClass 34 | ApplePS2KeyboardDevice 35 | Make Application key into Apple Fn key 36 | 37 | Make Application key into right windows 38 | 39 | Make right modifier keys into Hangul and Hanja 40 | 41 | Swap capslock and left control 42 | 43 | Swap command and option 44 | 45 | Use ISO layout keyboard 46 | 47 | alt_handler_id 48 | 3 49 | 50 | 51 | NSHumanReadableCopyright 52 | Copyright Apple Computer, Inc. 2000-2003 53 | OSBundleLibraries 54 | 55 | com.apple.iokit.IOHIDSystem 56 | 1.1 57 | org.voodoo.driver.PS2Controller 58 | 1.1 59 | com.apple.kpi.bsd 60 | 8.0.0 61 | com.apple.kpi.iokit 62 | 8.0.0 63 | com.apple.kpi.libkern 64 | 8.0.0 65 | com.apple.kpi.mach 66 | 8.0.0 67 | com.apple.kpi.unsupported 68 | 8.0.0 69 | 70 | OSBundleRequired 71 | Console 72 | 73 | 74 | -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 1.2.0, Copyright Apple Computer, Inc. 2000-2004 11 | CFBundleIdentifier 12 | org.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.2.0 25 | IOKitPersonalities 26 | 27 | ApplePS2Mouse 28 | 29 | CFBundleIdentifier 30 | org.voodoo.driver.PS2Mouse 31 | DefaultResolution 32 | 9830400 33 | ForceDefaultResolution 34 | 35 | IOClass 36 | ApplePS2Mouse 37 | IOProviderClass 38 | ApplePS2MouseDevice 39 | InvertY 40 | 41 | 42 | 43 | NSHumanReadableCopyright 44 | Copyright Apple Computer, Inc. 2000-2003 45 | OSBundleLibraries 46 | 47 | com.apple.iokit.IOHIDSystem 48 | 1.1 49 | org.voodoo.driver.PS2Controller 50 | 1.1 51 | com.apple.kpi.bsd 52 | 8.0.0 53 | com.apple.kpi.iokit 54 | 8.0.0 55 | com.apple.kpi.libkern 56 | 8.0.0 57 | com.apple.kpi.mach 58 | 8.0.0 59 | com.apple.kpi.unsupported 60 | 8.0.0 61 | 62 | OSBundleRequired 63 | Safe Boot 64 | 65 | 66 | -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/VoodooPS2Controller.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooPS2Controller.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/VoodooTSCSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 11D50 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoodooTSCSync 11 | CFBundleGetInfoString 12 | © 2009 Cosmo1t 13 | CFBundleIdentifier 14 | org.voodoo.driver.VoodooTSCSync 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | VoodooTSCSync 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.1 25 | DTCompiler 26 | 27 | DTPlatformBuild 28 | 4E109 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 10K549 33 | DTSDKName 34 | macosx10.6 35 | DTXcode 36 | 0430 37 | DTXcodeBuild 38 | 4E109 39 | IOKitPersonalities 40 | 41 | VoodooTSCSync 42 | 43 | CFBundleIdentifier 44 | org.voodoo.driver.VoodooTSCSync 45 | IOClass 46 | org_voodoo_driver_VoodooTSCSync 47 | IOMatchCategory 48 | VoodooTSCSync 49 | IOPropertyMatch 50 | 51 | IOCPUNumber 52 | 3 53 | 54 | IOProviderClass 55 | AppleACPICPU 56 | 57 | 58 | OSBundleLibraries 59 | 60 | com.apple.kpi.iokit 61 | 7.0 62 | com.apple.kpi.libkern 63 | 8.0d0 64 | com.apple.kpi.unsupported 65 | 8.0b1 66 | 67 | OSBundleRequired 68 | Root 69 | 70 | 71 | -------------------------------------------------------------------------------- /FAT/VoodooTSCSync.kext/Contents/MacOS/VoodooTSCSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooTSCSync.kext/Contents/MacOS/VoodooTSCSync -------------------------------------------------------------------------------- /FAT/VoodooTSCSync.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/VoodooTSCSync.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FAT/Zip/AppleACPIPS2Nub.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/AppleACPIPS2Nub.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/CPUi.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/CPUi.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/EvOreboot.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/EvOreboot.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/NVEnabler-64.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/NVEnabler-64.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/NullCPUPowerManagement.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/NullCPUPowerManagement.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/VoodooHDA.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/VoodooHDA.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/VoodooPS2Controller.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/VoodooPS2Controller.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/VoodooTSCSync.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/VoodooTSCSync.kext.zip -------------------------------------------------------------------------------- /FAT/Zip/fakesmc.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/Zip/fakesmc.kext.zip -------------------------------------------------------------------------------- /FAT/fakesmc.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | fakesmc 9 | CFBundleIdentifier 10 | org.netkas.fakesmc 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | fakesmc 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | IOKitPersonalities 24 | 25 | FakeSMC 26 | 27 | CFBundleIdentifier 28 | org.netkas.fakesmc 29 | IOClass 30 | FakeSMC 31 | IOMatchCategory 32 | IOACPIPlatformDevice 33 | IOProviderClass 34 | AppleACPIPlatformExpert 35 | IOResourceMatch 36 | ACPI 37 | SMCKeys 38 | 39 | $Num 40 | 41 | AQ== 42 | 43 | LSOF 44 | 45 | AQ== 46 | 47 | LSSB 48 | 49 | AQE= 50 | 51 | MSSD 52 | 53 | Aw== 54 | 55 | MSSP 56 | 57 | AA== 58 | 59 | NATJ 60 | 61 | AA== 62 | 63 | OSK0 64 | ourhardworkbythesewordsguardedpl 65 | OSK1 66 | easedontsteal(c)AppleComputerInc 67 | REV 68 | 69 | ATAPAAAD 70 | 71 | 72 | 73 | 74 | OSBundleLibraries 75 | 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.iokit 79 | 7.0 80 | com.apple.kpi.libkern 81 | 8.0.0d0 82 | com.apple.kpi.unsupported 83 | 8.0.0b1 84 | 85 | OSBundleRequired 86 | Root 87 | 88 | 89 | -------------------------------------------------------------------------------- /FAT/fakesmc.kext/Contents/MacOS/fakesmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/fakesmc.kext/Contents/MacOS/fakesmc -------------------------------------------------------------------------------- /FAT/fakesmc.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/FAT/fakesmc.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Injectors/AtherosWiFiInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.nawcom.plist.AtherosWifFiInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AtherosWiFiInjector 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleSignature 16 | ???? 17 | CFBundleVersion 18 | 1.0.0 19 | IOKitPersonalities 20 | 21 | Atheros Wireless LAN PCI 22 | 23 | CFBundleIdentifier 24 | com.apple.driver.AirPort.Atheros21 25 | IOClass 26 | AirPort_AthrFusion21 27 | IOMatchCategory 28 | IODefaultMatchCategory 29 | IONameMatch 30 | 31 | pc168c,2a 32 | pc168c,13 33 | pc168c,2b 34 | pc168c,1014 35 | pci106b,0086 36 | pci168c,1c 37 | pci168c,1a 38 | pci168c,1b 39 | pci168c,1d 40 | pci168c,23 41 | pci168c,24 42 | 43 | IOProviderClass 44 | IOPCIDevice 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Injectors/BroadcomWiFiInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.nawcom.plist.BroadcomWiFiInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | BroadcomWiFiInjector 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleSignature 16 | ???? 17 | CFBundleVersion 18 | 1.0.0 19 | IOKitPersonalities 20 | 21 | Broadcom 802.11 PCI 22 | 23 | CFBundleIdentifier 24 | com.apple.driver.AirPortBrcm43xx 25 | IOClass 26 | AirPort_Brcm43xx 27 | IOMatchCategory 28 | IODefaultMatchCategory 29 | IONameMatch 30 | 31 | pci106b,4e 32 | pci14e4,4311 33 | pci14e4,4312 34 | pci14e4,4313 35 | pci14e4,4318 36 | pci14e4,4314 37 | pci14e4,4315 38 | pc14e4,4316 39 | pci14e4,4317 40 | pc14e4,4318 41 | pci14e4,431a 42 | pci14e4,4319 43 | pci14e4,431a 44 | pci14e4,4320 45 | pci14e4,4321 46 | pci14e4,4322 47 | pci14e4,4323 48 | pci14e4,4324 49 | pci14e4,4325 50 | pci14e4,4328 51 | pci14e4,432b 52 | pci14e4,432c 53 | pci14e4,432d 54 | pci14e4,4357 55 | 56 | IOProviderClass 57 | IOPCIDevice 58 | TruePowerOff 59 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /Injectors/Zip/AHCIPortInjector.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Injectors/Zip/AHCIPortInjector.kext.zip -------------------------------------------------------------------------------- /Injectors/Zip/ATAPortInjector.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Injectors/Zip/ATAPortInjector.kext.zip -------------------------------------------------------------------------------- /Injectors/Zip/AtherosWiFiInjector.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Injectors/Zip/AtherosWiFiInjector.kext.zip -------------------------------------------------------------------------------- /Injectors/Zip/BroadcomWiFiInjector.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Injectors/Zip/BroadcomWiFiInjector.kext.zip -------------------------------------------------------------------------------- /Injectors/Zip/SATA-unsupported.kext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Legacy-Kexts/4dfc274111abdc94e94498d1e76d9354f3700fc9/Injectors/Zip/SATA-unsupported.kext.zip --------------------------------------------------------------------------------