aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Ojeda <ojeda@kernel.org>2022-05-28 17:31:31 +0200
committerJonathan Corbet <corbet@lwn.net>2022-06-01 09:32:45 -0600
commitfae35da4ace3721dfba1b3986a9239fc85cf8c72 (patch)
tree0b0faff5b7e57fa0361c390cc139a42eee546ed5
parent938285a130ecafd9da71f6a28058722bb831b31d (diff)
downloadlinux-fae35da4ace3721dfba1b3986a9239fc85cf8c72.tar.gz
docs: move Linux logo into a new `images` folder
Having assets in the top-level `Documentation` directory can make it harder to find the documents one needs, especially if we want to add more of them later on. Instead, create a new `images` folder inside it that is used to hold assets such as logos. In addition, update the reference in `scripts/spdxcheck-test.sh`. Link: https://lore.kernel.org/lkml/8735hicoy7.fsf@meer.lwn.net/ Suggested-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Miguel Ojeda <ojeda@kernel.org> Link: https://lore.kernel.org/r/20220528153132.8636-1-ojeda@kernel.org Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r--Documentation/images/COPYING-logo (renamed from Documentation/COPYING-logo)0
-rw-r--r--Documentation/images/logo.gif (renamed from Documentation/logo.gif)bin16335 -> 16335 bytes
-rw-r--r--scripts/spdxcheck-test.sh2
3 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/COPYING-logo b/Documentation/images/COPYING-logo
index b21c7cf7d9f658..b21c7cf7d9f658 100644
--- a/Documentation/COPYING-logo
+++ b/Documentation/images/COPYING-logo
diff --git a/Documentation/logo.gif b/Documentation/images/logo.gif
index 2eae75fecfb965..2eae75fecfb965 100644
--- a/Documentation/logo.gif
+++ b/Documentation/images/logo.gif
Binary files differ
diff --git a/scripts/spdxcheck-test.sh b/scripts/spdxcheck-test.sh
index cb76324756bd30..9f6d1a74da6ef5 100644
--- a/scripts/spdxcheck-test.sh
+++ b/scripts/spdxcheck-test.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# run check on a text and a binary file
-for FILE in Makefile Documentation/logo.gif; do
+for FILE in Makefile Documentation/images/logo.gif; do
python3 scripts/spdxcheck.py $FILE
python3 scripts/spdxcheck.py - < $FILE
done