Contribute
Register

USB and Ethernet is not working in Bigsur 11.1

Status
Not open for further replies.
Joined
Jan 31, 2021
Messages
5
Motherboard
ASUS Prime Z390 P
CPU
i5-9400F
Graphics
Nvidia > need model # > See Rules!
Mobile Phone
  1. iOS
Hi All, I have successfully installed Bigsur 11.1 with the help of https://github.com/m4ary/OpenCore-Big-Sur-Asus-Prime-Z390A_i7-9700K_RX580
The issues are -
USB ports are not working
Ethernet is not working
PS2 keyboard is not working
Can you guys help me for kexts/driver or config.plist file so that all the above should work.
Here are my system configs -
MB: Asus Prime Z390 P
CPU: i5 9400 F

Or anyone can provide me Bigsur EFI for Asus Prime Z390-P
 
Last edited:
Originally my ethernet didn't work. In the end I made a dummy EFI file using OC-Gen X for my built-in ethernet, then cut and pasted the generated text for the ethernet section of the config.plist file. Now I just need to fix the USB3.0 and I'm all done.
Thank you for your reply. Can you please explain how did you do that? My ethernet is not working so not able to connect with internet on bigusr MAC. If you can share a screenshot about "to generate dummy EFI file for built-in ethernet" that would be appriciated. Great Thanks.
 
Last edited:
Hi Your solution worked for me. Now Ethernet is working fine but the USB issue is still here. If you get solution for USB's please share additional entries/changes from config.plist file.
 
Great Thanks. This EFI worked for me. All USBs and Ethernet. I have left one last issue i.e. my PS2 keyboard. Can you help me out to fix it? I have tried latest VoodooPS2Controller.kext but it didn't work.
 
Great Thanks. This EFI worked for me. All USBs and Ethernet. I have left one last issue i.e. my PS2 keyboard. Can you help me out to fix it? I have tried latest VoodooPS2Controller.kext but it didn't work.
make sure to list out the kext in your config.plist like:
Code:
<dict>
                <key>Arch</key>
                <string>x86_64</string>
                <key>BundlePath</key>
                <string>VoodooPS2Controller.kext</string>
                <key>Comment</key>
                <string>Touchpad</string>
                <key>Enabled</key>
                <true/>
                <key>ExecutablePath</key>
                <string>Contents/MacOS/VoodooPS2Controller</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string>19.0.0</string>
                <key>PlistPath</key>
                <string>Contents/Info.plist</string>
            </dict>
            <dict>
                <key>Arch</key>
                <string>x86_64</string>
                <key>BundlePath</key>
                <string>VoodooPS2Controller.kext/Contents/Plugins/VoodooPS2Keyboard.kext</string>
                <key>Comment</key>
                <string>Touchpad</string>
                <key>Enabled</key>
                <true/>
                <key>ExecutablePath</key>
                <string>Contents/MacOS/VoodooPS2Keyboard</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string>19.0.0</string>
                <key>PlistPath</key>
                <string>Contents/Info.plist</string>
            </dict>
            <dict>
                <key>Arch</key>
                <string>x86_64</string>
                <key>BundlePath</key>
                <string>VoodooPS2Controller.kext/Contents/Plugins/VoodooPS2Mouse.kext</string>
                <key>Comment</key>
                <string>Touchpad</string>
                <key>Enabled</key>
                <true/>
                <key>ExecutablePath</key>
                <string>Contents/MacOS/VoodooPS2Mouse</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string>19.0.0</string>
                <key>PlistPath</key>
                <string>Contents/Info.plist</string>
            </dict>
            <dict>
                <key>Arch</key>
                <string>x86_64</string>
                <key>BundlePath</key>
                <string>VoodooPS2Controller.kext/Contents/Plugins/VoodooInput.kext</string>
                <key>Comment</key>
                <string>Touchpad</string>
                <key>Enabled</key>
                <true/>
                <key>ExecutablePath</key>
                <string>Contents/MacOS/VoodooInput</string>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string>19.0.0</string>
                <key>PlistPath</key>
                <string>Contents/Info.plist</string>
            </dict>
 
Status
Not open for further replies.
Back
Top