misc.py: Strip media argument

This commit is contained in:
Mykola Grymalyuk
2023-05-27 11:23:35 -06:00
parent 7d0bbf62bf
commit a2cdc0339a
2 changed files with 4 additions and 17 deletions
+4
View File
@@ -3,6 +3,10 @@
## 0.6.7
- Resolve partition buttons overlapping in Install OpenCore UI
- ex. "EFI" and additional FAT32 partitions on a single drive
- Re-enable mediaanalysisd on Ventura
- Allows for Live Text support on systems with3802 GPUs
- ie. Intel Ivy Bridge and Haswell, Nvidia Kepler
- Previously disabled due to high instability in Photos with Face Scanning, now resolved
- Backend changes:
- Call `setpgrp()` to prevent app from being killed if parent process is killed (ie. LaunchAgents)
- Resolve payloads path being mis-routed during CLI calls
-17
View File
@@ -106,23 +106,6 @@ class BuildMiscellaneous:
logging.info("- Disabling memory error reporting")
re_block_args.append("pcie")
# Resolve mediaanalysisd crashing on 3802 GPUs
gpu_dict = [] if self.constants.custom_model else self.constants.computer.gpus
if gpu_dict == []:
gpu_dict = smbios_data.smbios_dictionary[self.model]["Stock GPUs"] if self.model in smbios_data.smbios_dictionary else []
for gpu in gpu_dict:
if not self.constants.custom_model:
gpu = gpu.arch
if gpu in [
device_probe.Intel.Archs.Ivy_Bridge,
device_probe.Intel.Archs.Haswell,
device_probe.NVIDIA.Archs.Kepler,
]:
logging.info("- Disabling mediaanalysisd")
re_block_args.append("media")
break
return re_block_args