Lines Matching refs:commands
120 static void __init boot_flags_init(char *commands) in boot_flags_init() argument
122 while (*commands) { in boot_flags_init()
124 while (*commands == ' ') in boot_flags_init()
125 commands++; in boot_flags_init()
128 if (*commands == '\0') in boot_flags_init()
130 if (*commands == '-') { in boot_flags_init()
131 commands++; in boot_flags_init()
132 while (*commands && *commands != ' ') in boot_flags_init()
133 process_switch(*commands++); in boot_flags_init()
136 if (!strncmp(commands, "mem=", 4)) in boot_flags_init()
137 cmdline_memory_size = memparse(commands + 4, &commands); in boot_flags_init()
139 while (*commands && *commands != ' ') in boot_flags_init()
140 commands++; in boot_flags_init()