Docs: Fix additional typos

This commit is contained in:
Mykola Grymalyuk
2022-07-16 15:21:59 -06:00
parent 11bd7a4083
commit 3296a4a9da
8 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# Mirrors of Apple's InstallAssistant.ppkg # Mirrors of Apple's InstallAssistant.pkg
# Currently only listing important Installers no longer on Apple's servers # Currently only listing important Installers no longer on Apple's servers
Install_macOS_Big_Sur_11_2_3 = { Install_macOS_Big_Sur_11_2_3 = {
+1 -1
View File
@@ -1,6 +1,6 @@
# Array of Device IDs for different devices # Array of Device IDs for different devices
class nvidia_ids: class nvidia_ids:
# Courteous of envytools as well as Macrumors: # Courteous of envytools as well as MacRumors:
# https://envytools.readthedocs.io/en/latest/hw/pciid.html # https://envytools.readthedocs.io/en/latest/hw/pciid.html
# https://forums.macrumors.com/threads/2011-imac-graphics-card-upgrade.1596614/ # https://forums.macrumors.com/threads/2011-imac-graphics-card-upgrade.1596614/
# https://pci-ids.ucw.cz/read/PC/10de # https://pci-ids.ucw.cz/read/PC/10de
+3 -3
View File
@@ -195,7 +195,7 @@ Below is an explanation of what Kexts OpenCore Legacy Patcher will inject into m
* Models: 2008 and older Marvel Ethernet require * Models: 2008 and older Marvel Ethernet require
* CatalinaBCM5701Ethernet * CatalinaBCM5701Ethernet
* Reason: Inject old Broadcom Ethernet kext to resolve networking in Big Sur * Reason: Inject old Broadcom Ethernet kext to resolve networking in Big Sur
* Logic: Patch out conflicting symbols to not colide existing BCM5701Ethernet * Logic: Patch out conflicting symbols to not collide existing BCM5701Ethernet
* Models: 2011 and older Broadcom Ethernet require * Models: 2011 and older Broadcom Ethernet require
### Maps ### Maps
@@ -217,11 +217,11 @@ Below is an explanation of what Kexts OpenCore Legacy Patcher will inject into m
* IO80211HighSierra * IO80211HighSierra
* Reason: Re-inject Atheros wifi drivers from High Sierra * Reason: Re-inject Atheros wifi drivers from High Sierra
* Logic: Patch out conflicting symbols to not colide existing IO80211Family * Logic: Patch out conflicting symbols to not collide existing IO80211Family
* Models: Atheros cards * Models: Atheros cards
* IO80211Mojave * IO80211Mojave
* Reason: Re-inject Broadcom wifi drivers from Mojave * Reason: Re-inject Broadcom wifi drivers from Mojave
* Logic: Patch out conflicting symbols to not colide existing IO80211Family * Logic: Patch out conflicting symbols to not collide existing IO80211Family
* Models: BCM94322 * Models: BCM94322
### Misc ### Misc
+4 -4
View File
@@ -2,8 +2,8 @@ from pathlib import Path
import subprocess import subprocess
for i in [i for i in list(Path().resolve().glob("**/*.md")) if "node_modules" not in str(i.parent) and "_book" not in str(i.parent)]: for i in [i for i in list(Path().resolve().glob("**/*.md")) if "node_modules" not in str(i.parent) and "_book" not in str(i.parent)]:
#bert = subprocess.run(['npx', 'markdown-link-check', '"' + str(i) + '"', '-c', '.markdownlinkcheck.json'], capture_output=True, shell=True, cwd=Path().resolve()) #bert = subprocess.run(['npx', 'markdown-link-check', '"' + str(i) + '"', '-c', '.markdownlinkcheck.json'], capture_output=True, shell=True, cwd=Path().resolve())
bert = subprocess.run('npx markdown-link-check "' + str(i) + '"', stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, cwd=Path().resolve()) bert = subprocess.run('npx markdown-link-check "' + str(i) + '"', stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, cwd=Path().resolve())
outpot = bert.stdout.decode().replace("\r", "").split("\n") output = bert.stdout.decode().replace("\r", "").split("\n")
outpot = [i for i in outpot if ("FILE: " in i or " → Status: " in i) and " → Status: 429" not in i] output = [i for i in output if ("FILE: " in i or " → Status: " in i) and " → Status: 429" not in i]
[print(i) for i in outpot] [print(i) for i in output]
+3 -3
View File
@@ -1,9 +1,9 @@
/* Disable the non-existant Co-processor Bridge found on Arrandale, Lynnfield and Clarkdale Macs. /* Disable the non-existent Co-processor Bridge found on Arrandale, Lynnfield and Clarkdale Macs.
* IOPCIFamily in macOS 11.0 up-to 11.2 was unable to handle ACPI probing when device was not present, * IOPCIFamily in macOS 11.0 up-to 11.2 was unable to handle ACPI probing when device was not present,
* therefore kernel panicing the machine. * therefore kernel panicking the machine.
* *
* This SSDT reports the device as disabled avoiding the probing. * This SSDT reports the device as disabled avoiding the probing.
* Not required for macOS 11.2 and newer, however recommended to alleviate pottential issues * Not required for macOS 11.2 and newer, however recommended to alleviate potential issues
*/ */
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "CPBGoff", 0x00001000) DefinitionBlock ("", "SSDT", 2, "DRTNIA", "CPBGoff", 0x00001000)
{ {
+11 -11
View File
@@ -4,15 +4,15 @@
* hardware modifications. * hardware modifications.
* *
* Notes: * Notes:
* - SSDT must be used in conjuction with '_INI' to 'XINI' patch * - SSDT must be used in conjunction with '_INI' to 'XINI' patch
* to reroute PCI0 initialization. * to reroute PCI0 initialization.
* *
* - AMD drivers in macOS may still attempt to attach and kernel * - AMD drivers in macOS may still attempt to attach and kernel
* panic. Disable the dGPU with class-code/device-id spoof or * panic. Disable the dGPU with class-code/device-id spoof or
* with '-wegnoegpu'. * with '-wegnoegpu'.
* *
* - dGPU will reactivate with sleep-wake, additional process * - dGPU will reactivate with sleep-wake, additional process
* is needed to disable the dGPU. * is needed to disable the dGPU.
* - ie. AMDGPUWakeHandler.kext for macOS * - ie. AMDGPUWakeHandler.kext for macOS
* *
* Ref: * Ref:
@@ -30,13 +30,13 @@ DefinitionBlock ("", "SSDT", 2, "DRTNIA", "dGPU_OFF", 0x00001000)
OperationRegion (IOGP, SystemIO, 0x0700, 0x51) OperationRegion (IOGP, SystemIO, 0x0700, 0x51)
Field (IOGP, ByteAcc, NoLock, Preserve) Field (IOGP, ByteAcc, NoLock, Preserve)
{ {
Offset (0x10), Offset (0x10),
P710, 8, P710, 8,
Offset (0x28), Offset (0x28),
P728, 8, P728, 8,
Offset (0x40), Offset (0x40),
P740, 8, P740, 8,
Offset (0x50), Offset (0x50),
P750, 8 P750, 8
} }
@@ -90,7 +90,7 @@ DefinitionBlock ("", "SSDT", 2, "DRTNIA", "dGPU_OFF", 0x00001000)
Store (0x07D9, OSYS) Store (0x07D9, OSYS)
} }
} }
// Disables dGPU // Disables dGPU
Store ("Requesting dGPU power off", Debug) Store ("Requesting dGPU power off", Debug)
P728 = One // Switch select P728 = One // Switch select
+1 -1
View File
@@ -1,6 +1,6 @@
/* Removes PCI0's 32-bit Allocation Limitation to resolve PCIe device support on Sandy and /* Removes PCI0's 32-bit Allocation Limitation to resolve PCIe device support on Sandy and
* Ivy Bridge Macs, mainly applicable for Audio and eGPU support. * Ivy Bridge Macs, mainly applicable for Audio and eGPU support.
* BUF0 to BUF1 patch required to override exisiting BuffObj in DSDT. * BUF0 to BUF1 patch required to override existing BuffObj in DSDT.
* *
* Source: * Source:
* https://egpu.io/forums/pc-setup/fix-dsdt-override-to-correct-error-12/ * https://egpu.io/forums/pc-setup/fix-dsdt-override-to-correct-error-12/
+1 -1
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Simple script to delete unnessary files from OpenCore and move into place # Simple script to delete unnecessary files from OpenCore and move into place
# To use, simply : # To use, simply :
# - Download an OpenCore build # - Download an OpenCore build
# - Place the X64 folder in the /payloads/OpenCore folder # - Place the X64 folder in the /payloads/OpenCore folder