/illumos-gate/usr/src/boot/i386/libi386/ |
H A D | multiboot.c | 323 if (mfp->f_args != NULL) { in multiboot_exec() 324 len += strlen(mfp->f_args) + 1; in multiboot_exec() 332 if (mfp->f_args != NULL) in multiboot_exec() 334 mfp->f_name, mfp->f_type, mfp->f_args); in multiboot_exec() 385 if (fp->f_args == NULL) { in multiboot_exec() 391 fp->f_args = strdup(cmdline); in multiboot_exec() 392 if (fp->f_args == NULL) { in multiboot_exec() 405 if (fp->f_args != NULL) in multiboot_exec() 406 len += strlen(fp->f_args) + 1; in multiboot_exec() 408 if (fp->f_args != NULL) { in multiboot_exec() [all …]
|
H A D | linux.c | 303 if (fp->f_args == NULL) in linux_exec() 304 fp->f_args = getenv("boot-args"); in linux_exec() 305 arg = fp->f_args; /* it can still be NULL */ in linux_exec()
|
H A D | bootinfo64.c | 115 if (fp->f_args) in bi_copymodules64() 116 MOD_ARGS(addr, fp->f_args, c); in bi_copymodules64()
|
H A D | elf32_freebsd.c | 64 err = bi_load32(fp->f_args, &boothowto, &bootdev, &bootinfop, &modulep, &kernend); in elf32_exec()
|
H A D | bootinfo32.c | 112 if (fp->f_args) in bi_copymodules32() 113 MOD_ARGS(addr, fp->f_args, c); in bi_copymodules32()
|
H A D | elf64_freebsd.c | 83 err = bi_load64(fp->f_args, 0, &modulep, &kernend, 1); in elf64_exec()
|
/illumos-gate/usr/src/boot/efi/loader/arch/arm/ |
H A D | exec.c | 77 if ((error = bi_load(fp->f_args, &modulep, &kernend)) != 0) { in __elfN() 84 printf("Kernel args: %s\n", fp->f_args); in __elfN()
|
/illumos-gate/usr/src/boot/common/ |
H A D | multiboot2.c | 625 rv = find_property_value(fp->f_args, "fstype", &fs, &len); in mb_kernel_cmdline() 636 if (fp->f_args == NULL) in mb_kernel_cmdline() 639 asprintf(&cmdline, "%s %s", fp->f_name, fp->f_args); in mb_kernel_cmdline() 683 if (mfp->f_args != NULL) in module_size() 684 len += strlen(mfp->f_args) + 1; in module_size() 891 if (fp->f_args == NULL) { in multiboot2_exec() 894 fp->f_args = strdup(cmdline); in multiboot2_exec() 895 if (fp->f_args == NULL) { in multiboot2_exec() 1019 if (mfp->f_args != NULL) { in multiboot2_exec() 1020 num += strlen(mfp->f_args) + 1; in multiboot2_exec() [all …]
|
H A D | module.c | 262 if (fp->f_args != NULL) { in command_lsmod() 264 (void) pager_output(fp->f_args); in command_lsmod() 452 (void) asprintf(&fp->f_args, "hash=%s", ascii); in module_hash() 715 fp->f_args = unargv(argc, argv); in file_loadraw() 723 (argc != 0 && fp->f_args == NULL)) { in file_loadraw() 814 fp->f_args = unargv(argc, argv); in mod_loadkld() 1192 free(fp->f_args); in file_discard()
|
H A D | boot.c | 101 free(fp->f_args); in command_boot() 102 fp->f_args = unargv(argc - 1, argv + 1); in command_boot()
|
H A D | bootstrap.h | 240 char *f_args; /* arguments for the file */ member
|
/illumos-gate/usr/src/boot/efi/loader/arch/i386/ |
H A D | bootinfo.c | 189 if (fp->f_args) in bi_copymodules() 190 MOD_ARGS(addr, fp->f_args); in bi_copymodules()
|
H A D | elf32_freebsd.c | 75 err = bi_load(fp->f_args, &boothowto, &bootdev, &bootinfop, &modulep, &kernend); in elf32_exec()
|
/illumos-gate/usr/src/boot/efi/loader/arch/arm64/ |
H A D | exec.c | 116 err = bi_load(fp->f_args, &modulep, &kernendp); in elf64_exec()
|
/illumos-gate/usr/src/boot/efi/loader/ |
H A D | bootinfo.c | 221 if (fp->f_args) in bi_copymodules() 222 MOD_ARGS(addr, fp->f_args, c); in bi_copymodules()
|
/illumos-gate/usr/src/boot/efi/loader/arch/amd64/ |
H A D | elf64_freebsd.c | 173 err = bi_load(fp->f_args, &modulep, &kernend); in elf64_exec()
|