~pr0gg3d/ubuntu/oneiric/util-linux/bug-805886

« back to all changes in this revision

Viewing changes to mount/mount.c

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2009-12-23 04:29:48 UTC
  • Revision ID: james.westby@ubuntu.com-20091223042948-56zsfeyzjlpv2ivr
Tags: 2.16-1ubuntu6
* mount/fstab.5: document the bootwait, nobootwait, showthrough
  and optional mount options accepted by mountall.
* mount/mount.c: don't pass the above options to mount().  LP: #479965. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
  { "nostrictatime", 0, 1, MS_STRICTATIME }, /* kernel default atime */
203
203
#endif
204
204
  { "nofail",   0, 0, MS_COMMENT},      /* Do not fail if ENOENT on dev */
 
205
  { "bootwait", 0, 0, MS_COMMENT },
 
206
  { "nobootwait", 0, 0, MS_COMMENT },
 
207
  { "optional", 0, 0, MS_COMMENT },
 
208
  { "showthrough", 0, 0, MS_COMMENT },
205
209
  { NULL,       0, 0, 0         }
206
210
};
207
211