From patchwork Thu Jun 25 19:59:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 488536 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 217801401E7 for ; Fri, 26 Jun 2015 06:00:32 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=nSloVLrj; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5E1CFA41EA; Thu, 25 Jun 2015 20:00:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kb3bZ9UwfX62; Thu, 25 Jun 2015 20:00:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 62174A41A8; Thu, 25 Jun 2015 20:00:26 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 124E21CE508 for ; Thu, 25 Jun 2015 20:00:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0E521A4121 for ; Thu, 25 Jun 2015 20:00:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SuCPeAGK7o7k for ; Thu, 25 Jun 2015 20:00:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 5E63CA419E for ; Thu, 25 Jun 2015 20:00:15 +0000 (UTC) Received: by wgck11 with SMTP id k11so71613703wgc.0 for ; Thu, 25 Jun 2015 13:00:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=zU7C2nB6x6SXZeOCjwjiUnG+UtzgAJpofjb41opxQZo=; b=nSloVLrjppgU2uwvaRda8rF8mgnAWYm83QZyhBPYylcI9B88jH4lFFQFND2bVRGStO X4vQe2XyZglz5jsivjfW2jHNW2lhERuw9oL5TXnLXc5lgm/82bN8LcCOEDyAhkRGXD+2 x4rFovMlxyJznZvW6ZAjw6bxklLAW8pobGNkNSVyJwp3VyYlN3nwAFnrr5+s0eW0AqR1 LNrndPixaZqcLuqX4yYXiIA8befZuIzMVdBofZLOy1Q5VeHctpwQO6EdA2+QvKkUBwO8 PSAtja6TmR3zYX8XuOU31WWnszCgxRzzHfl6Vljp3yBirIssQjZrrxG/OYfUxI49KqGm gurw== X-Received: by 10.180.104.129 with SMTP id ge1mr4018489wib.84.1435262414102; Thu, 25 Jun 2015 13:00:14 -0700 (PDT) Received: from bobook.localdomain (ivr94-4-82-229-165-48.fbx.proxad.net. [82.229.165.48]) by mx.google.com with ESMTPSA id hn7sm47218600wjc.16.2015.06.25.13.00.13 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 25 Jun 2015 13:00:13 -0700 (PDT) From: Samuel Martin To: buildroot@buildroot.org Date: Thu, 25 Jun 2015 21:59:48 +0200 Message-Id: <1435262397-888-8-git-send-email-s.martin49@gmail.com> X-Mailer: git-send-email 2.4.4 In-Reply-To: <1435262397-888-1-git-send-email-s.martin49@gmail.com> References: <1435262397-888-1-git-send-email-s.martin49@gmail.com> Cc: "Yann E. Morin" Subject: [Buildroot] [PATCH v6 07/16] package/opencv: disable all modules by default X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" This change allows to reduce the size of the default OpenCV package, so the final root filesystem. However, this will break any existing defconfig enabling OpenCV. Indeed, a minimal OpenCV package will be built, whereas, prior to applying this patches, a full-featured one would have been built instead. Cc: "Yann E. Morin" Signed-off-by: Samuel Martin --- changes v5->v6: - new patch --- package/opencv/Config.in | 5 ----- 1 file changed, 5 deletions(-) diff --git a/package/opencv/Config.in b/package/opencv/Config.in index ce67f0c..3c00525 100644 --- a/package/opencv/Config.in +++ b/package/opencv/Config.in @@ -93,7 +93,6 @@ comment "opencv_python module requires numpy which is not yet available." config BR2_PACKAGE_OPENCV_LIB_SHAPE bool "shape" - default y # opencv_core dependency is already enabled select BR2_PACKAGE_OPENCV_LIB_IMGPROC select BR2_PACKAGE_OPENCV_LIB_VIDEO @@ -103,7 +102,6 @@ config BR2_PACKAGE_OPENCV_LIB_SHAPE config BR2_PACKAGE_OPENCV_LIB_STITCHING bool "stitching" - default y select BR2_PACKAGE_OPENCV_LIB_CALIB3D select BR2_PACKAGE_OPENCV_LIB_FEATURES2D select BR2_PACKAGE_OPENCV_LIB_IMGPROC @@ -113,7 +111,6 @@ config BR2_PACKAGE_OPENCV_LIB_STITCHING config BR2_PACKAGE_OPENCV_LIB_SUPERRES bool "superres" - default y select BR2_PACKAGE_OPENCV_LIB_IMGPROC select BR2_PACKAGE_OPENCV_LIB_VIDEO help @@ -121,7 +118,6 @@ config BR2_PACKAGE_OPENCV_LIB_SUPERRES config BR2_PACKAGE_OPENCV_LIB_TS bool "ts" - default y # opencv_core dependency is already enabled select BR2_PACKAGE_OPENCV_LIB_HIGHGUI select BR2_PACKAGE_OPENCV_LIB_IMGCODECS @@ -145,7 +141,6 @@ config BR2_PACKAGE_OPENCV_LIB_VIDEO config BR2_PACKAGE_OPENCV_LIB_VIDEOSTAB bool "videostab" - default y select BR2_PACKAGE_OPENCV_LIB_CALIB3D select BR2_PACKAGE_OPENCV_LIB_FEATURES2D select BR2_PACKAGE_OPENCV_LIB_IMGPROC