diff --git a/README.md b/README.md index f3a3ce1..355ab53 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,6 @@ See [cpufetch contributing guidelines](https://github.com/Dr-Noob/cpufetch/CONTR # 7. Acknowledgements Thanks to the fellow contributors and interested people in the project. Special thanks to: - [Gonzalocl](https://github.com/Gonzalocl), [OdnetninI](https://github.com/OdnetninI): Tested cpufetch in the earlier versions of the project in many different CPUs. -- [Kingo](https://github.com/Kyngo): Tested cpufetch in the Apple M1 CPU. +- [Kyngo](https://github.com/Kyngo): Tested cpufetch in the Apple M1 CPU. - [avollmerhaus](https://github.com/avollmerhaus): Gave me ssh acess to a PowerPC machine, allowing me to develop the PowerPC port. - [bbonev](https://github.com/bbonev), [stephan-cr](https://github.com/stephan-cr): Reviewed the source code. diff --git a/doc/DOCUMENTATION_ARM.md b/doc/DOCUMENTATION_ARM.md index 0505ef8..e712927 100644 --- a/doc/DOCUMENTATION_ARM.md +++ b/doc/DOCUMENTATION_ARM.md @@ -11,7 +11,7 @@ Microarchitecture information is acquired from the Main ID Register (MIDR) [[2]( - `CPU part` - `CPU revision` -The MIDR register can be built with this information. Another posible approach is to read MIDR directly from `/sys/devices/system/cpu/cpu*/regs/identification/midr_el1` +The MIDR register can be built with this information. Another possible approach is to read MIDR directly from `/sys/devices/system/cpu/cpu*/regs/identification/midr_el1` With the MIDR available, the approach is the same as the one used in x86_64 architectures. cpufetch has a file that acts like a database that tries to match the MIDR register with the specific CPU microarchitecture. diff --git a/src/arm/soc.c b/src/arm/soc.c index dd46c10..8e67e37 100644 --- a/src/arm/soc.c +++ b/src/arm/soc.c @@ -370,7 +370,7 @@ bool match_qualcomm(char* soc_name, struct system_on_chip* soc) { SOC_EQ(tmp, "MSM8625Q", "200", SOC_SNAPD_MSM8625Q, soc, 45) SOC_EQ(tmp, "MSM8208", "208", SOC_SNAPD_MSM8208, soc, 28) SOC_EQ(tmp, "MSM8905", "205", SOC_SNAPD_MSM8905, soc, 28) - SOC_EQ(tmp, "MSM8909", "210 / 212", SOC_SNAPD_MSM8909, soc, 28) // In the future, we can differenciate them using frequency + SOC_EQ(tmp, "MSM8909", "210 / 212", SOC_SNAPD_MSM8909, soc, 28) // In the future, we can differentiate them using frequency SOC_EQ(tmp, "QM215", "215", SOC_SNAPD_QM215, soc, 28) // Snapdragon 4XX // SOC_EQ(tmp, "APQ8028", "400", SOC_SNAPD_APQ8028, soc, 28) diff --git a/src/common/global.c b/src/common/global.c index 8d56361..d0e9326 100644 --- a/src/common/global.c +++ b/src/common/global.c @@ -58,9 +58,9 @@ void printBug(const char *fmt, ...) { va_end(args); fprintf(stderr,RED "[ERROR]: "RESET "%s\n",buffer); #if defined(ARCH_X86) || defined(ARCH_PPC) - fprintf(stderr,"Please, create a new issue with this error message and the output of 'cpufetch --debug' in https://github.com/Dr-Noob/cpufetch/issues\n"); + fprintf(stderr,"Please, create a new issue with this error message and the output of 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n"); #elif ARCH_ARM - fprintf(stderr,"Please, create a new issue with this error message, your smartphone/computer model and the output of 'cpufetch --debug' in https://github.com/Dr-Noob/cpufetch/issues\n"); + fprintf(stderr,"Please, create a new issue with this error message, your smartphone/computer model and the output of 'cpufetch --debug' on https://github.com/Dr-Noob/cpufetch/issues\n"); #endif }