From patchwork Tue Jul 30 22:02:53 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 20719 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 6BAB3BDC71 for ; Tue, 30 Jul 2024 22:03:17 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8C82F63374; Wed, 31 Jul 2024 00:03:16 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="QOpoknYS"; 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 CA06E61984 for ; Wed, 31 Jul 2024 00:03:14 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 48DFA6EF for ; Wed, 31 Jul 2024 00:02:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1722376947; bh=IibZv1WTPdfjtpJDaFyOKtl7GDVQkHgqTgL+sHvUznM=; h=From:To:Subject:Date:From; b=QOpoknYSUvMhdB38dIlx4Y0oBxbxRmla585jrln17XWgNm1uAwf3LjVR2loEbrvdT G3g7IKGbI6UxNMy8hu4OoQXZ3k7vkPSh2/4tj7B6QjNJmA6VIDlSfDLxvlKgfSVuUv eSD2y8YRGDZ1us/3s1WMgsPS0VZ6h2gtnt+qWXMM= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH] meson: Enable simple pipeline handler on all platforms by default Date: Wed, 31 Jul 2024 01:02:53 +0300 Message-ID: <20240730220253.646-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.44.2 MIME-Version: 1.0 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" The simple pipeline handler is enabled by default on arm platforms only, as it used to support arm SoCs only. Now that support for the IPU6 has been added to the pipeline handler, it should be enabled on x86 platforms as well. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Javier Martinez Canillas Reviewed-by: Kieran Bingham Reviewed-by: Hans de Goede --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: c9152bad5ce905f5a31dbd05b40195f02c0cc2a9 diff --git a/meson.build b/meson.build index f946eba94fc2..316abdb84e92 100644 --- a/meson.build +++ b/meson.build @@ -219,7 +219,7 @@ pipelines_support = { 'mali-c55': arch_arm, 'rkisp1': arch_arm, 'rpi/vc4': arch_arm, - 'simple': arch_arm, + 'simple': ['any'], 'uvcvideo': ['any'], 'vimc': ['test'], }