From patchwork Thu Oct 16 16:49:51 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5149841 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 11C2EC11AC for ; Fri, 24 Oct 2014 21:27:19 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4F58220268 for ; Fri, 24 Oct 2014 21:27:18 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 7C315201C7 for ; Fri, 24 Oct 2014 21:27:17 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 560F96E730; Fri, 24 Oct 2014 14:24:17 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by gabe.freedesktop.org (Postfix) with ESMTP id 3A1936E2B5 for ; Thu, 16 Oct 2014 09:50:04 -0700 (PDT) Received: by mail-wg0-f47.google.com with SMTP id x13so4207963wgg.30 for ; Thu, 16 Oct 2014 09:50:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=lZsHEZ8EH8pQWmacE9CyDp1jly63TTrHECAFW68hPr4=; b=da5BB50pkMIls0ib8CUXcLcypTaOTCHurtKusFfKv2jhBg1vYafC8x1BxrGXUFOCZ+ kSZp7UqrReWDkq+sh0TmrqR8BJ4wrfVu1GFTutlhDd0rxZDg/Ll4EGXucAkMKRFZD5eI rT8CBX2x4NA7xyv7pNeMkmROwwrmO28vDW515fqEjQ2BNBuKTOxz0aCrHbiyACulsPEX Fh6MFW9S7SQRD4JntX/d8+wQI+Pz3rG0rvPIG90p4IowMS7oKtxS4pyoqT1ZwZs2jCOY qsmXDlbG74/xrd6p3fzHEUUPzqdOno2q7ezbE4WNjtvH5ceJy8xAkx5q1Oii7depIuBX KMZA== X-Gm-Message-State: ALoCoQljVk7oX7KjDHXFkwo72xrPx8mjnb3g/bW9oRnOmDTUVLvqApQbixN9dlOjCd62IDnUVnwW X-Received: by 10.194.6.233 with SMTP id e9mr3821610wja.20.1413478203441; Thu, 16 Oct 2014 09:50:03 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id ic4sm2595840wid.19.2014.10.16.09.50.01 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 16 Oct 2014 09:50:02 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Thu, 16 Oct 2014 17:49:51 +0100 Message-Id: <1413478193-7970-6-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1413478193-7970-1-git-send-email-thomas.wood@intel.com> References: <1413478193-7970-1-git-send-email-thomas.wood@intel.com> Subject: [Intel-gfx] [PATCH i-g-t 5/7] configure: include the skylake quick_dump files in EXTRA_DIST X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-3.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY, URIBL_BLACK autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Thomas Wood --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9cdd202..03e856d 100644 --- a/configure.ac +++ b/configure.ac @@ -201,7 +201,7 @@ fi AM_CONDITIONAL(BUILD_TESTS, [test "x$BUILD_TESTS" = xyes]) AC_DEFINE_UNQUOTED(TARGET_CPU_PLATFORM, ["$host_cpu"], [Target platform]) -files="broadwell cherryview haswell ivybridge sandybridge valleyview" +files="broadwell cherryview haswell ivybridge sandybridge valleyview skylake" for file in $files; do QUICK_DUMP_EXTRA_DIST="$QUICK_DUMP_EXTRA_DIST $file `tr '\n' ' ' < tools/quick_dump/$file`" done