Skip to content

Commit

Permalink
AppleALC should not abort loading if it fails to find some kext
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed Apr 15, 2016
1 parent 0595984 commit 69ae1d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion AppleALC/kern_alc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ bool AlcEnabler::loadKexts() {
if (patcher.getError() != KernelPatcher::Error::NoError) {
SYSLOG("alc @ failed to load %s kext file", kextList[i].id);
patcher.clearError();
return false;
//return false;
// Depending on a system some kexts may actually not exist
continue;
}

patcher.setupKextListening();
Expand Down
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ AppleALC Changelog
- Added IDT92HD87B1 layout-id 3 Mirone resources
- Change IDT92HD81B1X5 to Mirone resources layout-id 3
- Change IDT92HD91BXX to Mirone resources layout-id 3
- AppleALC should not abort loading if it fails to find some kext

#### v1.0.7
- Added 0x100004 revision to ALC269
Expand Down

0 comments on commit 69ae1d3

Please sign in to comment.