diff options
author | Judith Mendez <jm@ti.com> | 2025-02-10 14:29:42 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-02-14 13:17:36 -0600 |
commit | 9e0daf9bac10e4426efd6f6dd6586ce80cabbe3e (patch) | |
tree | 7bbb0e420ea5f390796ccb02794cfed123c47be0 | |
parent | 526a48581003877ff1c40201107c2055fcb41e93 (diff) |
cmd: Enable CMD remoteproc by default for K3 ARCH
Enable CMD_REMOTEPROC by default if building for K3 ARCH so
that it does not have to be defined in each board defconfig
file.
Signed-off-by: Judith Mendez <jm@ti.com>
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 4c4ad9d9979..4250bfcaf34 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1587,6 +1587,7 @@ config CMD_READ config CMD_REMOTEPROC bool "remoteproc" depends on REMOTEPROC + default y if ARCH_K3 help Support for Remote Processor control |