/src/sys/arch/evbarm/conf/ |
GEMINI | 114 # Valid options for BOOT_ARGS: 120 options BOOT_ARGS="\"\""
|
GEMINI_MASTER | 115 # Valid options for BOOT_ARGS: 122 options BOOT_ARGS="\"\""
|
GEMINI_SLAVE | 115 # Valid options for BOOT_ARGS: 122 options BOOT_ARGS="\"\""
|
BCM5301X | 152 # Valid options for BOOT_ARGS: 159 options BOOT_ARGS="\"\""
|
BCM56340 | 152 # Valid options for BOOT_ARGS: 159 options BOOT_ARGS="\"\""
|
/src/sys/arch/evbarm/imx23_olinuxino/ |
imx23_olinuxino_machdep.c | 113 char *boot_args; variable in typeref:typename:char * 158 boot_args = (char *)KERN_PHYSTOV(BOOTIMX23_ARGS); 159 memcpy(kernel_boot_args, boot_args, MAX_BOOT_STRING); 160 #ifdef BOOT_ARGS 161 strcpy(kernel_boot_args, BOOT_ARGS); 163 boot_args = kernel_boot_args; 165 printf("boot_args @ %lx: '%s'\n", KERN_PHYSTOV(BOOTIMX23_ARGS), 166 boot_args); 168 parse_mi_bootargs(boot_args);
|
/src/sys/arch/evbarm/netwalker/ |
netwalker_machdep.c | 161 static char bootargs[MAX_BOOT_STRING] = BOOT_ARGS; 162 char *boot_args = NULL; variable in typeref:typename:char * 272 #ifdef BOOT_ARGS 273 char mi_bootargs[] = BOOT_ARGS; 338 boot_args = bootargs; 339 parse_mi_bootargs(boot_args); 340 printf("boot_args : %s\n", boot_args); 686 if (get_bootconf_option(boot_args, "console",
|
/src/sys/arch/evbarm/kobo/ |
kobo_machdep.c | 149 char *boot_args = NULL; variable in typeref:typename:char * 443 #ifdef BOOT_ARGS 444 char mi_bootargs[] = BOOT_ARGS;
|
/src/sys/arch/evbarm/fdt/ |
fdt_machdep.c | 122 char *boot_args = NULL; variable in typeref:typename:char * 287 boot_args = fdt_get_bootargs(); 311 fdt_update_stdout_path(fdt_data, boot_args); 345 #ifdef BOOT_ARGS 346 char mi_bootargs[] = BOOT_ARGS; 385 VPRINTF("bootargs: %s\n", boot_args); 387 parse_mi_bootargs(boot_args);
|
/src/sys/arch/evbarm/gemini/ |
gemini_machdep.c | 195 char *boot_args = NULL; variable in typeref:typename:char * 585 #ifdef BOOT_ARGS 586 char mi_bootargs[] = BOOT_ARGS;
|
/src/sys/arch/riscv/riscv/ |
riscv_machdep.c | 95 char *boot_args = NULL; variable in typeref:typename:char * 725 boot_args = fdt_get_bootargs(); 738 fdt_update_stdout_path(fdt_data, boot_args); 756 #ifdef BOOT_ARGS 757 char mi_bootargs[] = BOOT_ARGS; 797 VPRINTF("bootargs: %s\n", boot_args); 799 parse_mi_bootargs(boot_args);
|