From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB4Jw-00086X-6c for qemu-devel@nongnu.org; Mon, 10 Sep 2012 09:46:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TB4Js-0004nt-6Z for qemu-devel@nongnu.org; Mon, 10 Sep 2012 09:46:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50989) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB4Jr-0004nh-T5 for qemu-devel@nongnu.org; Mon, 10 Sep 2012 09:46:32 -0400 Date: Mon, 10 Sep 2012 15:46:25 +0200 From: Igor Mammedov Message-ID: <20120910154625.53b8a13f@nial.usersys.redhat.com> In-Reply-To: <1346877673-9136-6-git-send-email-ehabkost@redhat.com> References: <1346877673-9136-1-git-send-email-ehabkost@redhat.com> <1346877673-9136-6-git-send-email-ehabkost@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 5/7] eliminate cpus-x86_64.conf file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: Peter Maydell , qemu-devel@nongnu.org, Anthony Liguori , Andreas =?ISO-8859-1?B?RuRyYmVy?= On Wed, 5 Sep 2012 17:41:11 -0300 Eduardo Habkost wrote: > This file is not needed anymore, as QEMU won't ship any config-based > cpudefs out of the box, relying only on the builtin CPU models. > > Signed-off-by: Eduardo Habkost > --- > Makefile | 1 - > arch_init.c | 1 - > sysconfigs/target/cpus-x86_64.conf | 1 - > 3 files changed, 3 deletions(-) > delete mode 100644 sysconfigs/target/cpus-x86_64.conf > > diff --git a/Makefile b/Makefile > index 1cd5bc8..a8d9236 100644 > --- a/Makefile > +++ b/Makefile > @@ -297,7 +297,6 @@ install-confdir: > > install-sysconfig: install-datadir install-confdir > $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf > "$(DESTDIR)$(qemu_confdir)" > - $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/cpus-x86_64.conf > "$(DESTDIR)$(qemu_datadir)" > install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig > install-datadir $(INSTALL_DIR) "$(DESTDIR)$(bindir)" > diff --git a/arch_init.c b/arch_init.c > index 5a1173e..510d3ef 100644 > --- a/arch_init.c > +++ b/arch_init.c > @@ -136,7 +136,6 @@ static struct defconfig_file { > /* Indicates it is an user config file (disabled by -no-user-config) */ > bool userconfig; > } default_config_files[] = { > - { CONFIG_QEMU_DATADIR "/cpus-" TARGET_ARCH ".conf", false }, > { CONFIG_QEMU_CONFDIR "/qemu.conf", true }, > { CONFIG_QEMU_CONFDIR "/target-" TARGET_ARCH ".conf", true }, > { NULL }, /* end of list */ > diff --git a/sysconfigs/target/cpus-x86_64.conf > b/sysconfigs/target/cpus-x86_64.conf deleted file mode 100644 > index 3902189..0000000 > --- a/sysconfigs/target/cpus-x86_64.conf > +++ /dev/null > @@ -1 +0,0 @@ > -# The CPU models from this file are now built-in in the QEMU source code Reviewed-by: Igor Mammedov