yocto-docs: Add SPDX headers in scripts and Makefile

[Yocto #13873]

(From yocto-docs rev: b87c540a1a6c0dce4c6010b89d9831442e0e7f70)

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
akuster 2020-05-31 13:39:48 -07:00 committed by Richard Purdie
parent 109a501faf
commit 2f9cf90ac8
5 changed files with 16 additions and 14 deletions

View File

@ -1,3 +1,6 @@
#
# SPDX-License-Identifier: CC-BY-2.0-UK
#
# This is a single Makefile to handle all generated Yocto Project documents, # This is a single Makefile to handle all generated Yocto Project documents,
# which includes the BitBake User Manual and the Toaster User Manual. # which includes the BitBake User Manual and the Toaster User Manual.
# The Makefile needs to live in the documents directory and all figures used # The Makefile needs to live in the documents directory and all figures used

View File

@ -1,3 +1,6 @@
#
# SPDX-License-Identifier: CC-BY-2.0-UK
#
# Process poky-ref-manual and yocto-project-qs manual (<word>-<word>-<word> style) # Process poky-ref-manual and yocto-project-qs manual (<word>-<word>-<word> style)
# For example: # For example:
# "ulink" href="http://www.yoctoproject.org/docs/1.3/poky-ref-manual/poky-ref-manual.html#faq" # "ulink" href="http://www.yoctoproject.org/docs/1.3/poky-ref-manual/poky-ref-manual.html#faq"

View File

@ -1,3 +1,6 @@
#
# SPDX-License-Identifier: CC-BY-2.0-UK
#
# Processes bitbake-user-manual (<word>-<word>-<word> style). # Processes bitbake-user-manual (<word>-<word>-<word> style).
# This style is for manual three-word folders, which currently is only the BitBake User Manual. # This style is for manual three-word folders, which currently is only the BitBake User Manual.
# We used to have the "yocto-project-qs" and "poky-ref-manual" folders but no longer do. # We used to have the "yocto-project-qs" and "poky-ref-manual" folders but no longer do.

View File

@ -1,4 +1,7 @@
#!/bin/sh #!/bin/sh
#
# SPDX-License-Identifier: CC-BY-2.0-UK
#
if [ -z "$1" -o -z "$2" ]; then if [ -z "$1" -o -z "$2" ]; then
echo "usage: [-v] $0 <docbook file> <templatedir>" echo "usage: [-v] $0 <docbook file> <templatedir>"

View File

@ -1,23 +1,13 @@
#!/usr/bin/env python #!/usr/bin/env python
#
# SPDX-License-Identifier: GPL-2.0-only
#
# documentation.conf update script # documentation.conf update script
# #
# Author: Paul Eggleton <paul.eggleton@linux.intel.com> # Author: Paul Eggleton <paul.eggleton@linux.intel.com>
# #
# Copyright (C) 2015 Intel Corporation # Copyright (C) 2015 Intel Corporation
# #
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import sys import sys