diff options
author | Ashok Reddy Soma <ashok.reddy.soma@xilinx.com> | 2022-01-17 10:16:50 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-24 10:35:10 -0500 |
commit | 480245cf273dfd14536dc2b30aff0a733b71a1ed (patch) | |
tree | 3ff70c21854c4a1bdbf60414d6fead53c0982049 /Kconfig | |
parent | c28f2499952a78609e80d3b1f7aca9b0aab8d6d6 (diff) | |
download | u-boot-480245cf273dfd14536dc2b30aff0a733b71a1ed.tar.gz u-boot-480245cf273dfd14536dc2b30aff0a733b71a1ed.tar.bz2 u-boot-480245cf273dfd14536dc2b30aff0a733b71a1ed.zip |
cmd: Add Kconfig option for multiprocessor cmds
Add Kconfig option(CONFIG_CMD_MP) to enable or disable multiprocessor
commands. Compile cmd/mp.c based on CONFIG_CMD_MP.
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -454,6 +454,12 @@ config SYS_SRAM_SIZE default 0x10000 if TARGET_TRICORDER default 0x0 +config MP + bool "Support for multiprocessor" + help + This provides an option to bringup different processors + in multiprocessor cases. + config EXAMPLES bool "Compile API examples" depends on !SANDBOX |