diff options
author | Leah Rowe <leah@libreboot.org> | 2024-10-20 00:13:35 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-10-20 00:13:35 +0100 |
commit | 3f63c6d12f6b9ad8e0d7846c313f5adfb46a942e (patch) | |
tree | cee5d46964a18cda36fdc6cb788369941fc70f0b /include/rom.sh | |
parent | 56495c61e6c2bd96cd885e1e594045f99dbb2aae (diff) |
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>
Diffstat (limited to 'include/rom.sh')
-rw-r--r-- | include/rom.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/rom.sh b/include/rom.sh index 808959d8..9d11e757 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -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() |