From patchwork Tue Dec 9 14:50:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 419127 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 5950014009B for ; Wed, 10 Dec 2014 01:55:56 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 378B34B690; Tue, 9 Dec 2014 15:53:52 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ShwtLrwPs-7f; Tue, 9 Dec 2014 15:53:52 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 94CA24B657; Tue, 9 Dec 2014 15:53:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 782EA4B667 for ; Tue, 9 Dec 2014 15:52:23 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SCNlcWXdrHSZ for ; Tue, 9 Dec 2014 15:52:23 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47]) by theia.denx.de (Postfix) with ESMTPS id 147A04B662 for ; Tue, 9 Dec 2014 15:52:23 +0100 (CET) Received: by mail-pa0-f47.google.com with SMTP id kq14so694468pab.20 for ; Tue, 09 Dec 2014 06:52:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:in-reply-to:references; bh=4VqXXJvUQV3fCUKIjqwV3UwGZSqNSeazU5WaVMyAgIM=; b=gH5dIKfhBF6EGHM5WW7rKD5TB7aLwds3CdUJAkf3YRwc2+k+6IqxyGmgPzPRQv+xiD MPROMIn2m5A4VqCrM4BfdSazH5zYPUSkrjUOm5sqFYBsffd9khTJ3yTeeKALtbaYKWRb SO+yiWYKoueuKXNbiaTPxhMc8a03Jqx0mCRYChM5/RjK+AqOB6Ymeg5SHM13/olePx/c 9Ee3R68Gfi9fjnndI5+8wcf0fWxA23608+NTnsZLm27/OT+N7RupbeirzIJiI86AKbSf wGvFqiILjDePnauBx1OGX+UEOpz7GsKKnWKm+ypIGqOaEQOnfLDP/SqAf6tmoeaxVQhZ HbCA== X-Received: by 10.66.120.47 with SMTP id kz15mr6024620pab.71.1418136741683; Tue, 09 Dec 2014 06:52:21 -0800 (PST) Received: from localhost ([106.120.101.38]) by mx.google.com with ESMTPSA id nv7sm1706875pdb.68.2014.12.09.06.52.20 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 09 Dec 2014 06:52:21 -0800 (PST) From: Bin Meng To: Simon Glass , U-Boot Mailing List Date: Tue, 9 Dec 2014 22:50:04 +0800 Message-Id: <1418136613-4909-19-git-send-email-bmeng.cn@gmail.com> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1418136613-4909-1-git-send-email-bmeng.cn@gmail.com> References: <1418136613-4909-1-git-send-email-bmeng.cn@gmail.com> Subject: [U-Boot] [PATCH v2 18/27] x86: Enable the queensbay cpu directory build X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.13 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Bin Meng Acked-by: Simon Glass --- Changes in v2: None arch/x86/cpu/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile index 7f09db5..5033d2b 100644 --- a/arch/x86/cpu/Makefile +++ b/arch/x86/cpu/Makefile @@ -15,6 +15,7 @@ obj-y += interrupts.o cpu.o call64.o obj-$(CONFIG_SYS_COREBOOT) += coreboot/ obj-$(CONFIG_NORTHBRIDGE_INTEL_SANDYBRIDGE) += ivybridge/ obj-$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE) += ivybridge/ +obj-$(CONFIG_INTEL_QUEENSBAY) += queensbay/ obj-y += lapic.o obj-$(CONFIG_PCI) += pci.o obj-y += turbo.o