- First release on mister-devel
- Fix corrupted ROM content when VMPEG ROM is present
    - An existing boot2.rom has overwritten the base machine ROM before.
    - This fix places the VMPEG ROM at a separate and later unused location
      allowing to have a second CD-i core around which could make use of it
      without affecting the stable release.
This commit is contained in:
Andre Zeps
2025-06-14 01:35:32 +02:00
parent ef6fcc9824
commit ca0bc4b629
8 changed files with 17 additions and 0 deletions

BIN
releases/CDi_20250214.rbf Normal file

Binary file not shown.

BIN
releases/CDi_20250223.rbf Normal file

Binary file not shown.

BIN
releases/CDi_20250320.rbf Normal file

Binary file not shown.

BIN
releases/CDi_20250329.rbf Normal file

Binary file not shown.

BIN
releases/CDi_20250422.rbf Normal file

Binary file not shown.

BIN
releases/CDi_20250614.rbf Normal file

Binary file not shown.

7
scripts/copy_to_mister.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
release_filename=CDi_$(date '+%Y%m%d').rbf
scp output_files/CDi.rbf root@mister:/media/fat/$release_filename
echo "Created /media/fat/$release_filename on MiSTer !"

10
scripts/create_release.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
release_filename=CDi_$(date '+%Y%m%d').rbf
cp output_files/CDi.rbf releases/$release_filename
echo "Copied build to releases/$release_filename"