From: Christian Goeschel Ndjomouo Date: Mon, 24 Nov 2025 03:57:35 +0000 (-0500) Subject: mount: add missing --ro option info in usage message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=947a19355cab82236c632bea24d08e187bfaf45c;p=thirdparty%2Futil-linux.git mount: add missing --ro option info in usage message Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/sys-utils/mount.c b/sys-utils/mount.c index 2450228d0..377cafcf8 100644 --- a/sys-utils/mount.c +++ b/sys-utils/mount.c @@ -583,7 +583,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" --onlyonce check if filesystem is already mounted on target\n"), out); fputs(_(" -o, --options comma-separated list of mount options\n"), out); fputs(_(" -O, --test-opts limit the set of filesystems (use with -a)\n"), out); - fputs(_(" -r, --read-only mount the filesystem read-only (same as -o ro)\n"), out); + fputs(_(" -r, --ro, --read-only mount the filesystem read-only (same as -o ro)\n"), out); fputs(_(" -t, --types limit the set of filesystem types\n"), out); fputs(_(" --source explicitly specifies source (path, label, uuid)\n"), out); fputs(_(" --target explicitly specifies mountpoint\n"), out);