From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49113) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gx1ZK-0005pa-Sa for qemu-devel@nongnu.org; Thu, 21 Feb 2019 22:32:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gx1ZJ-0001go-H3 for qemu-devel@nongnu.org; Thu, 21 Feb 2019 22:32:10 -0500 Received: from indium.canonical.com ([91.189.90.7]:39518) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gx1ZJ-0000Ul-7j for qemu-devel@nongnu.org; Thu, 21 Feb 2019 22:32:09 -0500 Received: from loganberry.canonical.com ([91.189.90.37]) by indium.canonical.com with esmtp (Exim 4.86_2 #2 (Debian)) id 1gx1Xq-0004DE-Ur for ; Fri, 22 Feb 2019 03:30:38 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id E46072E804F for ; Fri, 22 Feb 2019 03:30:38 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Date: Fri, 22 Feb 2019 03:23:35 -0000 From: umarcor <1817239@bugs.launchpad.net> Reply-To: Bug 1817239 <1817239@bugs.launchpad.net> Sender: bounces@canonical.com Message-Id: <155080581544.22842.8774442486795126526.malonedeb@wampee.canonical.com> Errors-To: bounces@canonical.com Subject: [Qemu-devel] [Bug 1817239] [NEW] add '--targets' option to qemu-binfmt-conf.sh List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Public bug reported: I'd like to ask for the addition of option '--targets' to scripts/qemu- binfmt-conf.sh, in order to allow registering the interpreters for the given list of architectures only, instead of using all of the ones defined in qemu_target_list. The following is a possible patch that implements it: qemu-binfmt-conf.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/qemu-binfmt-conf.sh b/qemu-binfmt-conf.sh index b5a1674..be4a19b 100644 --- a/qemu-binfmt-conf.sh +++ b/qemu-binfmt-conf.sh @@ -170,6 +170,7 @@ usage() { Usage: qemu-binfmt-conf.sh [--qemu-path PATH][--debian][--systemd CPU] [--help][--credential yes|no][--exportdir PATH] [--persistent yes|no][--qemu-suffix SUFFIX] + [--targets TARGETS] Configure binfmt_misc to use qemu interpreter @@ -189,6 +190,8 @@ Usage: qemu-binfmt-conf.sh [--qemu-path PATH][--debian]= [--systemd CPU] --persistent: if yes, the interpreter is loaded when binfmt is configured and remains in memory. All future uses are cloned from the open file. + --targets: comma-separated list of targets. If provided, only + the targets in the list are registered. To import templates with update-binfmts, use : @@ -324,7 +327,7 @@ CREDENTIAL=3Dno PERSISTENT=3Dno QEMU_SUFFIX=3D"" -options=3D$(getopt -o ds:Q:S:e:hc:p: -l debian,systemd:,qemu-path:,qemu-su= ffix:,exportdir:,help,credential:,persistent: -- "$@") +options=3D$(getopt -o ds:Q:S:e:hc:p:t: -l debian,systemd:,qemu-path:,qemu-= suffix:,exportdir:,help,credential:,persistent:,targets: -- "$@") eval set -- "$options" while true ; do @@ -380,6 +383,10 @@ while true ; do shift PERSISTENT=3D"$1" ;; + -t|--targets) + shift + qemu_target_list=3D"$(echo "$1" | tr ',' ' ')" + ;; *) break ;; -- 2.20.1 ** Affects: qemu Importance: Undecided Status: New -- = You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1817239 Title: add '--targets' option to qemu-binfmt-conf.sh Status in QEMU: New Bug description: I'd like to ask for the addition of option '--targets' to scripts /qemu-binfmt-conf.sh, in order to allow registering the interpreters for the given list of architectures only, instead of using all of the ones defined in qemu_target_list. The following is a possible patch that implements it: qemu-binfmt-conf.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/qemu-binfmt-conf.sh b/qemu-binfmt-conf.sh index b5a1674..be4a19b 100644 --- a/qemu-binfmt-conf.sh +++ b/qemu-binfmt-conf.sh @@ -170,6 +170,7 @@ usage() { Usage: qemu-binfmt-conf.sh [--qemu-path PATH][--debian][--systemd CPU] [--help][--credential yes|no][--exportdir PAT= H] [--persistent yes|no][--qemu-suffix SUFFIX] + [--targets TARGETS] Configure binfmt_misc to use qemu interpreter @@ -189,6 +190,8 @@ Usage: qemu-binfmt-conf.sh [--qemu-path PATH][--debia= n][--systemd CPU] --persistent: if yes, the interpreter is loaded when binfmt is configured and remains in memory. All future uses are cloned from the open file. + --targets: comma-separated list of targets. If provided, only + the targets in the list are registered. To import templates with update-binfmts, use : @@ -324,7 +327,7 @@ CREDENTIAL=3Dno PERSISTENT=3Dno QEMU_SUFFIX=3D"" -options=3D$(getopt -o ds:Q:S:e:hc:p: -l debian,systemd:,qemu-path:,qemu-= suffix:,exportdir:,help,credential:,persistent: -- "$@") +options=3D$(getopt -o ds:Q:S:e:hc:p:t: -l debian,systemd:,qemu-path:,qem= u-suffix:,exportdir:,help,credential:,persistent:,targets: -- "$@") eval set -- "$options" while true ; do @@ -380,6 +383,10 @@ while true ; do shift PERSISTENT=3D"$1" ;; + -t|--targets) + shift + qemu_target_list=3D"$(echo "$1" | tr ',' ' ')" + ;; *) break ;; -- 2.20.1 To manage notifications about this bug go to: https://bugs.launchpad.net/qemu/+bug/1817239/+subscriptions