From patchwork Tue Sep 1 14:07:52 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 9436 X-Patchwork-Delegate: kieran.bingham@ideasonboard.com Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 7B5DDBF019 for ; Tue, 1 Sep 2020 14:08:01 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 10BD662929; Tue, 1 Sep 2020 16:08:01 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="X2D7SypF"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id CCDDD60376 for ; Tue, 1 Sep 2020 16:07:59 +0200 (CEST) Received: from Q.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E479D277; Tue, 1 Sep 2020 16:07:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1598969276; bh=k34RerfWC5EHX+GwPt7Nzty0SBOaprbeNfBBDmABDVY=; h=From:To:Cc:Subject:Date:From; b=X2D7SypFrMOIUKI82+nqRtdgITOKuPxsdYMNjJWPuPJsiTtYmnRMjRCTqHexgoVQJ gkmUMRGLe+f3rnDYzQ97e0PE0LN3Yl+lizUEPPYY8Z2Jxz6zvc3YQoXMnskr+kPzo/ 7l0BZVcHcHDf8BhuDkGqBmalUySJVUkOHpC0CzqQ= From: Kieran Bingham To: libcamera devel Date: Tue, 1 Sep 2020 15:07:52 +0100 Message-Id: <20200901140752.49347-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: pipelines: Print enabled pipelines X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Report the enabled pipelines when configuring the meson build hierarchy. This helps clarify what pipelines are used when building, and is useful when looking back through build-traces to see what was actually configured. Signed-off-by: Kieran Bingham --- This helps report enabled pipelines with the following examples visible during configuration phase: ... Configuring version.h using configuration Dependency libjpeg found: YES 2.0.3 (cached) Program openssl found: YES (/usr/bin/openssl) Message: Enabling pipeline: ipu3 Message: Enabling pipeline: raspberrypi Message: Enabling pipeline: rkisp1 Message: Enabling pipeline: simple Message: Enabling pipeline: uvcvideo Message: Enabling pipeline: vimc Library atomic found: YES Library dl found: YES ... src/libcamera/pipeline/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcamera/pipeline/meson.build b/src/libcamera/pipeline/meson.build index 46424493aa37..9eb66af59d79 100644 --- a/src/libcamera/pipeline/meson.build +++ b/src/libcamera/pipeline/meson.build @@ -1,5 +1,6 @@ # SPDX-License-Identifier: CC0-1.0 foreach pipeline : get_option('pipelines') + message('Enabling pipeline: ' + pipeline) subdir(pipeline) endforeach