From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33782) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAKth-0005rv-QX for qemu-devel@nongnu.org; Wed, 21 Mar 2012 08:44:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SAKtX-0001us-Vj for qemu-devel@nongnu.org; Wed, 21 Mar 2012 08:44:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58028) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAKtX-0001ui-Ll for qemu-devel@nongnu.org; Wed, 21 Mar 2012 08:44:03 -0400 Message-ID: <4F69CD0E.5090809@redhat.com> Date: Wed, 21 Mar 2012 13:43:58 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1332274504-10437-1-git-send-email-ehabkost@redhat.com> <1332274504-10437-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1332274504-10437-3-git-send-email-ehabkost@redhat.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/3] qemu-options.hx: refer to confdir instead of sysconfdir on docs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: qemu-devel@nongnu.org, Anthony Liguori Il 20/03/2012 21:15, Eduardo Habkost ha scritto: > The current docs are wrong: ${sysconfdir} is (by default) /etc, > ${confdir} is (by default) /etc/qemu, that's where the config files are > stored. > > Signed-off-by: Eduardo Habkost > --- > qemu-options.hx | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/qemu-options.hx b/qemu-options.hx > index daefce3..39578f1 100644 > --- a/qemu-options.hx > +++ b/qemu-options.hx > @@ -2676,8 +2676,8 @@ DEF("nodefconfig", 0, QEMU_OPTION_nodefconfig, > STEXI > @item -nodefconfig > @findex -nodefconfig > -Normally QEMU loads a configuration file from @var{sysconfdir}/qemu.conf and > -@var{sysconfdir}/target-@var{ARCH}.conf on startup. The @code{-nodefconfig} > +Normally QEMU loads a configuration file from @var{confdir}/qemu.conf and > +@var{confdir}/target-@var{ARCH}.conf on startup. The @code{-nodefconfig} > option will prevent QEMU from loading these configuration files at startup. > ETEXI > DEF("trace", HAS_ARG, QEMU_OPTION_trace, There's no definition of confdir and sysconfdir in the documentation. Perhaps writing @var{sysconfdir}/qemu/qemu.conf is better for now? Paolo