Home | History | Annotate | Download | only in lsb

Lines Matching full:opts

55   char *opts;
84 } opts[] = {
112 for (i = 0; i < ARRAY_LEN(opts); i++) if (!strcasecmp(opts[i].name, new)) {
113 long ll = opts[i].flags;
122 if (more && i == ARRAY_LEN(opts)) {
138 unsigned long flags, char *opts)
198 rc = mount(dev, dir, type, flags, opts);
264 char *opts = 0, *dev = 0, *dir = 0, **ss;
278 for (o = TT.optlist; o; o = o->next) comma_collate(&opts, o->arg);
279 if (toys.optflags & FLAG_r) comma_collate(&opts, "ro");
280 if (toys.optflags & FLAG_w) comma_collate(&opts, "rw");
287 if (sss[0]=='-' && sss[1]=='-' && sss[2]) comma_collate(&opts, sss+2);
290 // same message as lib/args.c ">2" which we can't use because --opts count
299 remount = (void *)(long)comma_scan(opts, "remount", 1);
318 noauto = comma_scan(mm->opts, "noauto", 1);
327 if (!mountlist_istype(mm,TT.type) || !comma_scanall(mm->opts,TT.bigO))
342 // user only counts from fstab, not opts.
344 TT.okuser = comma_scan(mm->opts, "user", 1);
345 aflags = flag_opts(mm->opts, flags, &aopts);
346 aflags = flag_opts(opts, aflags, &aopts);
370 s ? s : mm->device, mm->dir, mm->type, mm->opts);
378 mount_filesystem(dev, dir, TT.type, flag_opts(opts, flags, &more), more);