.
.
.
common/cli.c
1 void cli_loop(void)
2 {
3 #ifdef CONFIG_HUSH_PARSER
4 parse_file_outer();
5 /* This point is never reached */
6 for (;;);
7 #elif defined(CONFIG_CMDLINE)
8 cli_simple_loop();
9 #else
10 printf("## U-Boot command line is disabled. Please enable CONFIG_CMDLINE\n");
11 #endif /*CONFIG_HUSH_PARSER*/
12 }
.
.
.