From 1acdb478894d58bc165a72f917204a5bf4442357 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Thu, 20 May 2021 09:34:15 -0500 Subject: [PATCH] Update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f91bb66..b6b73d5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Zenpower -Zenpower is Linux kernel driver for reading temperature, voltage(SVI2), current(SVI2) and power(SVI2) for AMD Zen family CPUs. +Zenpower3 is a Linux kernel driver for reading temperature, voltage(SVI2), current(SVI2) and power(SVI2) for AMD Zen family CPUs, now with Zen 3 support! Make sure that your Linux kernel have support for your CPUs as Zenpower is using kernel function `amd_smn_read` to read values from SMN. A fallback method (which may or may not work!) will be used when it is detected that kernel function `amd_smn_read` lacks support for your CPU. For AMD family 17h Model 70h (Ryzen 3000) CPUs you need kernel version 5.3.4 or newer or kernel with this patch: https://patchwork.kernel.org/patch/11043277/ @@ -11,8 +11,8 @@ You can install this module via dkms. ``` sudo apt install dkms git build-essential linux-headers-$(uname -r) cd ~ -git clone https://github.com/ocerman/zenpower.git -cd zenpower +git clone https://github.com/Ta180m/zenpower3.git +cd zenpower3 sudo make dkms-install ```