Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Miguel Ojeda and committed by
Jonathan Corbet
fae35da4 938285a1

+1 -1
Documentation/logo.gif Documentation/images/logo.gif

This is a binary file and will not be displayed.

+1 -1
scripts/spdxcheck-test.sh
··· 1 1 #!/bin/sh 2 2 3 3 # run check on a text and a binary file 4 - for FILE in Makefile Documentation/logo.gif; do 4 + for FILE in Makefile Documentation/images/logo.gif; do 5 5 python3 scripts/spdxcheck.py $FILE 6 6 python3 scripts/spdxcheck.py - < $FILE 7 7 done