feat: support auto-cpufreq (#800)

This commit is contained in:
SteveLauC
2024-05-18 16:34:03 +08:00
committed by GitHub
parent 2a1999fe20
commit f661f00277
3 changed files with 15 additions and 0 deletions

View File

@@ -235,6 +235,7 @@ fn run() -> Result<()> {
})?;
runner.execute(Step::Lure, "LURE", || linux::run_lure_update(&ctx))?;
runner.execute(Step::Waydroid, "Waydroid", || linux::run_waydroid(&ctx))?;
runner.execute(Step::AutoCpufreq, "auto-cpufreq", || linux::run_auto_cpufreq(&ctx))?;
}
#[cfg(target_os = "macos")]