From patchwork Wed Apr 21 05:57:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshiaki Tamura X-Patchwork-Id: 93817 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o3L62Lmm005310 for ; Wed, 21 Apr 2010 06:02:44 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752094Ab0DUGCe (ORCPT ); Wed, 21 Apr 2010 02:02:34 -0400 Received: from sh.osrg.net ([192.16.179.4]:58787 "EHLO sh.osrg.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752096Ab0DUGCD (ORCPT ); Wed, 21 Apr 2010 02:02:03 -0400 Received: from fs.osrg.net (postfix@fs.osrg.net [10.0.0.12]) by sh.osrg.net (8.14.3/8.14.3/OSRG-NET) with ESMTP id o3L61QrM004087; Wed, 21 Apr 2010 15:01:27 +0900 Received: from localhost (hype-wd0.osrg.net [10.72.1.16]) by fs.osrg.net (Postfix) with ESMTP id 465933E02FC; Wed, 21 Apr 2010 15:01:25 +0900 (JST) From: Yoshiaki Tamura To: kvm@vger.kernel.org, qemu-devel@nongnu.org Cc: avi@redhat.com, aliguori@us.ibm.com, mtosatti@redhat.com, ohmura.kei@lab.ntt.co.jp, yoshikawa.takuya@oss.ntt.co.jp, Yoshiaki Tamura Subject: [RFC PATCH 15/20] Introduce FT mode support to configure. Date: Wed, 21 Apr 2010 14:57:20 +0900 Message-Id: <1271829445-5328-16-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> X-Mailer: git-send-email 1.7.0.31.g1df487 In-Reply-To: <1271829445-5328-1-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> References: <1271829445-5328-1-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> X-Dispatcher: imput version 20070423(IM149) Lines: 55 X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Wed, 21 Apr 2010 06:02:45 +0000 (UTC) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (sh.osrg.net [192.16.179.4]); Wed, 21 Apr 2010 15:01:27 +0900 (JST) X-Virus-Scanned: clamav-milter 0.95.3 at sh X-Virus-Status: Clean Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org diff --git a/configure b/configure index 046c591..f0682d4 100755 --- a/configure +++ b/configure @@ -298,6 +298,7 @@ bsd_user="no" guest_base="" uname_release="" io_thread="no" +ft_mode="no" mixemu="no" kvm_trace="no" kvm_cap_pit="" @@ -671,6 +672,8 @@ for opt do ;; --enable-io-thread) io_thread="yes" ;; + --enable-ft-mode) ft_mode="yes" + ;; --disable-blobs) blobs="no" ;; --kerneldir=*) kerneldir="$optarg" @@ -840,6 +843,7 @@ echo " --enable-vde enable support for vde network" echo " --disable-linux-aio disable Linux AIO support" echo " --enable-linux-aio enable Linux AIO support" echo " --enable-io-thread enable IO thread" +echo " --enable-ft-mode enable FT mode support" echo " --disable-blobs disable installing provided firmware blobs" echo " --kerneldir=PATH look for kernel includes in PATH" echo " --with-kvm-trace enable building the KVM module with the kvm trace option" @@ -2117,6 +2121,7 @@ echo "GUEST_BASE $guest_base" echo "PIE user targets $user_pie" echo "vde support $vde" echo "IO thread $io_thread" +echo "FT mode support $ft_mode" echo "Linux AIO support $linux_aio" echo "Install blobs $blobs" echo "KVM support $kvm" @@ -2318,6 +2323,9 @@ fi if test "$io_thread" = "yes" ; then echo "CONFIG_IOTHREAD=y" >> $config_host_mak fi +if test "$ft_mode" = "yes" ; then + echo "CONFIG_FT_MODE=y" >> $config_host_mak +fi if test "$linux_aio" = "yes" ; then echo "CONFIG_LINUX_AIO=y" >> $config_host_mak fi