From 6d2efbcbc3f936486b8bc7e2a70c02adbe387b7e Mon Sep 17 00:00:00 2001
From: Leah Rowe <leah@libreboot.org>
Date: Tue, 8 Oct 2024 16:16:30 +0100
Subject: [PATCH] build: actually build pcsx-redux bios on release

I added support earlier, on rom.sh, but the main build script
specifically defines which projects are to be compiled. I've
modified it so that pcsx-redux (just the BIOS part) will also
be compiled.

Signed-off-by: Leah Rowe <leah@libreboot.org>
---
 build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build b/build
index c1bd05a..db135bb 100755
--- a/build
+++ b/build
@@ -103,7 +103,7 @@ build_release()
 	touch "$srcdir/lock" || $err "can't make lock file in $srcdir/"
 	(
 	cd "$srcdir" || $err "$vdir: 2 !cd \"$srcdir\""
-	mk -b coreboot pico-serprog stm32-vserprog
+	mk -b coreboot pico-serprog stm32-vserprog pcsx-redux
 	x_ mv bin ../roms
 	) || $err "can't build rom images"