[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v3 9/10] qemu-binfmt-conf.sh: update usage()
From: |
Laurent Vivier |
Subject: |
Re: [Qemu-devel] [PATCH v3 9/10] qemu-binfmt-conf.sh: update usage() |
Date: |
Sun, 10 Mar 2019 18:20:31 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 |
On 06/03/2019 05:54, Unai Martinez-Corral wrote:
> Reduce indentation to better use available space.
>
> Add list of supported environment variables and their default values.
>
> Signed-off-by: Unai Martinez-Corral <address@hidden>
> ---
> scripts/qemu-binfmt-conf.sh | 61 ++++++++++++++++++++-----------------
> 1 file changed, 33 insertions(+), 28 deletions(-)
>
> diff --git a/scripts/qemu-binfmt-conf.sh b/scripts/qemu-binfmt-conf.sh
> index 4a45636b53..8ca2647ed0 100755
> --- a/scripts/qemu-binfmt-conf.sh
> +++ b/scripts/qemu-binfmt-conf.sh
> @@ -201,34 +201,31 @@ Usage: qemu-binfmt-conf.sh [--help][--path
> PATH][--suffix SUFFIX]
> [--persistent][--credential][--exportdir PATH]
> [--reset ARCHS][--systemd][--debian][CPUS]
>
> - Configure binfmt_misc to use qemu interpreter for the given CPUS.
> - Supported formats for CPUS are: single arch or comma/space separated
> list.
> - See QEMU target list below. If CPUS is 'ALL' or empty, configure all
> known
> - cpus. If CPUS is 'NONE', no interpreter is configured.
> + Configure binfmt_misc to use qemu interpreter for the given CPUS.
> + Supported formats for CPUS are: single arch or comma/space separated
> list.
> + See QEMU target list below. If CPUS is 'ALL' or empty, configure all
> known
> + cpus. If CPUS is 'NONE', no interpreter is configured.
>
> - --help: display this usage
> - --path: set path to qemu interpreter ($QEMU_PATH)
> - --suffix: add a suffix to the default interpreter name
> - ($QEMU_SUFFIX)
> - --persistent: if present, the interpreter is loaded when binfmt is
> - configured and remains in memory. All future uses
> - are cloned from the open file.
> - ($QEMU_PERSISTENT=yes)
> - --credential: if present, credential and security tokens are
> - calculated according to the binary to interpret
> - ($QEMU_CREDENTIAL=yes)
> - --exportdir: define where to write configuration files
> - (default: $SYSTEMDDIR or $DEBIANDIR)
> - --reset: remove registered interpreter for target ARCHS (comma
> - separated list). If ARCHS is 'ALL', remove all
> registered
> - 'qemu-*' interpreters.
> - --systemd: don't write into /proc,
> - instead generate file for systemd-binfmt.service;
> - environment variable HOST_ARCH allows to override
> 'uname'
> - to generate configuration files for a different
> - architecture than the current one.
> - --debian: don't write into /proc,
> - instead generate update-binfmts templates
> + --help: display this usage.
> + --path: set path to qemu interpreter.
> + --suffix: add a suffix to the default interpreter name.
> + --persistent: if present, the interpreter is loaded when binfmt is
> + configured and remains in memory. All future uses
> + are cloned from the open file.
> + --credential: if present, credential and security tokens are
> + calculated according to the binary to interpret.
> + --exportdir: define where to write configuration files.
> + (default: $SYSTEMDDIR or $DEBIANDIR)
> + --reset: remove registered interpreter for target ARCHS (comma
> + separated list). If ARCHS is 'ALL', remove all registered
> + 'qemu-*' interpreters.
> + --systemd: don't write into /proc,
> + instead generate file(s) for systemd-binfmt.service;
> + environment variable HOST_ARCH allows to override 'uname'
> + to generate configuration files for a different
> + architecture than the current one.
> + --debian: don't write into /proc,
> + instead generate update-binfmts templates.
>
> To import templates with update-binfmts, use :
>
> @@ -240,6 +237,14 @@ Usage: qemu-binfmt-conf.sh [--help][--path
> PATH][--suffix SUFFIX]
>
> QEMU target list: $qemu_target_list
>
> + Options 'path, 'suffix', 'persistent' and 'credential' are also supported
> + through environment variables. Defaults are:
> +
> + QEMU_PATH=/usr/local/bin
You can write
QEMU_PATH=$QEMU_PATH
to have the actual value.
> + QEMU_SUFFIX=
> + QEMU_PERSISTENT=no
> + QEMU_CREDENTIAL=no
and
QEMU_SUFFIX=$QEMU_SUFFIX
QEMU_PERSISTENT=$QEMU_PERSISTENT
QEMU_CREDENTIAL=$QEMU_CREDENTIAL=
> +
> EOF
> }
>
> @@ -384,8 +389,8 @@ DEBIANDIR="/usr/share/binfmts"
>
> QEMU_PATH="${QEMU_PATH:-/usr/local/bin}"
> QEMU_SUFFIX="${QEMU_SUFFIX:-}"
> -QEMU_CREDENTIAL="${QEMU_CREDENTIAL:-no}"
> QEMU_PERSISTENT="${QEMU_PERSISTENT:-no}"
> +QEMU_CREDENTIAL="${QEMU_CREDENTIAL:-no}"
>
> options=$(getopt -o r:dsQ:S:e:hcp -l
> reset:,debian,systemd,path:,suffix:,exportdir:,help,credential,persistent --
> "$@")
> eval set -- "$options"
I think you can merge this patch with the previous one.
Thanks,
Laurent
- [Qemu-devel] [PATCH v3 5/10] qemu-binfmt-conf.sh: honour QEMU_PATH and/or QEMU_SUFFIX, (continued)
- [Qemu-devel] [PATCH v3 5/10] qemu-binfmt-conf.sh: honour QEMU_PATH and/or QEMU_SUFFIX, Unai Martinez-Corral, 2019/03/05
- [Qemu-devel] [PATCH v3 6/10] qemu-binfmt-conf.sh: generalize <CPU> to positional <CPUS>, Unai Martinez-Corral, 2019/03/05
- [Qemu-devel] [PATCH v3 7/10] qemu-binfmt-conf.sh: add option --reset <ARCHS>, Unai Martinez-Corral, 2019/03/05
- [Qemu-devel] [PATCH v3 8/10] qemu-binfmt-conf.sh: refactor usage(), Unai Martinez-Corral, 2019/03/05
- [Qemu-devel] [PATCH v3 9/10] qemu-binfmt-conf.sh: update usage(), Unai Martinez-Corral, 2019/03/05
- Re: [Qemu-devel] [PATCH v3 9/10] qemu-binfmt-conf.sh: update usage(),
Laurent Vivier <=
- [Qemu-devel] [PATCH v3 10/10] qemu-binfmt-conf.sh: support QEMU_TARGETS, Unai Martinez-Corral, 2019/03/05
- Re: [Qemu-devel] [PATCH v3 0/10] qemu-binfmt-conf.sh, no-reply, 2019/03/05
- Re: [Qemu-devel] [PATCH v3 0/10] qemu-binfmt-conf.sh, no-reply, 2019/03/09
- Re: [Qemu-devel] [PATCH v3 0/10] qemu-binfmt-conf.sh, no-reply, 2019/03/09
- Re: [Qemu-devel] [PATCH v3 0/10] qemu-binfmt-conf.sh, no-reply, 2019/03/09