]> git.baikalelectronics.ru Git - kernel.git/commit
Fix up more non-executable files marked executable
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 28 Jan 2023 19:17:57 +0000 (11:17 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 1 Feb 2023 07:34:49 +0000 (08:34 +0100)
commit72854b8b03b00847b467230b3a58648f36ec0466
treec99f8c1577d1f71d0345f8a1ff7d599be03b933d
parent1feae070d45760576938e0ab7df5f8ace00a0cea
Fix up more non-executable files marked executable

[ Upstream commit 7e590fb2d9613283c711ba2908a9548c899b081a ]

Joe found another DT file that shouldn't be executable, and that
frustrated me enough that I went hunting with this script:

    git ls-files -s |
        grep '^100755' |
        cut -f2 |
        xargs grep -L '^#!'

and that found another file that shouldn't have been marked executable
either, despite being in the scripts directory.

Maybe these two are the last ones at least for now.  But I'm sure we'll
be back in a few years, fixing things up again.

Fixes: d1b1b7369500 ("ASoC: dt-bindings: Add Everest ES8326 audio CODEC")
Fixes: a22fad67c69b ("locking/atomics: Fix scripts/atomic/ script permissions")
Reported-by: Joe Perches <joe@perches.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Documentation/devicetree/bindings/sound/everest,es8326.yaml [changed mode: 0755->0644]
scripts/atomic/atomics.tbl [changed mode: 0755->0644]