Home | History | Annotate | Download | only in lib

Lines Matching defs:bootargs

78 	const char *bootargs, *next, *quote;
82 bootargs = env_get("bootargs");
83 if (!bootargs)
86 next = bootargs;
88 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
89 quote = strchr(bootargs, '"');
90 next = strchr(bootargs, ' ');
105 next = bootargs + strlen(bootargs);
107 linux_cmdline_set(bootargs, next - bootargs);
112 bootargs = next;