Simpler command names for O/C
authorPiotr Dymacz <pepe2k@gmail.com>
Thu, 20 Mar 2014 11:47:29 +0000 (12:47 +0100)
committerPiotr Dymacz <pepe2k@gmail.com>
Thu, 20 Mar 2014 11:47:29 +0000 (12:47 +0100)
u-boot/common/cmd_custom.c

index b1163aa4c65186fbea2c755ce8618756509b9104..7d3565dfb94b8b3085a30903a0425027c8484535 100755 (executable)
@@ -581,7 +581,7 @@ int do_set_clocks(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]){
                        }
                }
 
-               puts("\n[*] = currently selected profile (stored in FLASH).\nAll clocks in MHz, run 'setclocks X' to choose one.\n\n");
+               puts("\n[*] = currently selected profile (stored in FLASH).\nAll clocks in MHz, run 'setclk X' to choose one.\n\n");
                puts("** Notice:\n   you should always make a backup of your device\n   entire FLASH content before making any changes\n\n");
 
                return(0);
@@ -637,10 +637,10 @@ int do_set_clocks(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]){
        }
 }
 
-U_BOOT_CMD(setclocks, 2, 0, do_set_clocks, "select clocks configuration from predefined list\n",
+U_BOOT_CMD(setclk, 2, 0, do_set_clocks, "select clocks configuration from predefined list\n",
                "index\n"
                "\t- save 'index' configuration in FLASH\n"
-               "setclocks\n"
+               "setclk\n"
                "\t- prints available clocks configurations and current settings");
 
 /*
@@ -689,5 +689,5 @@ int do_clear_clocks(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]){
        }
 }
 
-U_BOOT_CMD(clearclocks, 1, 0, do_clear_clocks, "remove PLL and clocks configuration from FLASH\n", NULL);
+U_BOOT_CMD(clearclk, 1, 0, do_clear_clocks, "remove PLL and clocks configuration from FLASH\n", NULL);
 #endif /* #if defined(PLL_IN_FLASH_MAGIC_OFFSET) */