diff options
| author | Tom Rini <[email protected]> | 2026-03-20 14:53:45 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-03 13:42:49 -0600 |
| commit | af54c2185e11f3baf1cba464bfc014eaaa799203 (patch) | |
| tree | a774c3eeb457b49ef83dc9aa2fa9bfdb4a4c8377 /cmd/Kconfig | |
| parent | 70b5afb90579b7c1f5c9ce894f8536c051ff8f73 (diff) | |
cmd: Add missing dependency to CMD_PMC
We cannot build CMD_PMC without ACPI_PMC, so add that as a dependency.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 4451cac9793..f47ce7f45ce 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -223,6 +223,7 @@ config CMD_LICENSE config CMD_PMC bool "pmc" + depends on ACPI_PMC help Provides access to the Intel Power-Management Controller (PMC) so that its state can be examined. This does not currently support |
