0001-no-context-will-be-given.patch 950 B

12345678910111213141516171819202122232425262728293031323334353637
  1. From 6516ecaea03845cd07732bd4ca8c32cd08ea4281 Mon Sep 17 00:00:00 2001
  2. From: Leah Rowe <info@minifree.org>
  3. Date: Wed, 25 Sep 2024 23:45:56 +0100
  4. Subject: [PATCH 1/1] no context will be given.
  5. Signed-off-by: Leah Rowe <info@minifree.org>
  6. ---
  7. lbmkbofhmakefile | 16 ++++++++++++++++
  8. 1 file changed, 16 insertions(+)
  9. create mode 100644 lbmkbofhmakefile
  10. diff --git a/lbmkbofhmakefile b/lbmkbofhmakefile
  11. new file mode 100644
  12. index 00000000..fe2e36d2
  13. --- /dev/null
  14. +++ b/lbmkbofhmakefile
  15. @@ -0,0 +1,16 @@
  16. +# SPDX-License-Identifier: MIT
  17. +# SPDX-FileCopyrightText: 2024 Leah Rowe <leah@libreboot.org>
  18. +
  19. +# This is not the original pcsx-redux Makefile.
  20. +# We don't need to build all of PCSX-Redux, only the Open BIOS.
  21. +# Due to idiosyncrasies of lbmk's design, it's simpler to just hack
  22. +# the Makefile like this.
  23. +
  24. +all:
  25. + make -C src/mips/openbios
  26. +
  27. +clean:
  28. + make -C src/mips/openbios clean
  29. +
  30. +distclean:
  31. + make -C src/mips/openbios clean
  32. --
  33. 2.39.5