/src/sys/stand/efiboot/ |
module.c | 53 module_set_prefix(const char *kernel_path) 56 char *ptr = strrchr(kernel_path, '/'); 59 snprintf(module_prefix, sizeof(module_prefix), "%s/modules", kernel_path); 80 module_init(const char *kernel_path) 82 module_set_prefix(kernel_path);
|
/src/sys/arch/hpcarm/hpcarm/ |
hpc_machdep.c | 77 static char kernel_path[] = KLOADER_KERNEL_PATH; variable in typeref:typename:char[] 156 kloader_reboot_setup(kernel_path);
|
/src/sys/arch/i386/stand/lib/ |
exec.c | 634 module_base_path(char *buf, size_t bufsize, const char *kernel_path) 638 char *ptr = strrchr(kernel_path, '/'); 640 snprintf(buf, bufsize, "%s/modules", kernel_path); 674 module_init(const char *kernel_path) 685 extract_device(kernel_path, kdev, sizeof(kdev)); 686 module_base_path(module_base, sizeof(module_base), kernel_path);
|
/src/sys/arch/hpcmips/hpcmips/ |
machdep.c | 173 static char kernel_path[] = KLOADER_KERNEL_PATH; variable in typeref:typename:char[] 520 kloader_reboot_setup(kernel_path);
|
/src/sys/arch/hpcsh/hpcsh/ |
machdep.c | 172 static const char kernel_path[] = KLOADER_KERNEL_PATH; variable in typeref:typename:const char[] 388 kloader_reboot_setup(kernel_path);
|
/src/sys/arch/sandpoint/stand/altboot/ |
main.c | 499 module_load(const char *kernel_path) 507 strcpy(module_base, kernel_path);
|