docs: move Linux logo into a new `images` folder
authorMiguel Ojeda <ojeda@kernel.org>
Sat, 28 May 2022 15:31:31 +0000 (17:31 +0200)
committerJonathan Corbet <corbet@lwn.net>
Wed, 1 Jun 2022 15:32:45 +0000 (09:32 -0600)
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>
Documentation/COPYING-logo [deleted file]
Documentation/images/COPYING-logo [new file with mode: 0644]
Documentation/images/logo.gif [new file with mode: 0644]
Documentation/logo.gif [deleted file]
scripts/spdxcheck-test.sh

diff --git a/Documentation/COPYING-logo b/Documentation/COPYING-logo
deleted file mode 100644 (file)
index b21c7cf..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-This is the full-colour version of the currently unofficial Linux logo
-("currently unofficial" just means that there has been no paperwork and
-that I have not really announced it yet).  It was created by Larry Ewing,
-and is freely usable as long as you acknowledge Larry as the original
-artist. 
-
-Note that there are black-and-white versions of this available that
-scale down to smaller sizes and are better for letterheads or whatever
-you want to use it for: for the full range of logos take a look at
-Larry's web-page:
-
-       https://www.isc.tamu.edu/~lewing/linux/
-
diff --git a/Documentation/images/COPYING-logo b/Documentation/images/COPYING-logo
new file mode 100644 (file)
index 0000000..b21c7cf
--- /dev/null
@@ -0,0 +1,13 @@
+This is the full-colour version of the currently unofficial Linux logo
+("currently unofficial" just means that there has been no paperwork and
+that I have not really announced it yet).  It was created by Larry Ewing,
+and is freely usable as long as you acknowledge Larry as the original
+artist. 
+
+Note that there are black-and-white versions of this available that
+scale down to smaller sizes and are better for letterheads or whatever
+you want to use it for: for the full range of logos take a look at
+Larry's web-page:
+
+       https://www.isc.tamu.edu/~lewing/linux/
+
diff --git a/Documentation/images/logo.gif b/Documentation/images/logo.gif
new file mode 100644 (file)
index 0000000..2eae75f
Binary files /dev/null and b/Documentation/images/logo.gif differ
diff --git a/Documentation/logo.gif b/Documentation/logo.gif
deleted file mode 100644 (file)
index 2eae75f..0000000
Binary files a/Documentation/logo.gif and /dev/null differ
index cb76324..9f6d1a7 100644 (file)
@@ -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