6ca3e47383
New local recipe coretempd reads IA32_THERM_STATUS MSR via the new sys:msr scheme and exposes per-CPU temperatures via scheme:coretemp. - Reads IA32_THERM_STATUS (0x19C) and IA32_TEMPERATURE_TARGET (0x1A2) - Calculates Celsius from digital readout relative to TjMax - Exposes /scheme/coretemp/ directory with per-CPU temperature files - Added to redbear-mini.toml (inherited by redbear-full) - Added 15_coretempd.service init file
14 lines
181 B
TOML
14 lines
181 B
TOML
[package]
|
|
name = "coretempd"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
redox-scheme = "0.11"
|
|
redox_syscall = "0.7"
|
|
libc = "0.2"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|