Searched refs:bootm_argv (Results 1 – 3 of 3) sorted by relevance
/external/u-boot/cmd/ |
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()
|
D | pxe.c | 617 char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL }; in label_boot() local 649 bootm_argv[2] = initrd_str; in label_boot() 650 strncpy(bootm_argv[2], env_get("ramdisk_addr_r"), 18); in label_boot() 651 strcat(bootm_argv[2], ":"); in label_boot() 652 strncat(bootm_argv[2], env_get("filesize"), 9); in label_boot() 701 bootm_argv[1] = env_get("kernel_addr_r"); in label_boot() 716 bootm_argv[3] = env_get("fdt_addr_r"); in label_boot() 719 if (bootm_argv[3]) { in label_boot() 778 bootm_argv[3] = NULL; in label_boot() 782 if (!bootm_argv[3]) in label_boot() [all …]
|
/external/u-boot/board/inversepath/usbarmory/ |
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()
|