From patchwork Wed Jun 12 21:41:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 250891 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 77E1A2C009D for ; Thu, 13 Jun 2013 07:51:52 +1000 (EST) Received: from localhost ([::1]:49412 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmsxK-0003qU-Is for incoming@patchwork.ozlabs.org; Wed, 12 Jun 2013 17:51:50 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmsrH-0006Id-5k for qemu-devel@nongnu.org; Wed, 12 Jun 2013 17:45:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmsrG-00015p-1h for qemu-devel@nongnu.org; Wed, 12 Jun 2013 17:45:35 -0400 Received: from mail-ie0-x236.google.com ([2607:f8b0:4001:c03::236]:36944) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmsrF-00015Y-Tg; Wed, 12 Jun 2013 17:45:33 -0400 Received: by mail-ie0-f182.google.com with SMTP id s9so9944667iec.13 for ; Wed, 12 Jun 2013 14:45:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=1sULAsuufuZpAil32Aa1RgKCJYw5x6KEoVX1rhZm6ME=; b=Jiu1F/FTNU0C7YW3McHZq2FHkOjJnNMJP+px2fBW0b1nBPcQuyR5ju/tS0v+e4fmhX SKRAla2jN3NGF2HtjpCJ/sg9w+zbJsY6qTBKZpmv+xw4EG9VRo2+ymuxV4zZFjuONocl KKOMxkOhB7CNuwBqMBqDOci7/bgfIytWGsFGoI3q27gSJBW83Y7exGZdNO2GRxryyP6A 4koBQUxnDqk6KQb2eAJSttwAgnntq6ozK6yWQS5lomlHINYDFJurY5h1msMVl6Sbseij HiHl3JojN1TzK9s906wsmJQpsM9n2hRxforSd79gNgD7f91ByvT1hkkM5kDzyPMlEFSH TxGw== X-Received: by 10.50.178.138 with SMTP id cy10mr4433150igc.92.1371073533226; Wed, 12 Jun 2013 14:45:33 -0700 (PDT) Received: from localhost ([32.97.110.51]) by mx.google.com with ESMTPSA id ji5sm1002851igb.0.2013.06.12.14.45.32 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 12 Jun 2013 14:45:32 -0700 (PDT) From: Michael Roth To: qemu-devel@nongnu.org Date: Wed, 12 Jun 2013 16:41:22 -0500 Message-Id: <1371073298-14519-11-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1371073298-14519-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1371073298-14519-1-git-send-email-mdroth@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c03::236 Cc: qemu-stable@nongnu.org Subject: [Qemu-devel] [PATCH 10/26] Revert "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 From: Gerd Hoffmann This reverts commit a5519b42cfd6c00e9f8b31c5aad7682e7a9f1181. Breaks "make bios" in roms/ as the kconfig version in seabios doesn't support olddefconfig. Must have been be totally untested. Signed-off-by: Gerd Hoffmann (cherry picked from commit 19cd090e17b293b49eec59346df94a668f5d2438) Signed-off-by: Michael Roth --- 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 4bb6c2b..98f59a2 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 olddefconfig +make -C seabios oldnoconfig