Lines Matching refs:mdep
455 fastboot_build_mbi(char *mdep, fastboot_info_t *nk) in fastboot_build_mbi() argument
472 if (mdep != NULL && strlen(mdep) != 0) { in fastboot_build_mbi()
473 arglen = strlen(mdep) + 1; in fastboot_build_mbi()
573 if (mdep != NULL && strlen(mdep) != 0) { in fastboot_build_mbi()
574 bcopy(mdep, (void *)(start_addr_va + offs), arglen); in fastboot_build_mbi()
608 fastboot_parse_mdep(char *mdep, char *kern_bootpath, int *bootpath_len, in fastboot_parse_mdep() argument
617 if (mdep != NULL && strlen(mdep) != 0) { in fastboot_parse_mdep()
618 if (mdep[0] != '-') { in fastboot_parse_mdep()
621 while (mdep[i] != '\0' && mdep[i] != ' ') { in fastboot_parse_mdep()
625 if (i < 4 || strncmp(&mdep[i-4], "unix", 4) != 0) { in fastboot_parse_mdep()
627 bcopy(mdep, kern_bootpath, i); in fastboot_parse_mdep()
635 if (strlen(mdep) > i) { in fastboot_parse_mdep()
636 mdep += (i + 1); in fastboot_parse_mdep()
638 while (mdep[i] != '\0' && in fastboot_parse_mdep()
639 mdep[i] != ' ') { in fastboot_parse_mdep()
645 bcopy(mdep, kern_bootfile, i); in fastboot_parse_mdep()
647 bcopy(mdep, bootargs, strlen(mdep)); in fastboot_parse_mdep()
652 bcopy(mdep, &bootargs[off], strlen(mdep)); in fastboot_parse_mdep()
653 off += strlen(mdep); in fastboot_parse_mdep()
872 fastboot_load_kernel(char *mdep) in fastboot_load_kernel() argument
907 fastboot_parse_mdep(mdep, kern_bootpath, &bootpath_len, fastboot_args); in fastboot_load_kernel()
1452 fastboot_update_config(const char *mdep) in fastboot_update_config() argument
1454 uint8_t boot_config = (uint8_t)*mdep; in fastboot_update_config()
1552 fastboot_update_and_load(int fcn, char *mdep) in fastboot_update_and_load() argument
1566 fastboot_load_kernel(mdep); in fastboot_update_and_load()