mirror of
https://git.busybox.net/busybox.git
synced 2024-11-23 21:53:25 +08:00
mount: support for "-o mand"
This commit is contained in:
parent
67075bb95f
commit
580ce2d138
@ -135,6 +135,8 @@ static const int32_t mount_options[] = {
|
||||
/* "noatime" */ MS_NOATIME,
|
||||
/* "diratime" */ ~MS_NODIRATIME,
|
||||
/* "nodiratime" */ MS_NODIRATIME,
|
||||
/* "mand" */ MS_MANDLOCK,
|
||||
/* "nomand" */ ~MS_MANDLOCK,
|
||||
/* "loud" */ ~MS_SILENT,
|
||||
|
||||
// action flags
|
||||
@ -185,6 +187,8 @@ static const char mount_option_str[] =
|
||||
"noatime" "\0"
|
||||
"diratime" "\0"
|
||||
"nodiratime" "\0"
|
||||
"mand" "\0"
|
||||
"nomand" "\0"
|
||||
"loud" "\0"
|
||||
|
||||
// action flags
|
||||
|
Loading…
Reference in New Issue
Block a user