-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0437bb
commit 4beb783
Showing
7 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
*Works on 10.15.2 but works bether work in Mojave. You must delete SSDT-DRP08.aml if exist in clover/ACPI/patched/ | ||
|
||
*Kext Installation in 10.15.x: | ||
Place IO80211Family.kext on the first floor /Library/Extensions, repair permissions, rebuild Cache | ||
Do not open the system configuration, otherwise it will restart automatically. | ||
|
||
*Kext Installation in 10.14.x: | ||
Not install IO80211Family.kext | ||
|
||
*Installation AppleIntelWifi: | ||
1. Extract the driver file into a .kext file and place it on your desktop. | ||
2. Open a terminal (equivalent to the command line in Windows). | ||
3. Enter cd ~ / desktop (this line means entering the desktop and converting the desktop to the current directory) | ||
4. Enter sudo chown -R root: wheel * .kext (* .kext is your driver file. The role of this line is Grant administrator permissions for the following operations) | ||
5. Enter your root password and press Enter. If the password is not available, you can press Enter. | ||
6. Enter sudo chmod -R 755 * .kext (import the driver) | ||
7. sudo kextload -v * .kext (load the driver, you can see the name of your device if it is normal) | ||
|
||
*Commands: | ||
sudo mv ./*.kext /tmp | ||
sudo chown -R root:wheel /tmp/*.kext | ||
sudo kextload /tmp/*.kext |