summaryrefslogtreecommitdiff
path: root/src/import
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-11-18 17:09:20 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-11-19 19:08:15 +0100
commit53e1b683907c2f12330f00feb9630150196f064d (patch)
treefb2ae4b112f1ff0988e198c3815bf89059d68614 /src/import
parent5c856d1e6cfd005e458b7f78d5363e8dc0d2100a (diff)
downloadsystemd-53e1b683907c2f12330f00feb9630150196f064d.tar.gz
systemd-53e1b683907c2f12330f00feb9630150196f064d.tar.bz2
systemd-53e1b683907c2f12330f00feb9630150196f064d.zip
Add SPDX license identifiers to source files under the LGPL
This follows what the kernel is doing, c.f. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=5fd54ace4721fc5ce2bb5aef6318fcf17f421460.
Diffstat (limited to 'src/import')
-rw-r--r--src/import/curl-util.c1
-rw-r--r--src/import/curl-util.h1
-rw-r--r--src/import/export-raw.c1
-rw-r--r--src/import/export-raw.h1
-rw-r--r--src/import/export-tar.c1
-rw-r--r--src/import/export-tar.h1
-rw-r--r--src/import/export.c1
-rw-r--r--src/import/import-common.c1
-rw-r--r--src/import/import-common.h1
-rw-r--r--src/import/import-compress.c1
-rw-r--r--src/import/import-compress.h1
-rw-r--r--src/import/import-raw.c1
-rw-r--r--src/import/import-raw.h1
-rw-r--r--src/import/import-tar.c1
-rw-r--r--src/import/import-tar.h1
-rw-r--r--src/import/import.c1
-rw-r--r--src/import/importd.c1
-rw-r--r--src/import/pull-common.c1
-rw-r--r--src/import/pull-common.h1
-rw-r--r--src/import/pull-job.c1
-rw-r--r--src/import/pull-job.h1
-rw-r--r--src/import/pull-raw.c1
-rw-r--r--src/import/pull-raw.h1
-rw-r--r--src/import/pull-tar.c1
-rw-r--r--src/import/pull-tar.h1
-rw-r--r--src/import/pull.c1
-rw-r--r--src/import/qcow2-util.c1
-rw-r--r--src/import/qcow2-util.h1
-rw-r--r--src/import/test-qcow2.c1
29 files changed, 29 insertions, 0 deletions
diff --git a/src/import/curl-util.c b/src/import/curl-util.c
index 0e8f3fb918..7069c95a9f 100644
--- a/src/import/curl-util.c
+++ b/src/import/curl-util.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/curl-util.h b/src/import/curl-util.h
index a758cc5640..c7c24c9f7e 100644
--- a/src/import/curl-util.h
+++ b/src/import/curl-util.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/export-raw.c b/src/import/export-raw.c
index a3dbce1954..8485027b2b 100644
--- a/src/import/export-raw.c
+++ b/src/import/export-raw.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/export-raw.h b/src/import/export-raw.h
index 8e723d4908..f932a37955 100644
--- a/src/import/export-raw.h
+++ b/src/import/export-raw.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/export-tar.c b/src/import/export-tar.c
index 3bb6027431..dafe3e1c88 100644
--- a/src/import/export-tar.c
+++ b/src/import/export-tar.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/export-tar.h b/src/import/export-tar.h
index 1e3c8bb80c..5739ade09a 100644
--- a/src/import/export-tar.h
+++ b/src/import/export-tar.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/export.c b/src/import/export.c
index cc98c33ef6..753d1399f5 100644
--- a/src/import/export.c
+++ b/src/import/export.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/import-common.c b/src/import/import-common.c
index ae71682988..1bd5a8342d 100644
--- a/src/import/import-common.c
+++ b/src/import/import-common.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/import-common.h b/src/import/import-common.h
index 07d3250e71..55ec536406 100644
--- a/src/import/import-common.h
+++ b/src/import/import-common.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/import-compress.c b/src/import/import-compress.c
index 01b78fc9a6..cb5b9821c3 100644
--- a/src/import/import-compress.c
+++ b/src/import/import-compress.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/import-compress.h b/src/import/import-compress.h
index 6b59d0724b..1eac4d403a 100644
--- a/src/import/import-compress.h
+++ b/src/import/import-compress.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/import-raw.c b/src/import/import-raw.c
index 55cf8e8edd..6f4313420a 100644
--- a/src/import/import-raw.c
+++ b/src/import/import-raw.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/import-raw.h b/src/import/import-raw.h
index 4f543e0883..1e0227ab55 100644
--- a/src/import/import-raw.h
+++ b/src/import/import-raw.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/import-tar.c b/src/import/import-tar.c
index ba140bccbd..c5014499ac 100644
--- a/src/import/import-tar.c
+++ b/src/import/import-tar.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/import-tar.h b/src/import/import-tar.h
index 24abe06c8f..44743c9cb3 100644
--- a/src/import/import-tar.h
+++ b/src/import/import-tar.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/import.c b/src/import/import.c
index 2b6ca24af8..cc454ee15b 100644
--- a/src/import/import.c
+++ b/src/import/import.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/importd.c b/src/import/importd.c
index e23d6d0c80..9c7694c0ad 100644
--- a/src/import/importd.c
+++ b/src/import/importd.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/pull-common.c b/src/import/pull-common.c
index 78840dd882..e5d47b8a13 100644
--- a/src/import/pull-common.c
+++ b/src/import/pull-common.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/pull-common.h b/src/import/pull-common.h
index f1f1a17fa9..14c81fb1f1 100644
--- a/src/import/pull-common.h
+++ b/src/import/pull-common.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/pull-job.c b/src/import/pull-job.c
index 995a652ec3..2b71766798 100644
--- a/src/import/pull-job.c
+++ b/src/import/pull-job.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/pull-job.h b/src/import/pull-job.h
index 412b66cf22..e8becdc002 100644
--- a/src/import/pull-job.h
+++ b/src/import/pull-job.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/pull-raw.c b/src/import/pull-raw.c
index b45ac814a9..8cab72495c 100644
--- a/src/import/pull-raw.c
+++ b/src/import/pull-raw.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/pull-raw.h b/src/import/pull-raw.h
index 6954d98994..c951fc25c1 100644
--- a/src/import/pull-raw.h
+++ b/src/import/pull-raw.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/pull-tar.c b/src/import/pull-tar.c
index 12211a6fc6..ed91511245 100644
--- a/src/import/pull-tar.c
+++ b/src/import/pull-tar.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/pull-tar.h b/src/import/pull-tar.h
index 7e63e496d8..9f004acdc6 100644
--- a/src/import/pull-tar.h
+++ b/src/import/pull-tar.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/pull.c b/src/import/pull.c
index 4af5d9c853..46e0fd5acb 100644
--- a/src/import/pull.c
+++ b/src/import/pull.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/qcow2-util.c b/src/import/qcow2-util.c
index 00734865b2..7e37bf4026 100644
--- a/src/import/qcow2-util.c
+++ b/src/import/qcow2-util.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.
diff --git a/src/import/qcow2-util.h b/src/import/qcow2-util.h
index 6dddac8cdf..ae1fb8fd38 100644
--- a/src/import/qcow2-util.h
+++ b/src/import/qcow2-util.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
diff --git a/src/import/test-qcow2.c b/src/import/test-qcow2.c
index b820253d71..428191d18e 100644
--- a/src/import/test-qcow2.c
+++ b/src/import/test-qcow2.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd.