Searched refs:bootm_argv (Results 1 – 3 of 3) sorted by relevance
/openbmc/u-boot/cmd/ |
H A D | spl.c | 53 char *bootm_argv[5]; in call_bootm() local 60 bootm_argv[0] = "do_bootm"; in call_bootm() 63 bootm_argv[4] = argv[2]; /* fdt addr */ in call_bootm() 65 bootm_argv[3] = argv[1]; /* initrd addr */ in call_bootm() 67 bootm_argv[2] = argv[0]; /* kernel addr */ in call_bootm() 77 bootm_argv[1] = (char *)subcommand[i]; in call_bootm() 78 debug("args %d: %s %s ", argc, bootm_argv[0], bootm_argv[1]); in call_bootm() 80 debug("%s ", bootm_argv[j + 2]); in call_bootm() 84 bootm_argv); in call_bootm()
|
H A D | pxe.c | 621 char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL }; in label_boot() local 654 bootm_argv[2] = initrd_str; in label_boot() 655 strncpy(bootm_argv[2], env_get("ramdisk_addr_r"), 18); in label_boot() 656 strcat(bootm_argv[2], ":"); in label_boot() 657 strncat(bootm_argv[2], env_get("filesize"), 9); in label_boot() 706 bootm_argv[1] = env_get("kernel_addr_r"); in label_boot() 709 int len = strlen(bootm_argv[1]) + strlen(label->config) + 1; in label_boot() 716 snprintf(fit_addr, len, "%s%s", bootm_argv[1], label->config); in label_boot() 717 bootm_argv[1] = fit_addr; in label_boot() 733 bootm_argv[3] = env_get("fdt_addr_r"); in label_boot() [all …]
|
/openbmc/u-boot/board/inversepath/usbarmory/ |
H A D | usbarmory.c | 427 static char *bootm_argv[] = { variable 442 printf("%s %s\n", bootm_argv[0], bootm_argv[1]); in board_run_command() 443 do_bootm(NULL, 0, 2, bootm_argv); in board_run_command()
|