From patchwork Mon May 4 09:28:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3686 Return-Path: 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 6B52661758 for ; Mon, 4 May 2020 11:28:42 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="O7Pb9coR"; dkim-atps=neutral Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B340511FC; Mon, 4 May 2020 11:28:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1588584522; bh=eoOqXeesVEjAUZEjf1NoKwaZxGzmUN1vJebIbcb4bVw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=O7Pb9coRMDPciSMcTRZ4Xg4jKKh9VdznASIyWn4QefiAMtk1Rz4rsveR+Usf18bMZ 9LxLgeCMzp1o2Vmd66BC17fXPsXUYSMkbhQv8+dvk+VozIYCo/i+SrftZScEBAF1si RSGhwuwj+NZifAp17yFayj7KUH5kFo6uGoxkeUMk= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 4 May 2020 12:28:29 +0300 Message-Id: <20200504092829.10099-7-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200504092829.10099-1-laurent.pinchart@ideasonboard.com> References: <20200504092829.10099-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 6/6] libcamera: raspberrypi: Add components to meson build 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: , X-List-Received-Date: Mon, 04 May 2020 09:28:42 -0000 From: Naushir Patuck Add the Raspberry Pi pipeline handler and IPA as targets in the meson build system. Signed-off-by: Naushir Patuck Signed-off-by: Laurent Pinchart --- meson_options.txt | 2 +- src/ipa/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 6464df837cc3..2c7ab07bff91 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -14,7 +14,7 @@ option('gstreamer', option('pipelines', type : 'array', - choices : ['ipu3', 'rkisp1', 'uvcvideo', 'vimc'], + choices : ['ipu3', 'raspberrypi', 'rkisp1', 'uvcvideo', 'vimc'], description : 'Select which pipeline handlers to include') option('test', diff --git a/src/ipa/meson.build b/src/ipa/meson.build index 56e65eaa7426..e0f6e14afd3e 100644 --- a/src/ipa/meson.build +++ b/src/ipa/meson.build @@ -18,7 +18,7 @@ subdir('libipa') ipa_sign = find_program('ipa-sign.sh') -ipas = ['rkisp1', 'vimc'] +ipas = ['raspberrypi', 'rkisp1', 'vimc'] foreach pipeline : get_option('pipelines') if ipas.contains(pipeline)