Home
last modified time | relevance | path

Searched refs:bootargs (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/samples/kernel/bootargs/
DREADME.rst1 .. zephyr:code-sample:: bootargs
4 Print received bootargs to the console.
9 This sample demonstrates use of bootargs passed to Zephyr by printing each main argument to the con…
10 Zephyr support both dynamic bootargs, received from supported bootloader, and static bootargs embed…
15 Static bootargs don't have special requirements.
16 Dynamic bootargs work on platforms where Zephyr is booted by multiboot or efi.
21 Static bootargs
24 Static bootargs can be configured using ``CONFIG_BOOTARGS_STRING``.
27 :zephyr-app: samples/kernel/bootargs
48 :zephyr-app: samples/kernel/bootargs
[all …]
DCMakeLists.txt5 project(bootargs) project
/Zephyr-latest/kernel/
Dinit.c405 const char *bootargs = get_bootargs(); in prepare_main_args() local
407 const char bootargs[] = CONFIG_BOOTARGS_STRING; in prepare_main_args()
421 if (!bootargs) { in prepare_main_args()
427 while (isspace(bootargs[i])) { in prepare_main_args()
431 if (bootargs[i] == '\0') { in prepare_main_args()
447 if (bootargs[i] == '\"' || bootargs[i] == '\'') { in prepare_main_args()
448 char delimiter = bootargs[i]; in prepare_main_args()
450 for (int j = i + 1; bootargs[j] != '\0'; j++) { in prepare_main_args()
451 if (bootargs[j] == delimiter) { in prepare_main_args()
459 char delimiter = bootargs[i]; in prepare_main_args()
[all …]
DKconfig1072 bool "Support bootargs"
1074 Enables bootargs support and passing them to main().
1077 bool "Support dynamic bootargs"
1080 Enables dynamic bootargs support.
1083 string "static bootargs string"
1086 Static bootargs string. It includes argv[0], so if its expected that it
/Zephyr-latest/arch/x86/core/
DCMakeLists.txt24 zephyr_library_sources_ifdef(CONFIG_DYNAMIC_BOOTARGS bootargs.c)
/Zephyr-latest/boards/acrn/acrn/doc/
Dindex.rst97 <bootargs></bootargs>