aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-10 11:28:30 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-10 11:28:30 +0000
commit3f8f4b2a93524c3c420241256a0c8cf915446bc7 (patch)
tree35eeb72c223d6337b740a087516976c3f0894d37
parenta3ca7cf069177dba7b3c064324bd77e39483f13a (diff)
downloadbusybox-w32-3f8f4b2a93524c3c420241256a0c8cf915446bc7.tar.gz
busybox-w32-3f8f4b2a93524c3c420241256a0c8cf915446bc7.tar.bz2
busybox-w32-3f8f4b2a93524c3c420241256a0c8cf915446bc7.zip
placate Rob's qualms about mount.c
-rw-r--r--util-linux/mount.c80
1 files changed, 40 insertions, 40 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 175328f41..1c371518c 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -161,56 +161,56 @@ static const int32_t mount_options[] = {
161 161
162static const char mount_option_str[] = 162static const char mount_option_str[] =
163 USE_FEATURE_MOUNT_LOOP( 163 USE_FEATURE_MOUNT_LOOP(
164 "loop" "\0" 164 "loop\0"
165 ) 165 )
166 USE_FEATURE_MOUNT_FSTAB( 166 USE_FEATURE_MOUNT_FSTAB(
167 "defaults" "\0" 167 "defaults\0"
168 // "quiet" "\0" - do not filter out, vfat wants to see it 168 // "quiet\0" - do not filter out, vfat wants to see it
169 "noauto" "\0" 169 "noauto\0"
170 "sw" "\0" 170 "sw\0"
171 "swap" "\0" 171 "swap\0"
172 USE_DESKTOP("user" "\0") 172 USE_DESKTOP("user\0")
173 USE_DESKTOP("users" "\0") 173 USE_DESKTOP("users\0")
174 "_netdev" "\0" 174 "_netdev\0"
175 ) 175 )
176 USE_FEATURE_MOUNT_FLAGS( 176 USE_FEATURE_MOUNT_FLAGS(
177 // vfs flags 177 // vfs flags
178 "nosuid" "\0" 178 "nosuid\0"
179 "suid" "\0" 179 "suid\0"
180 "dev" "\0" 180 "dev\0"
181 "nodev" "\0" 181 "nodev\0"
182 "exec" "\0" 182 "exec\0"
183 "noexec" "\0" 183 "noexec\0"
184 "sync" "\0" 184 "sync\0"
185 "dirsync" "\0" 185 "dirsync\0"
186 "async" "\0" 186 "async\0"
187 "atime" "\0" 187 "atime\0"
188 "noatime" "\0" 188 "noatime\0"
189 "diratime" "\0" 189 "diratime\0"
190 "nodiratime" "\0" 190 "nodiratime\0"
191 "mand" "\0" 191 "mand\0"
192 "nomand" "\0" 192 "nomand\0"
193 "relatime" "\0" 193 "relatime\0"
194 "norelatime" "\0" 194 "norelatime\0"
195 "loud" "\0" 195 "loud\0"
196 196
197 // action flags 197 // action flags
198 "bind" "\0" 198 "bind\0"
199 "move" "\0" 199 "move\0"
200 "shared" "\0" 200 "shared\0"
201 "slave" "\0" 201 "slave\0"
202 "private" "\0" 202 "private\0"
203 "unbindable" "\0" 203 "unbindable\0"
204 "rshared" "\0" 204 "rshared\0"
205 "rslave" "\0" 205 "rslave\0"
206 "rprivate" "\0" 206 "rprivate\0"
207 "runbindable" "\0" 207 "runbindable\0"
208 ) 208 )
209 209
210 // Always understood. 210 // Always understood.
211 "ro" "\0" // vfs flag 211 "ro\0" // vfs flag
212 "rw" "\0" // vfs flag 212 "rw\0" // vfs flag
213 "remount" "\0" // action flag 213 "remount\0" // action flag
214; 214;
215 215
216 216