From: OpenOCD-Gerrit <ope...@us...> - 2021-12-03 21:53:25
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 55da5b47cba1de8e99bda8d71c721da24d1bf1d4 (commit) from af723387be87fadd02abb1f01a2734d004cbb5bc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 55da5b47cba1de8e99bda8d71c721da24d1bf1d4 Author: Tomas Vanek <va...@fb...> Date: Sat Nov 20 11:50:48 2021 +0100 flash/nor/kinetis_ke: add .help fields for tcl commands Add help texts from similar driver kinetis.c While on it fix one existing help: the flash is obviously not NAND Change-Id: Ibd295105586b008aaabf2fb4e4a75bf551266e38 Signed-off-by: Tomas Vanek <va...@fb...> Reviewed-on: https://review.openocd.org/c/openocd/+/6727 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/src/flash/nor/kinetis_ke.c b/src/flash/nor/kinetis_ke.c index dc3b37ecb..225dc6f07 100644 --- a/src/flash/nor/kinetis_ke.c +++ b/src/flash/nor/kinetis_ke.c @@ -1241,14 +1241,14 @@ static const struct command_registration kinetis_ke_security_command_handlers[] { .name = "check_security", .mode = COMMAND_EXEC, - .help = "", + .help = "Check status of device security lock", .usage = "", .handler = kinetis_ke_check_flash_security_status, }, { .name = "mass_erase", .mode = COMMAND_EXEC, - .help = "", + .help = "Issue a complete flash erase via the MDM-AP", .usage = "", .handler = kinetis_ke_mdm_mass_erase, }, @@ -1266,7 +1266,7 @@ static const struct command_registration kinetis_ke_exec_command_handlers[] = { { .name = "mdm", .mode = COMMAND_ANY, - .help = "", + .help = "MDM-AP command group", .usage = "", .chain = kinetis_ke_security_command_handlers, }, @@ -1284,7 +1284,7 @@ static const struct command_registration kinetis_ke_command_handler[] = { { .name = "kinetis_ke", .mode = COMMAND_ANY, - .help = "Kinetis KE NAND flash controller commands", + .help = "Kinetis KE flash controller commands", .usage = "", .chain = kinetis_ke_exec_command_handlers, }, ----------------------------------------------------------------------- Summary of changes: src/flash/nor/kinetis_ke.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- Main OpenOCD repository |