From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33070) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPOL1-0005xr-81 for qemu-devel@nongnu.org; Thu, 26 Sep 2013 23:03:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPOKu-0000Nh-5K for qemu-devel@nongnu.org; Thu, 26 Sep 2013 23:03:27 -0400 Received: from mail-la0-f41.google.com ([209.85.215.41]:41589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPOKt-0000NX-Uh for qemu-devel@nongnu.org; Thu, 26 Sep 2013 23:03:20 -0400 Received: by mail-la0-f41.google.com with SMTP id ec20so1715530lab.28 for ; Thu, 26 Sep 2013 20:03:18 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1379093154-11348-1-git-send-email-peter.maydell@linaro.org> References: <1379093154-11348-1-git-send-email-peter.maydell@linaro.org> From: Peter Maydell Date: Fri, 27 Sep 2013 12:02:58 +0900 Message-ID: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 0/4] avoid CONFIG_NO_* using rules.mak logic/string fns List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Cc: Paolo Bonzini , =?UTF-8?B?w4Frb3MgS292w6Fjcw==?= , Anthony Liguori , Patch Tracking Ping! thanks -- PMM On 14 September 2013 02:25, Peter Maydell wrote: > This is based on a set of patches by =C3=81kos Kov=C3=A1cs which were > lurking at the beginning of his KConfig patchset but which > I think make a nice standalone cleanup. Since I basically > rewrote all of patch 1&2 in review comments I figured it was > easier to just write it as a new patch. Patch 3 and 4 > are =C3=81kos', though I fixed a few missed conversions in patch 3. > > Changes v1->v2: > * split into a patch for logic functions and one for string fns > * at Paolo's suggestion, renamed the 'n' =3D=3D '' comparisons > as 'leqv' and 'lxor', and reintroduced =C3=81kos' string compares > as eq/ne > * added back in lif, which I'd accidentally left out of > patch 1 > > Peter Maydell (2): > rules.mak: New logical functions for handling y/n values > rules.mak: New string testing functions > > =C3=81kos Kov=C3=A1cs (2): > Makefile.target: CONFIG_NO_* variables removed > default-configs/: CONFIG_GDBSTUB_XML removed > > Makefile.target | 10 +++------- > default-configs/arm-linux-user.mak | 2 -- > default-configs/arm-softmmu.mak | 1 - > default-configs/armeb-linux-user.mak | 2 -- > default-configs/m68k-linux-user.mak | 2 -- > default-configs/m68k-softmmu.mak | 1 - > default-configs/ppc-linux-user.mak | 2 -- > default-configs/ppc-softmmu.mak | 1 - > default-configs/ppc64-linux-user.mak | 2 -- > default-configs/ppc64-softmmu.mak | 1 - > default-configs/ppc64abi32-linux-user.mak | 2 -- > default-configs/ppcemb-softmmu.mak | 1 - > hw/pci/Makefile.objs | 2 +- > rules.mak | 28 +++++++++++++++++++++++= +++++ > target-arm/Makefile.objs | 2 +- > target-i386/Makefile.objs | 2 +- > target-ppc/Makefile.objs | 2 +- > 17 files changed, 35 insertions(+), 28 deletions(-) > > -- > 1.7.9.5 > >