From patchwork Wed Sep 28 12:09:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 17449 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 BB44CBD16B for ; Wed, 28 Sep 2022 12:09:41 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 2B6FE622A7; Wed, 28 Sep 2022 14:09:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1664366981; bh=cjA3jseXhUVzW3FR46rVnaikIiMiGqqIGY1PAmIMzOk=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=mYNv6KjUZCFVBU3FxE9s2hIw1LE8XEcNRZWF34mPTyAaNGjgLbHkF1/m4x68RMHUE jn2d75Og31B5AoNaugjZT6gMjppoAE2pztr+C4Ek3aoG/M/AhpHqoIBdNKmdUKMnMT wOqw4My2FvbJN0vc2XmpZFs/TD5mUf3EfgfjQYVQCiCKAYl6fHs0jndVIpT42xO+w5 30+jaPQq7Q2rGlhbiJPqQbgtPGX2FT/S0zzvr5vDVFgomRdw1JBoyfABHN7ahsGIL+ NNp3CWUi+gPNrAdgFtx3CUzty0+egkyII2w7M1rs8xQPArxiKY1krWhE5DZEiTWvju 0o5WIPARNEyZA== 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 986A06224C for ; Wed, 28 Sep 2022 14:09:39 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="i13T2Qm1"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CBCBA47C for ; Wed, 28 Sep 2022 14:09:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1664366979; bh=cjA3jseXhUVzW3FR46rVnaikIiMiGqqIGY1PAmIMzOk=; h=From:To:Subject:Date:From; b=i13T2Qm130Z5xACzP2iMcrTt/cMc7kaQTMHhT1Mah3+hL8cvOnjQRPRvH6CiLBcEh qYSSlTyxvDXEG03fEGHU84FhgQ9lh9+Lnfj7NoOpAC2mItV60fDxoua/K+Rwu9G6XB SGyEFMlC7BilTdFFrQLFEJv0wnhjMBgbHRG5TGEk= To: libcamera-devel@lists.libcamera.org Date: Wed, 28 Sep 2022 15:09:32 +0300 Message-Id: <20220928120937.10031-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 0/5] libcamera: Add missing license identifiers 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-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Hello, I've noticed that quite a few files are missing license information. This series fixes it. Please see individual patches for details. Laurent Pinchart (5): Documentation: Add missing SPDX headers Documentation: theme: Specify license of search.png android: Add missing SPDX headers to Android headers utils: raspberrypi: Add missing SPDX header to delayedctrls_parse.py libcamera: Add missing SPDX headers for miscellaneous CC0-1.0 contents .clang-tidy | 2 + .reuse/dep5 | 4 + Documentation/getting-started.rst | 1 + LICENSES/CC-BY-4.0.txt | 156 ++++++++++++++++++ .../core/include/system/graphics-base-v1.0.h | 1 + .../core/include/system/graphics-base-v1.1.h | 1 + .../core/include/system/graphics-base.h | 1 + .../system/core/include/system/graphics-sw.h | 1 + src/android/data/nautilus/camera_hal.yaml | 2 + src/android/data/soraka/camera_hal.yaml | 2 + src/ipa/ipu3/ipu3-ipa-design-guide.rst | 2 + src/py/meson.build | 2 + subprojects/.gitignore | 2 + subprojects/gtest.wrap | 2 + subprojects/libyaml.wrap | 2 + subprojects/libyuv.wrap | 2 + subprojects/pybind11.wrap | 2 + utils/raspberrypi/delayedctrls_parse.py | 2 + 18 files changed, 187 insertions(+) create mode 100644 LICENSES/CC-BY-4.0.txt Reviewed-by: Jacopo Mondi