Lines Matching refs:commands
134 static void __init boot_flags_init(char *commands) in boot_flags_init() argument
136 while (*commands) { in boot_flags_init()
138 while (*commands == ' ') in boot_flags_init()
139 commands++; in boot_flags_init()
142 if (*commands == '\0') in boot_flags_init()
144 if (*commands == '-') { in boot_flags_init()
145 commands++; in boot_flags_init()
146 while (*commands && *commands != ' ') in boot_flags_init()
147 process_switch(*commands++); in boot_flags_init()
150 if (!strncmp(commands, "mem=", 4)) in boot_flags_init()
151 cmdline_memory_size = memparse(commands + 4, &commands); in boot_flags_init()
153 while (*commands && *commands != ' ') in boot_flags_init()
154 commands++; in boot_flags_init()