You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
444 B
16 lines
444 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p build
|
|
|
|
cp -r data_source/* build
|
|
rm -f build/deleteme.txt
|
|
|
|
python3 tools/py/build_sys573_gamefs.py --input data_raw --input-modified-list data_modified/modified.json --base data_source --key DDR5 --output build --patch-dir data_modified
|
|
|
|
armips -definelabel SOLO_IO 1 src/main.asm
|
|
|
|
python3 tools/py/calc_checksum.py --input build/GAME.DAT build/CARD.DAT --output build
|
|
|
|
mkisofs -d -o ddr5thsolo_soloio.iso "build"
|
|
|