This repository has been archived by the owner on Mar 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
Add support for 10.12.4 #16
Open
gdisaac07
wants to merge
26
commits into
lloeki:master
Choose a base branch
from
KhaosT:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Manually patched my IOThunderboltFamily kext in 10.12.2, and computed the md5 before and after patching. Now my output of running the script is: ``` target: patched, 10.12.2 (16C67) backup: original, 10.12.2 (16C67) ```
Update tb3-enabler.py to support macOS 10.12.2
@gdisaac07 I'm not entirely sure you submitted this to the right place, or am I missing something? |
Sorry, I added to my comment after I initially posted it. |
IOThunderboltFamily kext and macOSDeveloperBetaAccessUtility dmg.zip |
add for 10.12.6 (16G29) version md5 data.
* Allow tb3 enabler to work on OS x 10.13 Mac OS X slightly changes the code in the IOThunderboltSwitchType3::shouldSkipEnumeration() method. This adds support for 10.13 in the force apply method * Allow 10.13 to patched without using forceApply
In my 10.12.5 this script always exited at `check_SIP` because `sip_info` variable got `g%00%00%00`. I suggest to remove the `w`
Added 10.13.1 support
* Update for 10.12.6 * Update for 10.13.2 * add version
* update to latest version for 10.12.6 (16G1114) * update for 13.3
* Update for macOS 10.12.3 16D32 * Add 10.14.2 support.
- uncomment the old key.
* - fix the 10.14.2 issue. - uncomment the old key. * fix 10.14.5 issue.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Beta 2 introduced for 10.12.4 and breaks software. Added the following to fix broken code:
md5_version = {
"00e2f0eb5db157462a83e4de50583e33": ["10.12.1 (16B2659)"],
"ebde660af1f51dc7482551e8d07c62fd": ["10.12.2 (16C67)"],
"7fbc510cf91676739d638e1319d44e0e": ["10.12.3 (16D32)"],
"ad1f6d9f26deb5fd74b40e672141d65b": ["10.12.4 Beta 1 (16E144)"],
"064635706e72e76d4e4b4bd11084304e": ["10.12.4 Beta 2 (16E154)"]
}
md5_patch = {
"00e2f0eb5db157462a83e4de50583e33": "a6c2143c2f085c2c104369d7a1adfe03",
"ebde660af1f51dc7482551e8d07c62fd": "2ebb68137da4a1cb0dfc6e6f05be3db2",
"7fbc510cf91676739d638e1319d44e0e": "0af475c26cdf5e26f8fd7e4341dadea5",
"ad1f6d9f26deb5fd74b40e672141d65b": "99ab120bd6e959029f1f84c8f62a63c8",
"064635706e72e76d4e4b4bd11084304e": "0a65726a07b0afaaa9390c73cf60ccaa"
}
re_md5 = {
0: [
"00e2f0eb5db157462a83e4de50583e33",
"ebde660af1f51dc7482551e8d07c62fd",
"7fbc510cf91676739d638e1319d44e0e",
"ad1f6d9f26deb5fd74b40e672141d65b",
"064635706e72e76d4e4b4bd11084304e"
],
}