Skip to content

Commit b8cd065

Browse files
committed
Added 0.9.5
1 parent aaa6901 commit b8cd065

File tree

325 files changed

+39882
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

325 files changed

+39882
-2
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
.DS_Store
2-
OpenCore/0.9.5/
3-
42
.DS_Store
53
OpenCore/.DS_Store
64
.DS_Store
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
OpenCore
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Disabled
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
OpenCore
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Disabled
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
//
2+
// SSDT to reset RHUB devices on XHCI controllers to force hardware querying of ports
3+
//
4+
// WARNING: May conflict with existing SSDT-USB-Reset! Verify names and paths before
5+
// merging!
6+
//
7+
DefinitionBlock ("", "SSDT", 2, "CORP", "RHBReset", 0x00001000)
8+
{
9+
/*
10+
* Start copying here if you're adding this info to an existing SSDT-USB-Reset!
11+
*/
12+
13+
External (_SB.PC00.XHCI.RHUB, DeviceObj)
14+
15+
Scope(_SB.PC00.XHCI.RHUB)
16+
{
17+
Method (_STA, 0, NotSerialized) // _STA: Status
18+
{
19+
If (_OSI ("Darwin"))
20+
{
21+
Return (Zero)
22+
}
23+
Else
24+
{
25+
Return (0x0F)
26+
}
27+
}
28+
}
29+
30+
/*
31+
* End copying here if you're adding this info to an SSDT-USB-Reset!
32+
*/
33+
}
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)