Home | History | Annotate | Download | only in cmd

Lines Matching defs:bootargs

574  * used to overwrite the contents of the 'bootargs' environment variable prior
589 char bootargs[CONFIG_SYS_CBSIZE];
591 cli_simple_process_macros(label->append, bootargs);
592 env_set("bootargs", bootargs);
613 * of the 'bootargs' environment variable.
678 char bootargs[CONFIG_SYS_CBSIZE] = "";
682 bootargs)) {
686 sizeof(bootargs));
690 strncpy(bootargs, label->append,
691 sizeof(bootargs));
692 strcat(bootargs, ip_str);
693 strcat(bootargs, mac_str);
695 cli_simple_process_macros(bootargs, finalbootargs);
696 env_set("bootargs", finalbootargs);