diff options
| author | Tom Rini <[email protected]> | 2023-06-21 14:39:38 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-06-21 14:39:38 -0400 |
| commit | 43dc016497ff9fd39139833852b0214f625fa4ca (patch) | |
| tree | 27d68ac47a07e9a8cb54cf93065385d630f2d659 /test/cmd_ut.c | |
| parent | 5f024d10bbae9e52396191b8dadf0e8ddb059c85 (diff) | |
| parent | 230038f8ef0e2e7db8e40957a3b35109d8f7459f (diff) | |
Merge branch '2023-06-20-assorted-update' into next
- Assorted updates and improvements
Diffstat (limited to 'test/cmd_ut.c')
| -rw-r--r-- | test/cmd_ut.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/cmd_ut.c b/test/cmd_ut.c index d440da833a9..0cb514490b9 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -54,6 +54,9 @@ int cmd_ut_category(const char *name, const char *prefix, static struct cmd_tbl cmd_ut_sub[] = { U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""), U_BOOT_CMD_MKENT(info, 1, 1, do_ut_info, "", ""), +#ifdef CONFIG_CMD_BDI + U_BOOT_CMD_MKENT(bdinfo, CONFIG_SYS_MAXARGS, 1, do_ut_bdinfo, "", ""), +#endif #ifdef CONFIG_BOOTSTD U_BOOT_CMD_MKENT(bootstd, CONFIG_SYS_MAXARGS, 1, do_ut_bootstd, "", ""), @@ -176,6 +179,9 @@ static char ut_help_text[] = #ifdef CONFIG_CMD_ADDRMAP "\naddrmap - very basic test of addrmap command" #endif +#ifdef CONFIG_CMD_BDI + "\nbdinfo - bdinfo command" +#endif #ifdef CONFIG_SANDBOX "\nbloblist - bloblist implementation" #endif |
