Skip to content

Commit 97003ad

Browse files
authored
Fix Lint (#83)
* Fix Lint * Fix link * Fix link names
1 parent f519b77 commit 97003ad

File tree

8 files changed

+21
-39
lines changed

8 files changed

+21
-39
lines changed

Desktops/desktop-disable.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
# Disabling desktops unsupported GPUs(SSDT-GPU-DISABLE)
22

3-
* [What this SSDT does](#what-this-ssdt-does)
4-
* [Methods to make this SSDT](#methods-to-make-this-ssdt)
5-
* [Prebuilt](#prebuilts)
6-
* [SSDTTime](#ssdttime)
7-
* [Manual](#manual)
8-
* [Finding the ACPI path](#finding-the-acpi-path)
9-
* [Edits to the sample SSDT](#edits-to-the-sample-ssdt)
10-
* [Compiling the SSDT](#compiling-the-ssdt)
11-
12-
So this is mainly needed for GPUs that are not supported in macOS, mainly this will be Nvidia users who wish to pair an AMD GPU for macOS use. While WhateverGreen does support the boot-arg `-wegnoegpu`, this only works when running on iGPU so for the rest of us we'll need to make an SSDT.
3+
* [Finding the ACPI Path of the GPU](#finding-the-acpi-path-of-the-gpu)
4+
* [Making the SSDT](#making-the-ssdt)
5+
6+
This is mainly needed for GPUs that are not supported in macOS, mainly this will be Nvidia users who wish to pair an AMD GPU for macOS use. While WhateverGreen does support the boot-arg `-wegnoegpu`, this only works when running on iGPU so for the rest of us we'll need to make an SSDT.
137

148
So to disable a specific GPU, we need to find a couple things:
159

Laptops/laptop-disable.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
# Disabling laptop dGPUs (SSDT-dGPU-Off/NoHybGfx)
22

3-
* [What this SSDT does](#what-this-ssdt-does)
4-
* [Methods to make this SSDT](#methods-to-make-this-ssdt)
5-
* [Prebuilt](#prebuilts)
6-
* [SSDTTime](#ssdttime)
7-
* [Manual](#manual)
8-
* [Finding the ACPI path](#finding-the-acpi-path)
9-
* [Edits to the sample SSDT](#edits-to-the-sample-ssdt)
10-
* [Compiling the SSDT](#compiling-the-ssdt)
11-
123
So with laptops, we can hide the dGPU from macOS with the little boot-arg called `-wegnoegpu` from WhateverGreen. But one small problem, the dGPU is still pulling power draining your battery slowly. We'll be going over 2 methods for disabling the dGPU in a laptop:
134

14-
* [Optimus Method](/Laptops/laptop-disable.md#optimus-method)
15-
* [Bumblebee Method](/Laptops/laptop-disable.md#bumblebee-method)
5+
* [Optimus Method](#optimus-method)
6+
* [Bumblebee Method](#bumblebee-method)
167

178
Note that this is not needed for install, but recommended for post-install
189

Laptops/trackpad-methods/manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fixing Trackpads: Manual
22

3-
* [Checking GPI0](#checking-gpio)
3+
* [Checking GPI0](#checking-gpi0)
44
* [Edits to the sample SSDT](#edits-to-the-sample-ssdt)
55
* [Enabling Trackpad](#enabling-trackpad)
66
* [Wrapping up](#wrapping-up)

Universal/ec-methods/manual.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* [Multiple PNP0C09's show up](#multiple-pnp0c09s-show-up)
1010
* [No PNP0C09 show up](#no-pnp0c09-show-up)
1111
* [PNP0C09 already named `EC`](#pnp0c09-already-named-ec)
12-
* [PNP0C09 already has an `_STA` method](#pnp0c09-already-has-an-_sta-method)
12+
* [PNP0C09 already has a `_STA` method](#pnp0c09-already-has-a-sta-method) <!-- markdownlint-disable-line MD051 -->
1313
* [Compiling the SSDT](#compiling-the-ssdt)
1414
* [Wrapping up](#wrapping-up)
1515

@@ -21,7 +21,7 @@ TO-DO:
2121

2222
To find the ACPI pathing, you have 2 methods:
2323

24-
* [DSDT](#DSDT)
24+
* [DSDT](#dsdt)
2525
* [DeviceManager](#devicemanager)
2626

2727
### DSDT
@@ -46,7 +46,7 @@ The main ones to check for are:
4646
* [Multiple PNP0C09's show up](#multiple-pnp0c09s-show-up)
4747
* [No PNP0C09 show up](#no-pnp0c09-show-up)
4848
* [PNP0C09 already named `EC`](#pnp0c09-already-named-ec)
49-
* [PNP0C09 already has an `_STA` method](#pnp0c09-already-has-an-_sta-method)
49+
* [PNP0C09 already has a `_STA` method](#pnp0c09-already-has-a-sta-method) <!-- markdownlint-disable-line MD051 -->
5050

5151
If none of the above apply to you, you're ready for the next section:
5252

@@ -113,7 +113,7 @@ When multiple PNP0C09 show up, we need to next check for the following propertie
113113

114114
What these signify is whether this PNP0C09 device is real or not, as per the [ACPI spec](https://uefi.org/sites/default/files/resources/ACPI_6_3_final_Jan30.pdf). So one's matching the above criteria are the one's we want to disable.
115115

116-
* Note: If _STA shows up as well, you'll need to go here: [PNP0C09 already has an `_STA` method](#pnp0c09-already-has-an-sta-method)
116+
* Note: If _STA shows up as well, you'll need to go here: [PNP0C09 already has a `_STA` method](#pnp0c09-already-has-a-sta-method) <!-- markdownlint-disable-line MD051 -->
117117

118118
### No PNP0C09 show up
119119

@@ -129,7 +129,7 @@ Congrats! No need to create an SSDT-EC! However you will still want USBX if you'
129129

130130
Prebuilt can be grabbed here: [SSDT-USBX.aml](https://github.com/dortania/OpenCore-Post-Install/blob/master/extra-files/SSDT-USBX.aml)
131131

132-
### PNP0C09 already has an `_STA` method
132+
### PNP0C09 already has a `_STA` method
133133

134134
This is the equivalent of not having an EC as we can't control it with our SSDT-EC, instead we'll need to create a "dummy" EC for macOS. You'll still want to find the PCI and LPC pathing for this device. So follow the guide as if you were creating a laptop SSDT-EC/USBX.
135135

Universal/imei-methods/manual.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Fixing IMEI: Manual
22

33
* [Finding the ACPI device](#finding-the-acpi-device)
4-
* [Edits to the sample SSDT](#edits-to-the-sample-ssdt)
54
* [Compiling the SSDT](#compiling-the-ssdt)
65
* [Wrapping up](#wrapping-up)
76

Universal/plug-methods/manual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Fixing Power Management: Manual
22

33
* [Finding the ACPI path](#finding-the-acpi-path)
4-
* [DSDT](#DSDT)
4+
* [DSDT](#dsdt)
55
* [DeviceManager](#devicemanager)
66
* [Edits to the sample SSDT](#edits-to-the-sample-ssdt)
77
* [Compiling the SSDT](#compiling-the-ssdt)
@@ -11,7 +11,7 @@
1111

1212
To find the ACPI pathing, you have 2 methods:
1313

14-
* [DSDT](#DSDT)
14+
* [DSDT](#dsdt)
1515
* [DeviceManager](#devicemanager)
1616

1717
### DSDT

Universal/unc0-methods/manual.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Fixing Uncore Bridges: Manual
22

3-
* [Finding the ACPI path](#finding-the-acpi-path)
4-
* [Edits to the sample SSDT](#edits-to-the-sample-ssdt)
5-
* [Compiling the SSDT](#compiling-the-ssdt)
3+
* [Download the SSDT](#download-the-ssdt)
64
* [Wrapping up](#wrapping-up)
75

86
## Download the SSDT

ssdt-methods/ssdt-prebuilt.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ Simply select your hardware type and generation, then download the associated fi
1414
* [Sandy and Ivy Bridge](#laptop-sandy-and-ivy-bridge)
1515
* [Haswell and Broadwell](#laptop-haswell-and-broadwell)
1616
* [Skylake and Kaby Lake](#laptop-skylake-and-kaby-lake)
17-
* [Coffee Lake(8th gen)](#laptop-coffee-lake-8th-gen)
18-
* [Coffee and Comet Lake(9th and 10th gen)](#laptop-coffee-and-comet-lake-9th-and-10th-gen)
17+
* [Coffee Lake (8th gen)](#laptop-coffee-lake-8th-gen)
18+
* [Coffee and Comet Lake (9th and 10th gen)](#laptop-coffee-and-comet-lake-9th-and-10th-gen)
1919
* [Ice Lake](#laptop-ice-lake)
2020
* [Intel HEDT SSDTs](#intel-hedt-ssdts)
2121
* [Nehalem and Westmere](#nehalem-and-westmere)
2222
* [Sandy and Ivy Bridge-E](#sandy-and-ivy-bridge-e)
2323
* [Haswell and Broadwell-E](#haswell-and-broadwell-e)
24-
* [Skylake and Cascade Lake-X/W](#skylake-and-cascade-lake-x-w)
24+
* [Skylake and Cascade Lake-X/W](#skylake-and-cascade-lake-x-w) <!-- markdownlint-disable-line MD051 -->
2525
* [AMD SSDTs](#amd-ssdts)
26-
* [Bulldozer/Jaguar](#amd-bulldozer-jaguar)
26+
* [Bulldozer/Jaguar](#amd-bulldozer-jaguar) <!-- markdownlint-disable-line MD051 -->
2727
* [Zen](#amd-zen)
2828

2929
## Intel Desktop SSDTs
@@ -363,7 +363,7 @@ SSDT-XOSI:
363363

364364
:::
365365

366-
### Laptop Coffee Lake(8th gen)
366+
### Laptop Coffee Lake (8th gen)
367367

368368
::: tip SSDTs required
369369

@@ -405,7 +405,7 @@ SSDT-XOSI:
405405

406406
:::
407407

408-
### Laptop Coffee and Comet Lake(9th and 10th gen)
408+
### Laptop Coffee and Comet Lake (9th and 10th gen)
409409

410410
::: tip SSDTs required
411411

0 commit comments

Comments
 (0)