git: ec1d620c778f - stable/14 - vmrun.sh: add missing options in usage message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 09 Jan 2024 16:45:23 UTC
The branch stable/14 has been updated by christos: URL: https://cgit.FreeBSD.org/src/commit/?id=ec1d620c778f59814020db228d69f66c76389ade commit ec1d620c778f59814020db228d69f66c76389ade Author: Christos Margiolis <christos@FreeBSD.org> AuthorDate: 2024-01-02 18:20:08 +0000 Commit: Christos Margiolis <christos@FreeBSD.org> CommitDate: 2024-01-09 16:44:47 +0000 vmrun.sh: add missing options in usage message Reviewed by: markj Sponsored by; The FreeBSD Foundation MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D43269 (cherry picked from commit 029b10b16a4f1823b2546aa51e8f200ab23e929f) --- share/examples/bhyve/vmrun.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/examples/bhyve/vmrun.sh b/share/examples/bhyve/vmrun.sh index ff568b1da71c..d2cc371e472f 100755 --- a/share/examples/bhyve/vmrun.sh +++ b/share/examples/bhyve/vmrun.sh @@ -53,7 +53,7 @@ errmsg() { usage() { local msg=$1 - echo "Usage: vmrun.sh [-aAEhiTv] [-c <CPUs>] [-C <console>]" \ + echo "Usage: vmrun.sh [-aAEhiTuvw] [-c <CPUs>] [-C <console>]" \ "[-d <disk file>]" echo " [-e <name=value>] [-f <path of firmware>]" \ "[-F <size>]" @@ -62,6 +62,7 @@ usage() { echo " [-L <VNC IP for UEFI framebuffer>]" echo " [-m <memsize>]" \ "[-n <network adapter emulation type>]" + echo " [-p <bus/slot/func>]" echo " [-P <port>] [-t <tapdev>] <vmname>" echo "" echo " -h: display this help message"