From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfZXU-0001eJ-B0 for qemu-devel@nongnu.org; Tue, 07 Apr 2015 15:52:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YfZXT-0002H6-Kc for qemu-devel@nongnu.org; Tue, 07 Apr 2015 15:52:00 -0400 Received: from mail-ob0-x236.google.com ([2607:f8b0:4003:c01::236]:33485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfZXT-0002Gm-FY for qemu-devel@nongnu.org; Tue, 07 Apr 2015 15:51:59 -0400 Received: by oblw8 with SMTP id w8so56384435obl.0 for ; Tue, 07 Apr 2015 12:51:59 -0700 (PDT) Sender: Corey Minyard From: minyard@acm.org Date: Tue, 7 Apr 2015 14:51:42 -0500 Message-Id: <1428436304-24044-14-git-send-email-minyard@acm.org> In-Reply-To: <1428436304-24044-1-git-send-email-minyard@acm.org> References: <1428436304-24044-1-git-send-email-minyard@acm.org> Subject: [Qemu-devel] [PATCH 13/15] configure: Copy some items from default configs to target configs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Corey Minyard From: Corey Minyard This is to get CONFIG_ACPI into the target config so devices that may use ACPI know to do this or not. Signed-off-by: Corey Minyard --- configure | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure b/configure index 09c9225..e301259 100755 --- a/configure +++ b/configure @@ -5073,6 +5073,9 @@ if test "$linux" = "yes" ; then fi fi +# Copy these from the default config to the target config +defconfig_to_target="CONFIG_ACPI" + for target in $target_list; do target_dir="$target" config_target_mak=$target_dir/config-target.mak @@ -5431,6 +5434,10 @@ fi echo "LDFLAGS+=$ldflags" >> $config_target_mak echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak +for i in $defconfig_to_target; do + grep $i $source_path/default-configs/${target}.mak >> $config_target_mak +done + done # for target in $targets if [ "$pixman" = "internal" ]; then -- 1.8.3.1