X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=common%2Fcmd_bedbug.c;h=8be1c25fd7a2006bc296bb525155cae4221f4ffc;hb=dce3d797102b6618e8bdd4a09cfd35969f165d86;hp=1dda1933447e99ee52a63ce9a1005c8c9e854be7;hpb=62c3ae7c6ef215b1afa614abdf61acf077752207;p=u-boot diff --git a/common/cmd_bedbug.c b/common/cmd_bedbug.c index 1dda193344..8be1c25fd7 100644 --- a/common/cmd_bedbug.c +++ b/common/cmd_bedbug.c @@ -107,8 +107,8 @@ int do_bedbug_dis (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_dis */ U_BOOT_CMD (ds, 3, 1, do_bedbug_dis, - "ds - disassemble memory\n", - "ds
[# instructions]\n"); + "disassemble memory", + "ds
[# instructions]"); /* ====================================================================== * Entry point from the interpreter to the assembler. Assembles @@ -160,7 +160,7 @@ int do_bedbug_asm (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_asm */ U_BOOT_CMD (as, 2, 0, do_bedbug_asm, - "as - assemble memory\n", "as
\n"); + "assemble memory", "as
"); /* ====================================================================== * Used to set a break point from the interpreter. Simply calls into the @@ -177,11 +177,11 @@ int do_bedbug_break (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_break */ U_BOOT_CMD (break, 3, 0, do_bedbug_break, - "break - set or clear a breakpoint\n", + "set or clear a breakpoint", " - Set or clear a breakpoint\n" "break
- Break at an address\n" "break off - Disable breakpoint.\n" - "break show - List breakpoints.\n"); + "break show - List breakpoints."); /* ====================================================================== * Called from the debug interrupt routine. Simply calls the CPU-specific @@ -277,8 +277,8 @@ int do_bedbug_continue (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_continue */ U_BOOT_CMD (continue, 1, 0, do_bedbug_continue, - "continue- continue from a breakpoint\n", - " - continue from a breakpoint.\n"); + "continue from a breakpoint", + ""); /* ====================================================================== * Interpreter command to continue to the next instruction, stepping into @@ -308,8 +308,8 @@ int do_bedbug_step (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_step */ U_BOOT_CMD (step, 1, 1, do_bedbug_step, - "step - single step execution.\n", - " - single step execution.\n"); + "single step execution.", + ""); /* ====================================================================== * Interpreter command to continue to the next instruction, stepping over @@ -339,8 +339,8 @@ int do_bedbug_next (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_next */ U_BOOT_CMD (next, 1, 1, do_bedbug_next, - "next - single step execution, stepping over subroutines.\n", - " - single step execution, stepping over subroutines.\n"); + "single step execution, stepping over subroutines.", + ""); /* ====================================================================== * Interpreter command to print the current stack. This assumes an EABI @@ -384,8 +384,8 @@ int do_bedbug_stack (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_stack */ U_BOOT_CMD (where, 1, 1, do_bedbug_stack, - "where - Print the running stack.\n", - " - Print the running stack.\n"); + "Print the running stack.", + ""); /* ====================================================================== * Interpreter command to dump the registers. Calls the CPU-specific @@ -405,7 +405,7 @@ int do_bedbug_rdump (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) } /* do_bedbug_rdump */ U_BOOT_CMD (rdump, 1, 1, do_bedbug_rdump, - "rdump - Show registers.\n", " - Show registers.\n"); + "Show registers.", ""); /* ====================================================================== */