rom.sh: remove unnecessary logic from copyps1bios

the .git directory never exists anyway, when doing a release,
so the purpose this is intended is defeated by lbmk's design.

individual headers say "pcsx-redux team" as copyright anyway,
and the code for generating that COPYING file, with MIT license
and correct years (matching the entire source code for the
open bios) remains correct.

a mitigation instead of this patch might be to maintain a hardcoded
list of authors, and manually update it over time, but this is not
required. however, it may be good practise for upstream to maintain
such a file. perhaps i should contact them?

Signed-off-by: Leah Rowe <leah@libreboot.org>
master
Leah Rowe 2024-10-20 00:13:35 +01:00
parent 56495c61e6
commit 3f63c6d12f
1 changed files with 0 additions and 5 deletions

View File

@ -33,11 +33,6 @@ copyps1bios()
printf "MIT License\n\nCopyright (c) 2019-2024 PCSX-Redux authors\n\n" \
> bin/playstation/COPYING.txt || $err "!pcsx-redux copyright"
cat config/snippet/mit >>bin/playstation/COPYING.txt || $err "!pcsx MIT"
if [ -e "src/pcsx-redux/.git" ]; then
git -C src/pcsx-redux/src/mips/openbios shortlog -sne > \
bin/playstation/AUTHORS.txt || $err "!pcsx-redux authors"
fi
}
mkpayload_grub()