mirror of
https://github.com/MiSTer-devel/CDi_MiSTer.git
synced 2026-04-19 03:04:19 +00:00
- 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.
11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/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"
|
|
|