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/images/COPYING-logo [moved from Documentation/COPYING-logo with 100% similarity]
Documentation/images/logo.gif [moved from Documentation/logo.gif with 100% similarity]
scripts/spdxcheck-test.sh

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