Remove X3000 bundles

Due to linking issues, HD 5000 and 6000 are currently unsupported
This commit is contained in:
Mykola Grymalyuk
2021-03-20 16:08:20 -06:00
parent a35384e0b1
commit 3223854cdd
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -947,8 +947,8 @@ AddAMDAccel11 = [
"AMDLegacySupport.kext", "AMDLegacySupport.kext",
"AMDRadeonVADriver.bundle", "AMDRadeonVADriver.bundle",
"AMDRadeonVADriver2.bundle", "AMDRadeonVADriver2.bundle",
"AMDRadeonX3000.kext", #IOAccelertorFamily2 Dependancy #"AMDRadeonX3000.kext", # __ZN22IOAccelDisplayMachine210gMetaClassE link issues
"AMDRadeonX3000GLDriver.bundle", #"AMDRadeonX3000GLDriver.bundle",
#"AMDRadeonX4000.kext", #"AMDRadeonX4000.kext",
#"AMDRadeonX4000GLDriver.bundle", #"AMDRadeonX4000GLDriver.bundle",
#"AMDRadeonX4000HWServices.kext", #"AMDRadeonX4000HWServices.kext",
+2 -1
View File
@@ -180,9 +180,10 @@ class PatchSysVolume:
self.rebuild_snapshot() self.rebuild_snapshot()
def rebuild_snapshot(self): def rebuild_snapshot(self):
input("Press [ENTER] to continue with cache rebuild and snapshotting") input("Press [ENTER] to continue with cache rebuild")
print("- Rebuilding Kernel Cache (This may take some time)") print("- Rebuilding Kernel Cache (This may take some time)")
subprocess.run(f"sudo kmutil install --volume-root {self.mount_location} --update-all".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode() subprocess.run(f"sudo kmutil install --volume-root {self.mount_location} --update-all".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
input("Press [ENTER] to continue with snapshotting")
print("- Creating new APFS snapshot") print("- Creating new APFS snapshot")
subprocess.run(f"sudo bless --folder {self.mount_location}/System/Library/CoreServices --bootefi --create-snapshot".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode() subprocess.run(f"sudo bless --folder {self.mount_location}/System/Library/CoreServices --bootefi --create-snapshot".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()