From patchwork Thu Jul 2 03:39:10 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 1320963 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49y3lQ1rLMz9sRN for ; Thu, 2 Jul 2020 13:40:34 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.a=rsa-sha256 header.s=201707 header.b=G3XhZwRr; dkim-atps=neutral Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 49y3lQ0mrVzDqmT for ; Thu, 2 Jul 2020 13:40:34 +1000 (AEST) X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 49y3kJ5ND8zDqlD for ; Thu, 2 Jul 2020 13:39:36 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=pass (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.a=rsa-sha256 header.s=201707 header.b=G3XhZwRr; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 49y3kJ1kMmz9sRN; Thu, 2 Jul 2020 13:39:36 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1593661176; bh=NZ1Vk6gnZfskbyLCqpp3g2nbhSzGcC0vIu9VI6RMzKA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=G3XhZwRroih2oWCM621AUZADkTZP057yXMOdbWw74SMnJEl/oAjtaQPv9IBXuRFw+ YKaUFpAZ71xOFrwV91b4DyANuoGrBFYY8Pv4ufCz7Z0d3+AwZE9hOymHs11fXILfBw 0xUfF46rPaebInDTRIy+5EIELuITCmzVhOI0tFclV/NRM6l0BDTOgkQRvPi6wznwt/ 8j/qeGoCBxqivr/OMGpNGOcVaH9nl33obyHZTjJDSTRsypaPta4Ox3rc6r5PjTweRy ScJmfVJ7VgHhvluTvdmS4wNDDrAKbguJG8zYZQhp4NnvQfLgyiN0UwZr5rD5ymyABG o7izPNSP65+8A== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Thu, 2 Jul 2020 13:39:10 +1000 Message-Id: <20200702033918.708013-12-amitay@ozlabs.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200702033918.708013-1-amitay@ozlabs.org> References: <20200702033918.708013-1-amitay@ozlabs.org> MIME-Version: 1.0 Subject: [Pdbg] [PATCH 11/19] Makefile: Include missing file in libpdbg sources X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index c49936f..a53f9cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -203,6 +203,7 @@ libpdbg_la_SOURCES = \ libpdbg/p8chip.c \ libpdbg/p9chip.c \ libpdbg/p9_fapi_targets.c \ + libpdbg/p9_scom_addr.h \ libpdbg/sbefifo.c \ libpdbg/sprs.h \ libpdbg/target.c \