From: Maxim Cournoyer Date: Fri, 13 Jan 2023 13:50:50 +0000 (-0500) Subject: patman: symlink top level .checkpatch.conf X-Git-Tag: v2025.01-rc5-pxa1908~1144^2 X-Git-Url: http://git.dujemihanovic.xyz/html/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=4c5907889553696160fabaa7e9f0c96ed1fa6597;p=u-boot.git patman: symlink top level .checkpatch.conf This makes it possible to run the patman test suite simply by invoking 'pytest' from the patman sub-directory: $ cd tools/patman $ pytest Otherwise, the top level .checkpatch.conf would be ignored and multiple test_checkpatch.py tests would fail. Signed-off-by: Maxim Cournoyer Reviewed-by: Simon Glass --- diff --git a/.gitignore b/.gitignore index eb769f144c..3adf1faf4e 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ # Normal rules (sorted alphabetically) # .* +!.checkpatch.conf *.a *.asn1.[ch] *.bin diff --git a/tools/patman/.checkpatch.conf b/tools/patman/.checkpatch.conf new file mode 120000 index 0000000000..c0e2020afe --- /dev/null +++ b/tools/patman/.checkpatch.conf @@ -0,0 +1 @@ +../../.checkpatch.conf \ No newline at end of file