/src/sys/arch/sparc/stand/ofwboot/ |
promlib.c | 94 static char bootargs[PROM_MAX_PATH * 2]; local in function:openfirmware_bootargs 96 if (_prom_getprop(openfirmware_chosen(), "bootargs", bootargs, 97 sizeof(bootargs)) < 0) { 101 return bootargs;
|
/src/sys/arch/epoc32/include/ |
bootinfo.h | 67 char bootargs[256]; member in struct:btinfo_bootargs
|
/src/sys/arch/zaurus/stand/zbsdmod/ |
zbsdmod.c | 96 static char bootargs[BOOTARGS_BUFSIZ]; variable in typeref:typename:char[] 165 ((char *)minv - BOOTARGS_BUFSIZ)[sz] = bootargs[sz]; 394 *(u_int *)bootargs = BOOTARGS_MAGIC; 395 memcpy(bootargs + sizeof(u_int), bsdimage, position);
|
/src/sys/arch/cats/cats/ |
cats_machdep.c | 121 static char bootargs[MAX_BOOT_STRING + 1]; variable in typeref:typename:char[] 493 /* Make a local copy of the bootargs */ 494 strncpy(bootargs, loader_args, MAX_BOOT_STRING); 496 args = bootargs; 497 boot_file = bootargs; 512 printf("bootargs: %s\n", boot_args);
|
/src/sys/arch/epoc32/stand/e32boot/exe/ |
e32boot.cpp | 134 struct btinfo_bootargs *bootargs; local in function:E32BootL 164 bootargs = 174 n = sizeof(bootargs->bootargs); 177 Mem::Copy(bootargs->bootargs, &(*netbsd->GetArgs())[0], 179 bootargs->bootargs[n < m ? n - 1 : m] = '\0'; 332 struct btinfo_bootargs *bootargs; local in function:CreateBootInfo 390 bootargs = (struct btinfo_bootargs *)common [all...] |
/src/sys/arch/epoc32/epoc32/ |
machdep.c | 87 static char bootargs[256]; variable in typeref:typename:char[256] 214 memcpy(bootargs, args->bootargs, 215 uimin(sizeof(bootargs), sizeof(args->bootargs))); 216 bootargs[sizeof(bootargs) - 1] = '\0'; 217 boot_args = bootargs;
|
/src/sys/arch/evbarm/marvell/ |
marvell_machdep.c | 97 static char bootargs[MAX_BOOT_STRING]; variable in typeref:typename:char[] 448 strncpy(bootargs, (char *)u_boot_args[3], sizeof(bootargs)); 489 /* parse bootargs from U-Boot */ 490 boot_args = bootargs;
|
/src/sys/arch/evbarm/bcm53xx/ |
bcm53xx_machdep.c | 85 static char bootargs[MAX_BOOT_STRING]; variable in typeref:typename:char[] 317 bootargs[0] = '\0';
|
/src/sys/arch/evbarm/kobo/ |
kobo_machdep.c | 148 static char bootargs[MAX_BOOT_STRING]; variable in typeref:typename:char[] 447 bootargs[0] = '\0';
|
/src/sys/stand/efiboot/ |
boot.c | 208 char *bootargs = gettrailer(arg); local in function:command_boot 213 if (!*bootargs) 214 bootargs = netbsd_args; 217 exec_netbsd(kernel, bootargs);
|
/src/sys/arch/evbarm/gumstix/ |
gumstix_machdep.c | 203 static char bootargs[MAX_BOOT_STRING]; variable in typeref:typename:char[] 204 const size_t bootargs_len = sizeof(bootargs) - 1; /* without nul */ 552 *(bootargs + j) = '\0'; 556 *(bootargs + j++) = ' '; 557 strncpy(bootargs + j, argv[i], bootargs_len - j); 558 bootargs[bootargs_len] = '\0'; 561 boot_args = bootargs; 577 strncpy(bootargs, args, sizeof(bootargs)); 583 if ((p = strstr(bootargs, expansion_name)) [all...] |
/src/sys/arch/netwinder/netwinder/ |
netwinder_machdep.c | 120 static char bootargs[MAX_BOOT_STRING + 1]; variable in typeref:typename:char[] 849 /* Make a local copy of the bootargs */ 850 strncpy(bootargs, args, MAX_BOOT_STRING); 852 args = bootargs; 853 boot_file = bootargs; 868 printf("bootargs: %s\n", boot_args);
|
/src/sys/arch/evbarm/netwalker/ |
netwalker_machdep.c | 161 static char bootargs[MAX_BOOT_STRING] = BOOT_ARGS; variable in typeref:typename:char[] 338 boot_args = bootargs;
|
/src/sys/dev/fdt/ |
fdt_boot.c | 91 static char bootargs[FDT_MAX_BOOT_STRING] = ""; variable in typeref:typename:char[] 199 OF_getprop(chosen, "bootargs", bootargs, sizeof(bootargs)); 200 return bootargs;
|
/src/sys/arch/sandpoint/stand/altboot/ |
main.c | 50 } bootargs[] = { variable in typeref:typename:const struct bootarg[] 211 /* parse standard Linux bootargs */ 281 for (i = 0; i < sizeof(bootargs) / sizeof(bootargs[0]); i++) { 282 if (strncasecmp(argv[n], bootargs[i].name, 283 strlen(bootargs[i].name)) == 0) { 284 howto |= bootargs[i].value; 288 if (i >= sizeof(bootargs) / sizeof(bootargs[0]))
|