From a7091f3f8c859a29ad63b94952472bd93d60488c Mon Sep 17 00:00:00 2001 From: Sergei Antonov Date: Sun, 21 Aug 2022 16:45:08 +0300 Subject: dm: core: fix a typo in help text Signed-off-by: Sergei Antonov Reviewed-by: Simon Glass --- cmd/dm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/dm.c b/cmd/dm.c index eb40f0865f..218be85795 100644 --- a/cmd/dm.c +++ b/cmd/dm.c @@ -87,7 +87,7 @@ static char dm_help_text[] = "dm drivers Dump list of drivers with uclass and instances\n" DM_MEM_HELP "dm static Dump list of drivers with static platform data\n" - "dn tree Dump tree of driver model devices ('*' = activated)\n" + "dm tree Dump tree of driver model devices ('*' = activated)\n" "dm uclass Dump list of instances for each uclass" ; #endif -- cgit v1.2.1 From 2d74226f2c6ed5b758c97865bef7e42c9f389437 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 23 Aug 2022 10:14:05 -0700 Subject: vbe: Enable command only with BOOTSTD_FULL Avoid enabling this command by default. This saves about 1KB of code space. Signed-off-by: Simon Glass Reviewed-by: Ilias Apalodimas --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index 211ebe9c87..8ea064b8d2 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -333,7 +333,7 @@ config BOOTM_RTEMS config CMD_VBE bool "vbe - Verified Boot for Embedded" depends on BOOTMETH_VBE - default y + default y if BOOTSTD_FULL help Provides various subcommands related to VBE, such as listing the available methods, looking at the state and changing which method -- cgit v1.2.1