From: Miguel Ojeda Date: Sat, 28 May 2022 15:31:31 +0000 (+0200) Subject: docs: move Linux logo into a new `images` folder X-Git-Tag: v6.1-rc5~1172^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fae35da4ace3721dfba1b3986a9239fc85cf8c72;p=platform%2Fkernel%2Flinux-starfive.git 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 Signed-off-by: Miguel Ojeda Link: https://lore.kernel.org/r/20220528153132.8636-1-ojeda@kernel.org Signed-off-by: Jonathan Corbet --- diff --git a/Documentation/COPYING-logo b/Documentation/images/COPYING-logo similarity index 100% rename from Documentation/COPYING-logo rename to Documentation/images/COPYING-logo diff --git a/Documentation/logo.gif b/Documentation/images/logo.gif similarity index 100% rename from Documentation/logo.gif rename to Documentation/images/logo.gif diff --git a/scripts/spdxcheck-test.sh b/scripts/spdxcheck-test.sh index cb76324..9f6d1a7 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