Skip to content

Commit

Permalink
Fixed severe typos to avoid confusions.
Browse files Browse the repository at this point in the history
It has even been there for literally two years?!
  • Loading branch information
PMheart committed Jun 27, 2019
1 parent 7031b4e commit 14b32af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ Add `-cpufoff` to disable CPUFriend entirely.
Add `-cpufbeta` to enable CPUFriend on unsupported OS versions.

#### Configuration
Use `CPUFriend/ResourceConverter.sh` to generate a working copy of either `CPUFriendProvider.kext`(Easiness preferred) or `ssdt_data.dsl`(Speed preferred).
Use `CPUFriend/ResourceConverter.sh` to generate a working copy of either `CPUFriendDataProvider.kext`(Easiness preferred) or `ssdt_data.dsl`(Speed preferred).
If you also have a SSDT generated by [ssdtPRGen.sh](https://github.com/Piker-Alpha/ssdtPRGen.sh), then you have to merge them. See [Combining Data](https://github.com/PMheart/CPUFriend/blob/master/Instructions.md#combining-data) for more details.

#### Usage of ResourceConverter.sh
`--kext /path/to/file`
Create `CPUFriendProvider.kext` with information provided by `file`.
Create `CPUFriendDataProvider.kext` with information provided by `file`.

`--acpi /path/to/file`
Create `ssdt_data.dsl` with information provided by `file`.
Expand Down
11 changes: 2 additions & 9 deletions ResourceConverter/ResourceConverter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,13 @@

#set -x

#
# Usage:
#
# -a, --acpi file Create CPUFriendProvider.kext with information provided by file.
# -k, --kext file Create ssdt_data.dsl with information provided by file.
#

kextName="CPUFriendDataProvider.kext"
ssdtName="ssdt_data.dsl"

function showHelp() {
echo -e "Usage:\n"
echo "-a, --acpi file Create CPUFriendProvider.kext with information provided by file."
echo "-k, --kext file Create ssdt_data.dsl with information provided by file."
echo "-a, --acpi file Create ${kextName} with information provided by file."
echo "-k, --kext file Create ${ssdtName} with information provided by file."
echo
}

Expand Down

0 comments on commit 14b32af

Please sign in to comment.