Skip to content

Commit 14b32af

Browse files
committed
Fixed severe typos to avoid confusions.
It has even been there for literally two years?!
1 parent 7031b4e commit 14b32af

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

Instructions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ Add `-cpufoff` to disable CPUFriend entirely.
1818
Add `-cpufbeta` to enable CPUFriend on unsupported OS versions.
1919

2020
#### Configuration
21-
Use `CPUFriend/ResourceConverter.sh` to generate a working copy of either `CPUFriendProvider.kext`(Easiness preferred) or `ssdt_data.dsl`(Speed preferred).
21+
Use `CPUFriend/ResourceConverter.sh` to generate a working copy of either `CPUFriendDataProvider.kext`(Easiness preferred) or `ssdt_data.dsl`(Speed preferred).
2222
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.
2323

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

2828
`--acpi /path/to/file`
2929
Create `ssdt_data.dsl` with information provided by `file`.

ResourceConverter/ResourceConverter.sh

+2-9
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,13 @@
22

33
#set -x
44

5-
#
6-
# Usage:
7-
#
8-
# -a, --acpi file Create CPUFriendProvider.kext with information provided by file.
9-
# -k, --kext file Create ssdt_data.dsl with information provided by file.
10-
#
11-
125
kextName="CPUFriendDataProvider.kext"
136
ssdtName="ssdt_data.dsl"
147

158
function showHelp() {
169
echo -e "Usage:\n"
17-
echo "-a, --acpi file Create CPUFriendProvider.kext with information provided by file."
18-
echo "-k, --kext file Create ssdt_data.dsl with information provided by file."
10+
echo "-a, --acpi file Create ${kextName} with information provided by file."
11+
echo "-k, --kext file Create ${ssdtName} with information provided by file."
1912
echo
2013
}
2114

0 commit comments

Comments
 (0)