From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55141) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRegw-0002YR-Nx for qemu-devel@nongnu.org; Tue, 08 May 2012 03:18:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SRegu-0004yx-Sg for qemu-devel@nongnu.org; Tue, 08 May 2012 03:18:38 -0400 Sender: Paolo Bonzini Message-ID: <4FA8C8C3.7080902@redhat.com> Date: Tue, 08 May 2012 09:18:27 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1336412858-9366-1-git-send-email-afaerber@suse.de> In-Reply-To: <1336412858-9366-1-git-send-email-afaerber@suse.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH for-1.1] scripts/qemu-binfmt-conf.sh: Fix shell syntax List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, agraf@suse.de Il 07/05/2012 19:47, Andreas Färber ha scritto: > The script is organized as a sequence of binfmt registrations, with a > check whether the to be registered architecture matches the host. > > Add a missing fi for the SuperH section. > > Reported-by: Alexander Graf > Signed-off-by: Andreas Färber > --- > scripts/qemu-binfmt-conf.sh | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/scripts/qemu-binfmt-conf.sh b/scripts/qemu-binfmt-conf.sh > index 83a44d8..0da2618 100644 > --- a/scripts/qemu-binfmt-conf.sh > +++ b/scripts/qemu-binfmt-conf.sh > @@ -63,6 +63,7 @@ fi > if [ $cpu != "sh" ] ; then > echo ':sh4:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2a\x00:\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-sh4:' > /proc/sys/fs/binfmt_misc/register > echo ':sh4eb:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2a:\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-sh4eb:' > /proc/sys/fs/binfmt_misc/register > +fi > if [ $cpu != "s390x" ] ; then > echo ':s390x:M::\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x16:\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-s390x:' > /proc/sys/fs/binfmt_misc/register > fi Reviewed-by: Paolo Bonzini FWIW, in Fedora I changed qemu-binfmt-conf.sh to use systemd's embedded ability to register binfmt_misc file formats. I couldn't push it upstream because half of it is in the spec file, but you're welcome to lift it into OpenSUSE. Paolo