Lines Matching refs:commands
133 static void __init boot_flags_init(char *commands) in boot_flags_init() argument
135 while (*commands) { in boot_flags_init()
137 while (*commands == ' ') in boot_flags_init()
138 commands++; in boot_flags_init()
141 if (*commands == '\0') in boot_flags_init()
143 if (*commands == '-') { in boot_flags_init()
144 commands++; in boot_flags_init()
145 while (*commands && *commands != ' ') in boot_flags_init()
146 process_switch(*commands++); in boot_flags_init()
149 if (!strncmp(commands, "mem=", 4)) in boot_flags_init()
150 cmdline_memory_size = memparse(commands + 4, &commands); in boot_flags_init()
152 while (*commands && *commands != ' ') in boot_flags_init()
153 commands++; in boot_flags_init()