HomeSort by relevance Sort by last modified time
    Searched defs:bootargs (Results 1 - 5 of 5) sorted by null

  /external/u-boot/arch/sh/lib/
zimageboot.c 22 char *bootargs; local
44 bootargs = env_get("bootargs");
51 strcpy(cmdline, bootargs);
bootm.c 63 char *bootargs = env_get("bootargs"); local
78 strcpy(cmdline, bootargs);
83 int val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_PROMPT, 10);
89 val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_DOLOAD, 10);
  /external/u-boot/common/
image-android.c 46 * it appends the kernel command line to the bootargs env variable.
75 char *bootargs = env_get("bootargs"); local
76 if (bootargs)
77 len += strlen(bootargs);
86 if (bootargs) {
87 strcpy(newbootargs, bootargs);
93 env_set("bootargs", newbootargs);
  /external/u-boot/arch/mips/lib/
bootm.c 78 const char *bootargs, *next, *quote; local
82 bootargs = env_get("bootargs");
83 if (!bootargs)
86 next = bootargs;
88 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
89 quote = strchr(bootargs, '"');
90 next = strchr(bootargs, ' ');
105 next = bootargs + strlen(bootargs)
    [all...]
  /external/u-boot/cmd/
pxe.c 574 * used to overwrite the contents of the 'bootargs' environment variable prior
589 char bootargs[CONFIG_SYS_CBSIZE]; local
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] = ""; local
682 strlen(ip_str) + strlen(mac_str) + 1 > sizeof(bootargs)) {
686 sizeof(bootargs));
690 strncpy(bootargs, label->append
    [all...]

Completed in 546 milliseconds