Skip to content

Commit 6294903

Browse files
committed
dunno dont care at this point
1 parent e35bf4e commit 6294903

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

ext/config/pro1/r5.conf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ data_zip_dir=/game
1616

1717
[DS1963S_IN_DS2480B]
1818
# "Pump It Up Pro"
19-
authpage9=UG9vcCBJdCBVcCBQcm8=
19+
authpage9=UHVtcCBJdCBVcCBQcm8=
20+
21+
[CONTAINER]
22+
game_roms=game.sqfs

ext/plugin_deps/libflh.so

-283 KB
Binary file not shown.

ext/run_container.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ docker_args="run --device /dev/fuse --cap-add SYS_ADMIN --rm -it"
104104
# Add the Graphics Support Stuff
105105
docker_args+=" --gpus all -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY"
106106
# Add the Sound Stuff
107-
docker_args+=" -e PULSE_SERVER=$PULSE_SERVER -v /mnt/wslg/:/mnt/wslg/"
107+
if [ -e /mnt/wslg ]; then
108+
docker_args+=" -e PULSE_SERVER=$PULSE_SERVER -v /mnt/wslg/:/mnt/wslg/"
109+
fi
110+
# Allow ptrace (and disabling ASLR) for gdb and strace to work
111+
docker_args+=" --cap-add=SYS_PTRACE --security-opt seccomp=unconfined"
108112
# Add Our PIUTools Mounts
109113
docker_args+=" -v $piutools_native_path:$piutools_bin"
110114
docker_args+=" -v $piutools_native_rom_path:$piutools_rom:ro"

ext/tools/bootstrap_game.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cat $PIUTOOLS_PATH/tools/pump_arrows.graphic
55
#cat $PIUTOOLS_PATH/am.graphic
66
#cat $PIUTOOLS_PATH/pumplogo.graphic
77
# Set PIUTools Stuff
8-
mkdir $PIUTOOLS_TMP_PATH
8+
mkdir -p $PIUTOOLS_TMP_PATH
99

1010
# Read the list of gamedata roms and mount each.
1111
IFS=',' read -ra roms_array <<< "$PIUTOOLS_ROMS"
@@ -71,4 +71,4 @@ elif [ -n "$RUN_GAME" ]; then
7171
else
7272
unset LD_PRELOAD
7373
exec /bin/bash
74-
fi
74+
fi

src/plugins/pro1_data_zip/sig.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ int generate_file_signature(zip_enc_context *ctx, int fd,
134134
key_imported = 1;
135135
}
136136

137-
unsigned long sigout = 128;
137+
unsigned long sigout = 133;
138138

139139
if ((err = rsa_sign_hash_ex(filehash, 20, ctx->sig, &sigout, LTC_PKCS_1_V1_5, NULL, sprng_idx, sha1_idx, 0, &our_rsa_key)) != CRYPT_OK) {
140140
fprintf(stderr, "Could not sign hash: %s\n", error_to_string(err));

0 commit comments

Comments
 (0)