From patchwork Thu Mar 21 12:06:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 229636 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7B6BB2C00B9 for ; Thu, 21 Mar 2013 23:06:09 +1100 (EST) Received: from localhost ([::1]:48275 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UIeFz-000535-Ep for incoming@patchwork.ozlabs.org; Thu, 21 Mar 2013 08:06:07 -0400 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" To: qemu-devel@nongnu.org Message-ID: <20130321120615.GA32220@redhat.com> MIME-Version: 1.0 Content-Disposition: inline X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] roms: switch oldnoconfig to olddefconfig X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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