Lines Matching refs:mdep
463 fastboot_build_mbi(char *mdep, fastboot_info_t *nk) in fastboot_build_mbi() argument
480 if (mdep != NULL && strlen(mdep) != 0) { in fastboot_build_mbi()
481 arglen = strlen(mdep) + 1; in fastboot_build_mbi()
581 if (mdep != NULL && strlen(mdep) != 0) { in fastboot_build_mbi()
582 bcopy(mdep, (void *)(start_addr_va + offs), arglen); in fastboot_build_mbi()
620 fastboot_parse_mdep(char *mdep, char *kern_bootpath, int *bootpath_len, in fastboot_parse_mdep() argument
629 if (mdep != NULL && strlen(mdep) != 0) { in fastboot_parse_mdep()
630 if (mdep[0] != '-') { in fastboot_parse_mdep()
633 while (mdep[i] != '\0' && mdep[i] != ' ') { in fastboot_parse_mdep()
637 if (i < 4 || strncmp(&mdep[i-4], "unix", 4) != 0) { in fastboot_parse_mdep()
639 bcopy(mdep, kern_bootpath, i); in fastboot_parse_mdep()
647 if (strlen(mdep) > i) { in fastboot_parse_mdep()
648 mdep += (i + 1); in fastboot_parse_mdep()
650 while (mdep[i] != '\0' && in fastboot_parse_mdep()
651 mdep[i] != ' ') { in fastboot_parse_mdep()
657 bcopy(mdep, kern_bootfile, i); in fastboot_parse_mdep()
659 bcopy(mdep, bootargs, strlen(mdep)); in fastboot_parse_mdep()
664 bcopy(mdep, &bootargs[off], strlen(mdep)); in fastboot_parse_mdep()
665 off += strlen(mdep); in fastboot_parse_mdep()
884 fastboot_load_kernel(char *mdep) in fastboot_load_kernel() argument
919 fastboot_parse_mdep(mdep, kern_bootpath, &bootpath_len, fastboot_args); in fastboot_load_kernel()
1467 fastboot_update_config(const char *mdep) in fastboot_update_config() argument
1469 uint8_t boot_config = (uint8_t)*mdep; in fastboot_update_config()
1567 fastboot_update_and_load(int fcn, char *mdep) in fastboot_update_and_load() argument
1581 fastboot_load_kernel(mdep); in fastboot_update_and_load()