Revert "Work-around Ivy/Haswell idle KP"

This reverts commit 4dc14eb9c0.
This commit is contained in:
Mykola Grymalyuk
2022-11-02 21:30:32 -06:00
parent 4dc14eb9c0
commit 8c23ea137b
3 changed files with 1 additions and 26 deletions
+1 -5
View File
@@ -511,12 +511,8 @@ class PatchSysVolume:
else:
print(f"- Running Process:\n{process}")
utilities.process_status(subprocess.run(process, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True))
if any(x in required_patches for x in ["AMD Legacy GCN", "AMD Legacy Polaris"]):
if "AMD Legacy GCN" in required_patches or "AMD Legacy Polaris" in required_patches:
sys_patch_helpers.sys_patch_helpers(self.constants).disable_window_server_caching()
if any(x in required_patches for x in ["Nvidia Kepler", "Intel Ivy Bridge", "Intel Haswell"]):
sys_patch_helpers.sys_patch_helpers(self.constants).disable_mediaanalysisd()
self.write_patchset(required_patches)
def preflight_checks(self, required_patches, source_files_path):