Update the files which contain no license information with the 'Apache-2.0' SPDX license identifier. Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of Zephyr, which is Apache version 2. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
31 lines
922 B
Plaintext
31 lines
922 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SYS_PM_STATE_LOCK
|
|
bool "Enable Power State locking capability"
|
|
help
|
|
Enable Power Management system state locking capability
|
|
if any application wants to temporarily disable certain
|
|
Power States while doing any critical work or needs quick
|
|
response from hardware resources.
|
|
|
|
config SYS_PM_DEBUG
|
|
bool "Enable System Power Management debug hooks"
|
|
help
|
|
Enable System Power Management debugging hooks.
|
|
|
|
config DEVICE_IDLE_PM
|
|
bool "Enable device Idle Power Management"
|
|
depends on DEVICE_POWER_MANAGEMENT
|
|
select POLL
|
|
help
|
|
Enable device Idle Power Management to save power.
|
|
With device Idle PM enabled, devices can be suspended or
|
|
resumed based on the device usage even while the CPU or
|
|
system is running.
|
|
|
|
source "subsys/power/policy/Kconfig"
|
|
|
|
module = SYS_PM
|
|
module-str = System Power Management
|
|
source "subsys/logging/Kconfig.template.log_config"
|