Fix inclusion of supergfxctl lib

This commit is contained in:
Luke D. Jones
2022-11-04 21:31:45 +13:00
parent 1332ac803c
commit 58ff566d65
3 changed files with 4 additions and 2 deletions

View File

@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
and on resume/boot (hybrid boot). It has been proven that this nvidia daemon can be
problematic when on battery, not allowing the dgpu to suspend within decent time and
sometimes blocking it completely.
- Notification to rog-control-center of dGPU state change
### Changed
- Use loops to ensure that mutex is gained for LED changes.
- asusctl now uses tokio for async runtime. This helps simplify some code.

1
Cargo.lock generated
View File

@@ -2459,6 +2459,7 @@ dependencies = [
[[package]]
name = "supergfxctl"
version = "5.0.2"
source = "git+https://gitlab.com/asus-linux/supergfxctl.git#f8f9a5a843e6960a13a5fd2c02995c7c979cbfba"
dependencies = [
"env_logger",
"gumdrop",

View File

@@ -18,8 +18,8 @@ rog_dbus = { path = "../rog-dbus" }
rog_aura = { path = "../rog-aura" }
rog_profiles = { path = "../rog-profiles" }
rog_platform = { path = "../rog-platform" }
#supergfxctl = { git = "https://gitlab.com/asus-linux/supergfxctl.git" }
supergfxctl = { path = "../../supergfxctl" }
supergfxctl = { git = "https://gitlab.com/asus-linux/supergfxctl.git" }
#supergfxctl = { path = "../../supergfxctl" }
smol.workspace = true