-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Att OpenCore 1.0.1 and Fix NVME and Fix Disk External
- Loading branch information
1 parent
ca1e82a
commit 62a275a
Showing
32 changed files
with
595 additions
and
59 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
319 changes: 303 additions & 16 deletions
319
EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist
100644 → 100755
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildMachineOSBuild</key> | ||
<string>21E258</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>Innie</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.cdf.Innie</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>Innie</string> | ||
<key>CFBundlePackageType</key> | ||
<string>KEXT</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.3.1</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>CFBundleVersion</key> | ||
<string>1.3.1</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>13E500a</string> | ||
<key>DTPlatformName</key> | ||
<string>macosx</string> | ||
<key>DTPlatformVersion</key> | ||
<string>12.3</string> | ||
<key>DTSDKBuild</key> | ||
<string>21E226</string> | ||
<key>DTSDKName</key> | ||
<string>macosx12.3</string> | ||
<key>DTXcode</key> | ||
<string>1331</string> | ||
<key>DTXcodeBuild</key> | ||
<string>13E500a</string> | ||
<key>IOKitPersonalities</key> | ||
<dict> | ||
<key>com.cdf.Innie</key> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.cdf.Innie</string> | ||
<key>IOClass</key> | ||
<string>Innie</string> | ||
<key>IOMatchCategory</key> | ||
<string>Innie</string> | ||
<key>IOProviderClass</key> | ||
<string>IOResources</string> | ||
<key>IOResourceMatch</key> | ||
<string>IOKit</string> | ||
</dict> | ||
</dict> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.13</string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2020-2022 cdf. All rights reserved.</string> | ||
<key>OSBundleLibraries</key> | ||
<dict> | ||
<key>com.apple.kpi.iokit</key> | ||
<string>9.0.0</string> | ||
<key>com.apple.kpi.libkern</key> | ||
<string>9.0.0</string> | ||
</dict> | ||
<key>OSBundleRequired</key> | ||
<string>Root</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Innie Changelog | ||
=============== | ||
#### v1.3.1 | ||
- Improve handling of multiple pci roots | ||
- Fix detection bug | ||
|
||
#### v1.3.0 | ||
- Improve detection logic | ||
- Rewrite to use I/O Kit startup | ||
|
||
#### v1.2.1 | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2020, cdf | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Innie | ||
===== | ||
|
||
A kernel extension for making all PCIe drives appear internal in macOS. | ||
|
||
#### Alternative | ||
|
||
An alternative to Innie is to add the `built-in` device property for each drive. This can be accomplished with [OpenCore](https://github.com/acidanthera/OpenCorePkg). | ||
|
||
#### Dependency | ||
|
||
Innie uses [MacKernelSDK](https://github.com/acidanthera/MacKernelSDK). |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildMachineOSBuild</key> | ||
<string>21G651</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>NVMeFix</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.acidanthera.NVMeFix</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>NVMeFix</string> | ||
<key>CFBundlePackageType</key> | ||
<string>KEXT</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.1.1</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>CFBundleVersion</key> | ||
<string>1.1.1</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>13F100</string> | ||
<key>DTPlatformName</key> | ||
<string>macosx</string> | ||
<key>DTPlatformVersion</key> | ||
<string>12.3</string> | ||
<key>DTSDKBuild</key> | ||
<string>21E226</string> | ||
<key>DTSDKName</key> | ||
<string>macosx12.3</string> | ||
<key>DTXcode</key> | ||
<string>1341</string> | ||
<key>DTXcodeBuild</key> | ||
<string>13F100</string> | ||
<key>IOKitPersonalities</key> | ||
<dict> | ||
<key>org.acidanthera.NVMeFix</key> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.acidanthera.NVMeFix</string> | ||
<key>IOClass</key> | ||
<string>NVMeFix</string> | ||
<key>IOMatchCategory</key> | ||
<string>NVMeFix</string> | ||
<key>IOProviderClass</key> | ||
<string>IOResources</string> | ||
<key>IOResourceMatch</key> | ||
<string>IOKit</string> | ||
</dict> | ||
</dict> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.14</string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2019 acidanthera. All rights reserved.</string> | ||
<key>OSBundleCompatibleVersion</key> | ||
<string>1.0</string> | ||
<key>OSBundleLibraries</key> | ||
<dict> | ||
<key>as.vit9696.Lilu</key> | ||
<string>1.4.1</string> | ||
<key>com.apple.kpi.bsd</key> | ||
<string>12.0.0</string> | ||
<key>com.apple.kpi.dsep</key> | ||
<string>12.0.0</string> | ||
<key>com.apple.kpi.iokit</key> | ||
<string>12.0.0</string> | ||
<key>com.apple.kpi.libkern</key> | ||
<string>12.0.0</string> | ||
<key>com.apple.kpi.mach</key> | ||
<string>12.0.0</string> | ||
<key>com.apple.kpi.unsupported</key> | ||
<string>12.0.0</string> | ||
</dict> | ||
<key>OSBundleRequired</key> | ||
<string>Root</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-280 Bytes
(99%)
EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+40 Bytes
(100%)
EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.