From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56504) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UIeFX-00052s-Rj for qemu-devel@nongnu.org; Thu, 21 Mar 2013 08:05:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UIeFT-0006La-H8 for qemu-devel@nongnu.org; Thu, 21 Mar 2013 08:05:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36658) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UIeFT-0006LJ-9f for qemu-devel@nongnu.org; Thu, 21 Mar 2013 08:05:35 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r2LC5YVZ000718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 21 Mar 2013 08:05:34 -0400 Received: from redhat.com (vpn1-4-244.ams2.redhat.com [10.36.4.244]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r2LC5W7q025527 for ; Thu, 21 Mar 2013 08:05:33 -0400 Date: Thu, 21 Mar 2013 14:06:15 +0200 From: "Michael S. Tsirkin" Message-ID: <20130321120615.GA32220@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] roms: switch oldnoconfig to olddefconfig List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org When a new option is added that qemu does not know about, the prudent thing is to use the default not force it to "no". Signed-off-by: Michael S. Tsirkin --- roms/configure-seabios.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roms/configure-seabios.sh b/roms/configure-seabios.sh index 98f59a2..4bb6c2b 100755 --- a/roms/configure-seabios.sh +++ b/roms/configure-seabios.sh @@ -2,4 +2,4 @@ config="$1" make -C seabios clean distclean cp "$config" seabios/.config -make -C seabios oldnoconfig +make -C seabios olddefconfig -- MST