Searched defs:mod_path (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/psm/stand/lib/names/sparc/common/
H A Duname-m.c71 mod_path_uname_m(char *mod_path, char *ia_name) argument
79 * directory (e.g. /platform/SUNW,foo/kernel) to the mod_path unless
89 if (platcmp(mod_path, default_name)) {
93 (void) strcpy(tmp, mod_path);
94 (void) strcpy(mod_path, "/platform/");
95 (void) strcat(mod_path, ia_name);
96 (void) strcat(mod_path, "/kernel ");
97 (void) strcat(mod_path, tmp);
99 } else if (platcmp(mod_path, ia_name))
100 (void) strcat(mod_path, default_pat
[all...]
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_module.h112 char *mod_path; /* full pathname of module file (ro) */ member in struct:fmd_module
/illumos-gate/usr/src/psm/stand/boot/common/
H A Dreadfile.c1514 static char mod_path[MOD_MAXPATH]; local
1538 (void) strncpy(mod_path, fname, len);
1539 mod_path[len] = 0;
1542 len = strlen(mod_path);
1543 if ((len > isalen) && (strcmp(&mod_path[len - isalen], isastr) == 0)) {
1544 mod_path[len - isalen] = '\0';
1552 mod_path_uname_m(mod_path, impl_arch_name);
1553 (void) strcat(mod_path, " ");
1554 (void) strcat(mod_path, MOD_DEFPATH);
1559 printf("Enter default directory for modules [%s]: ", mod_path);
[all...]

Completed in 62 milliseconds