Home
last modified time | relevance | path

Searched refs:bootm_argv (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/u-boot/cmd/
H A Dspl.c54 char *bootm_argv[5]; in call_bootm() local
61 bootm_argv[0] = "do_bootm"; in call_bootm()
64 bootm_argv[4] = argv[2]; /* fdt addr */ in call_bootm()
66 bootm_argv[3] = argv[1]; /* initrd addr */ in call_bootm()
68 bootm_argv[2] = argv[0]; /* kernel addr */ in call_bootm()
78 bootm_argv[1] = (char *)subcommand[i]; in call_bootm()
79 debug("args %d: %s %s ", argc, bootm_argv[0], bootm_argv[1]); in call_bootm()
81 debug("%s ", bootm_argv[j + 2]); in call_bootm()
85 bootm_argv); in call_bootm()
H A Dpxe.c618 char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL }; in label_boot() local
650 bootm_argv[2] = initrd_str; in label_boot()
651 strncpy(bootm_argv[2], env_get("ramdisk_addr_r"), 18); in label_boot()
652 strcat(bootm_argv[2], ":"); in label_boot()
653 strncat(bootm_argv[2], env_get("filesize"), 9); in label_boot()
702 bootm_argv[1] = env_get("kernel_addr_r"); in label_boot()
717 bootm_argv[3] = env_get("fdt_addr_r"); in label_boot()
720 if (bootm_argv[3]) { in label_boot()
779 bootm_argv[3] = NULL; in label_boot()
783 if (!bootm_argv[3]) in label_boot()
[all …]
H A Dnet.c49 char *bootm_argv[] = { "bootm", NULL }; in do_tftpbootm() local
68 bootm_argv[1] = fileaddr; in do_tftpbootm()
72 return do_bootm(NULL, 0, ARRAY_SIZE(bootm_argv), bootm_argv); in do_tftpbootm()
/OK3568_Linux_fs/u-boot/board/inversepath/usbarmory/
H A Dusbarmory.c428 static char *bootm_argv[] = { variable
443 printf("%s %s\n", bootm_argv[0], bootm_argv[1]); in board_run_command()
444 do_bootm(NULL, 0, 2, bootm_argv); in board_run_command()