Home | History | Annotate | Download | only in init

Lines Matching defs:options

58 static int insmod(const char *filename, char *options)
72 return init_module(&module[0], module.size(), options);
181 char options[opt_len + 1];
184 options[0] = '\0';
186 strcpy(options, args[2]);
188 strcat(options, " ");
189 strcat(options, args[i]);
193 return insmod(args[1], options);
277 /* mount <type> <device> <path> <flags ...> <options> */
282 char *options = NULL;
300 options = args[n];
318 if (mount(tmp, target, system, flags, options) < 0) {
347 if (mount(tmp, target, system, flags, options) < 0) {
367 if (mount(source, target, system, flags, options) < 0) {