From patchwork Tue Mar 15 15:34:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Edgar E. Iglesias" X-Patchwork-Id: 87004 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2D759B7382 for ; Wed, 16 Mar 2011 03:08:17 +1100 (EST) Received: from localhost ([127.0.0.1]:34849 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzWn3-0006uW-HE for incoming@patchwork.ozlabs.org; Tue, 15 Mar 2011 12:08:09 -0400 Received: from [140.186.70.92] (port=56592 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzWgh-0004QZ-88 for qemu-devel@nongnu.org; Tue, 15 Mar 2011 12:01:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PzWgg-00034S-2Y for qemu-devel@nongnu.org; Tue, 15 Mar 2011 12:01:35 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:50750) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PzWgf-00033z-UB for qemu-devel@nongnu.org; Tue, 15 Mar 2011 12:01:34 -0400 Received: by fxm2 with SMTP id 2so772783fxm.4 for ; Tue, 15 Mar 2011 09:01:32 -0700 (PDT) Received: by 10.223.151.14 with SMTP id a14mr2362257faw.134.1300204843531; Tue, 15 Mar 2011 09:00:43 -0700 (PDT) Received: from localhost (proxy.se.axis.com [195.60.68.148]) by mx.google.com with ESMTPS id j12sm2135751fax.9.2011.03.15.09.00.42 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Mar 2011 09:00:42 -0700 (PDT) From: edgar.iglesias@petalogix.com To: qemu-devel@nongnu.org Date: Tue, 15 Mar 2011 16:34:16 +0100 Message-Id: <1300203258-18010-2-git-send-email-edgar.iglesias@petalogix.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1300203258-18010-1-git-send-email-edgar.iglesias@petalogix.com> References: <1300203258-18010-1-git-send-email-edgar.iglesias@petalogix.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.161.45 Cc: Michal Simek , edgar.iglesias@petalogix.com Subject: [Qemu-devel] [PATCH v2 1/3] microblaze: Compile uart 16550 serial driver X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Michal Simek Upcomming little endian platform will use 16550 serial driver. Signed-off-by: Michal Simek Signed-off-by: Edgar E. Iglesias --- default-configs/microblaze-softmmu.mak | 1 + default-configs/microblazeel-softmmu.mak | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/default-configs/microblaze-softmmu.mak b/default-configs/microblaze-softmmu.mak index 4399b8b..613edab 100644 --- a/default-configs/microblaze-softmmu.mak +++ b/default-configs/microblaze-softmmu.mak @@ -2,3 +2,4 @@ CONFIG_PTIMER=y CONFIG_PFLASH_CFI01=y +CONFIG_SERIAL=y diff --git a/default-configs/microblazeel-softmmu.mak b/default-configs/microblazeel-softmmu.mak index ddc6bf4..4b40fb2 100644 --- a/default-configs/microblazeel-softmmu.mak +++ b/default-configs/microblazeel-softmmu.mak @@ -2,3 +2,4 @@ CONFIG_PTIMER=y CONFIG_PFLASH_CFI01=y +CONFIG_SERIAL=y