Lines Matching refs:commands
129 static void __init boot_flags_init(char *commands) in boot_flags_init() argument
131 while (*commands) { in boot_flags_init()
133 while (*commands && *commands == ' ') in boot_flags_init()
134 commands++; in boot_flags_init()
137 if (*commands == '\0') in boot_flags_init()
139 if (*commands == '-') { in boot_flags_init()
140 commands++; in boot_flags_init()
141 while (*commands && *commands != ' ') in boot_flags_init()
142 process_switch(*commands++); in boot_flags_init()
145 if (!strncmp(commands, "mem=", 4)) in boot_flags_init()
146 cmdline_memory_size = memparse(commands + 4, &commands); in boot_flags_init()
148 while (*commands && *commands != ' ') in boot_flags_init()
149 commands++; in boot_flags_init()