placate Rob's qualms about mount.c

This commit is contained in:
Denis Vlasenko 2008-12-10 11:28:30 +00:00
parent a3ca7cf069
commit 3f8f4b2a93

View File

@ -161,56 +161,56 @@ static const int32_t mount_options[] = {
static const char mount_option_str[] = static const char mount_option_str[] =
USE_FEATURE_MOUNT_LOOP( USE_FEATURE_MOUNT_LOOP(
"loop" "\0" "loop\0"
) )
USE_FEATURE_MOUNT_FSTAB( USE_FEATURE_MOUNT_FSTAB(
"defaults" "\0" "defaults\0"
// "quiet" "\0" - do not filter out, vfat wants to see it // "quiet\0" - do not filter out, vfat wants to see it
"noauto" "\0" "noauto\0"
"sw" "\0" "sw\0"
"swap" "\0" "swap\0"
USE_DESKTOP("user" "\0") USE_DESKTOP("user\0")
USE_DESKTOP("users" "\0") USE_DESKTOP("users\0")
"_netdev" "\0" "_netdev\0"
) )
USE_FEATURE_MOUNT_FLAGS( USE_FEATURE_MOUNT_FLAGS(
// vfs flags // vfs flags
"nosuid" "\0" "nosuid\0"
"suid" "\0" "suid\0"
"dev" "\0" "dev\0"
"nodev" "\0" "nodev\0"
"exec" "\0" "exec\0"
"noexec" "\0" "noexec\0"
"sync" "\0" "sync\0"
"dirsync" "\0" "dirsync\0"
"async" "\0" "async\0"
"atime" "\0" "atime\0"
"noatime" "\0" "noatime\0"
"diratime" "\0" "diratime\0"
"nodiratime" "\0" "nodiratime\0"
"mand" "\0" "mand\0"
"nomand" "\0" "nomand\0"
"relatime" "\0" "relatime\0"
"norelatime" "\0" "norelatime\0"
"loud" "\0" "loud\0"
// action flags // action flags
"bind" "\0" "bind\0"
"move" "\0" "move\0"
"shared" "\0" "shared\0"
"slave" "\0" "slave\0"
"private" "\0" "private\0"
"unbindable" "\0" "unbindable\0"
"rshared" "\0" "rshared\0"
"rslave" "\0" "rslave\0"
"rprivate" "\0" "rprivate\0"
"runbindable" "\0" "runbindable\0"
) )
// Always understood. // Always understood.
"ro" "\0" // vfs flag "ro\0" // vfs flag
"rw" "\0" // vfs flag "rw\0" // vfs flag
"remount" "\0" // action flag "remount\0" // action flag
; ;