diff --git a/Instructions.md b/Instructions.md index d311ecd..65bda3c 100755 --- a/Instructions.md +++ b/Instructions.md @@ -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`. diff --git a/ResourceConverter/ResourceConverter.sh b/ResourceConverter/ResourceConverter.sh index b2a719d..fe72b48 100755 --- a/ResourceConverter/ResourceConverter.sh +++ b/ResourceConverter/ResourceConverter.sh @@ -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 }