File tree Expand file tree Collapse file tree
sys_patch/patchsets/hardware/audio Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def __init__(self) -> None:
3838 self .constants : constants .Constants = constants .Constants ()
3939 self .trans = TranslateLanguage (self .constants ).application_entry ()
4040
41-
41+
4242
4343 logging_handler .InitializeLoggingSupport (self .constants )
4444
Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ def present(self) -> bool:
3535 """
3636 AppleHDA was outright removed in macOS 26, so this patch set is always present if OS requires it
3737 """
38- if utilities .check_kext_loaded ("org.voodoo.driver.VoodooHDA" ) != "" and self ._constants .audio_type != "AppleHDA" :
39- self ._constants .audio_type = "AppleHDA"
4038 return self ._constants .audio_type == "AppleHDA"
4139
4240 def requires_kernel_debug_kit (self ) -> bool :
@@ -75,6 +73,15 @@ def _modern_audio_patches(self) -> dict:
7573 "AppleHDA.kext" : f"{ self ._constants .applehda_version } " ,
7674 },
7775 },
76+ PatchType .REMOVE_SYSTEM_VOLUME :{
77+ "/Library/Extensions" :[
78+ "VoodooHDA.kext" ,
79+ "AppleHDADisabler.kext" ,
80+ ],
81+ "/Library/PreferencePanes" :[
82+ 'VoodooHDA.prefPane' ,
83+ ]
84+ },
7885 },
7986 }
8087
You can’t perform that action at this time.
0 commit comments