From patchwork Thu Dec 4 15:03:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 417820 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 C048C1400E2 for ; Fri, 5 Dec 2014 02:04:03 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 33D574B653; Thu, 4 Dec 2014 16:03:38 +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 6cSynU3ty2VO; Thu, 4 Dec 2014 16:03:37 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 52D6D4B604; Thu, 4 Dec 2014 16:03:37 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7B1B54B66E for ; Thu, 4 Dec 2014 16:03:34 +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 0+xRR8bxxR7N for ; Thu, 4 Dec 2014 16:03:34 +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-f48.google.com (mail-pa0-f48.google.com [209.85.220.48]) by theia.denx.de (Postfix) with ESMTPS id 1964A4B605 for ; Thu, 4 Dec 2014 16:03:30 +0100 (CET) Received: by mail-pa0-f48.google.com with SMTP id rd3so18119027pab.7 for ; Thu, 04 Dec 2014 07:03:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=msmYTj7G4vJeUKk99th6NnCSqTCF9n0OrxwvJT6Su7Q=; b=N9DxGB73YVlCBiQYDok6HrXmtcz/lyRloFi8E/IbEWuMhTQktMbuJE1OT+W83vilFs V6v9yeDFKenjLbZGA0nQkS157F2G0TmT3RPGN7+T22YeesRFVwITsJIbQMonsi/vmYuO 8zqxLD0Uk6npHSrIyTC7YjrQobP/fpgRoU7QpGmJ0QW95tOMgLfgnw50uN3qOGlMq3eB EL8DW7X6N5UQ70ABm7ofFsdQeP7pFt+oid0HtBI5bRRm9oQS+aewKIpppAUrQu5Kd5f3 A6f6MXpe7aXTaXF5OBqUDbhh67ATehO91q4Cv8XDjbUZf/d2XJATFQrgCrBARfzLQFEY 6jqw== X-Received: by 10.66.66.196 with SMTP id h4mr18897391pat.127.1417705409161; Thu, 04 Dec 2014 07:03:29 -0800 (PST) Received: from localhost ([106.120.101.38]) by mx.google.com with ESMTPSA id xq4sm15928130pbb.21.2014.12.04.07.03.27 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 04 Dec 2014 07:03:28 -0800 (PST) From: Bin Meng To: Simon Glass , U-Boot Mailing List Date: Thu, 4 Dec 2014 23:03:23 +0800 Message-Id: <1417705403-19629-1-git-send-email-bmeng.cn@gmail.com> X-Mailer: git-send-email 1.8.2.1 Subject: [U-Boot] [PATCH 20/25] 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 --- 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