diff options
| author | Tom Rini <[email protected]> | 2022-01-24 10:39:28 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-01-24 10:39:28 -0500 |
| commit | 21a1439d986a889cefbc2ed785c3f592fc9266de (patch) | |
| tree | 3ff70c21854c4a1bdbf60414d6fead53c0982049 /cmd | |
| parent | ae35c59389b9b67e1e553bc9ed3e6fd93cfdb86f (diff) | |
| parent | 480245cf273dfd14536dc2b30aff0a733b71a1ed (diff) | |
Merge branch '2022-01-24-assorted-fixes-and-updates'
- Assorted dumpimage/mkimage fixes, allow setting the signature
algorithm on the command line with mkimage
- Bugfix to the misc uclass, CONFIG_MP / CMD_MP Kconfig logic improved,
updated Xen platform MAINTAINERS entry and fixed vexpress_aemv8a_semi
booting.
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 11 | ||||
| -rw-r--r-- | cmd/Makefile | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 84ede90eee9..5e25e45fd28 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1827,12 +1827,13 @@ config CMD_SLEEP help Delay execution for some time -config MP - bool "support for multiprocessor" +config CMD_MP + bool "support for multiprocessor commands" + depends on MP + default y help - This provides an option to brinup - different processors in multiprocessor - cases. + This enables commands to bringup different processors + in multiprocessor cases. config CMD_TIMER bool "timer" diff --git a/cmd/Makefile b/cmd/Makefile index fb133e37037..166c652d982 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -100,7 +100,7 @@ obj-$(CONFIG_CMD_MDIO) += mdio.o obj-$(CONFIG_CMD_SLEEP) += sleep.o obj-$(CONFIG_CMD_MMC) += mmc.o obj-$(CONFIG_CMD_OPTEE_RPMB) += optee_rpmb.o -obj-$(CONFIG_MP) += mp.o +obj-$(CONFIG_CMD_MP) += mp.o obj-$(CONFIG_CMD_MTD) += mtd.o obj-$(CONFIG_CMD_MTDPARTS) += mtdparts.o obj-$(CONFIG_CMD_CLONE) += clone.o |
