diff --git a/.vuepress/config.js b/.vuepress/config.js index c83beaf..43007fc 100755 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -228,6 +228,7 @@ module.exports = { sidebarDepth: 2, children: [ ['/Universal/rhub-methods/prebuilt', 'Prebuilt'], + ['/Universal/rhub-methods/ssdttime', 'SSDTTime'], ['/Universal/rhub-methods/manual', 'Manual'], ] }, diff --git a/Universal/rhub-methods/manual.md b/Universal/rhub-methods/manual.md index b395cec..eb886e0 100644 --- a/Universal/rhub-methods/manual.md +++ b/Universal/rhub-methods/manual.md @@ -30,16 +30,16 @@ Now that we have our ACPI path, lets grab our SSDT and get to work: * [SSDT-RHUB.dsl](https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/decompiled/SSDT-RHUB.dsl) -By default, this uses `PCI0.XHC_.RHUB` for the pathing. you'll want to rename accordingly. +By default, this uses `PCI0.XHC1.RHUB` for the pathing. you'll want to rename accordingly. -Following the example from above, we'll be renaming it to `PCI0.XHC1.RHUB`: +Following the example from above, we'll be renaming it to `PCI0.XHC.RHUB`: **Before**: ``` -External (_SB_.PCI0.XHC_.RHUB, DeviceObj) <- Rename this +External (_SB_.PCI0.XHC1.RHUB, DeviceObj) <- Rename this -Scope (_SB.PCI0.XHC_.RHUB) <- Rename this +Scope (_SB.PCI0.XHC1.RHUB) <- Rename this ``` ![](../../images/Universal/rhub-md/ssdt-before.png) @@ -49,9 +49,9 @@ Following the example pathing we found, the SSDT should look something like this **After**: ``` -External (_SB.PCI0.XHC1.RHUB, DeviceObj) <- Renamed +External (_SB.PCI0.XHC.RHUB, DeviceObj) <- Renamed -Scope (_SB.PCI0.XHC1.RHUB) <- Renamed +Scope (_SB.PCI0.XHC.RHUB) <- Renamed ``` ![](../../images/Universal/rhub-md/ssdt-after.png) diff --git a/extra-files/decompiled/SSDT-RHUB.dsl b/extra-files/decompiled/SSDT-RHUB.dsl index e1d18c7..b9975ea 100644 --- a/extra-files/decompiled/SSDT-RHUB.dsl +++ b/extra-files/decompiled/SSDT-RHUB.dsl @@ -4,10 +4,10 @@ */ DefinitionBlock ("", "SSDT", 2, "DRTNIA", "RhubOff", 0x00001000) { - External (_SB_.PCI0.XHC1.RHUB, DeviceObj) // Full pathing to RHUB, change to yours + External (_SB_.PCI0.XHC.RHUB, DeviceObj) // Full pathing to RHUB, change to yours - Scope (_SB.PCI0.XHC1.RHUB) // Full pathing to RHUB, change to yours + Scope (_SB.PCI0.XHC.RHUB) // Full pathing to RHUB, change to yours { Method (_STA, 0, NotSerialized) { diff --git a/images/Universal/rhub-md/ssdt-after.png b/images/Universal/rhub-md/ssdt-after.png index f96f2ef..f0663c4 100644 Binary files a/images/Universal/rhub-md/ssdt-after.png and b/images/Universal/rhub-md/ssdt-after.png differ diff --git a/images/Universal/rhub-md/ssdt-before.png b/images/Universal/rhub-md/ssdt-before.png index 6b2eb90..e4d5583 100644 Binary files a/images/Universal/rhub-md/ssdt-before.png and b/images/Universal/rhub-md/ssdt-before.png differ