more Wiimmfi rework

This commit is contained in:
Christopher Roy Bratusek 2016-05-16 22:21:18 +02:00
parent 7558c66976
commit 28e2f9148a
3 changed files with 6 additions and 4 deletions

View File

@ -24,7 +24,9 @@ v6.1.0:
in ~/.patchimage.rc to use supplied tools, that the case in ~/.patchimage.rc to use supplied tools, that the case
on Debian GNU/Linux Stretch or Sid on Debian GNU/Linux Stretch or Sid
- update link to Wiimmfi-Patcher (Generic) - update link to Wiimmfi-Patcher (Generic)
- unused Patchimage uses "wit cp --wiimmfi" instead
- update link to Wiimmfi-Patcher (Mario Kart Wii) - update link to Wiimmfi-Patcher (Mario Kart Wii)
- update for Wiimmfi-Patcher script changes
v6.0.0: v6.0.0:
- update szs to version 1.40a - update szs to version 1.40a

View File

@ -2,7 +2,7 @@
GAME_TYPE="MKWIIMM" GAME_TYPE="MKWIIMM"
GAME_NAME="Mario Kart Wiimm" GAME_NAME="Mario Kart Wiimm"
DOWNLOAD_LINK="http://download.wiimm.de/wiimmfi/mkw-wiimmfi-patcher.7z" DOWNLOAD_LINK="http://download.wiimm.de/wiimmfi/patcher/mkw-wiimmfi-patcher-v3.7z"
show_notes () { show_notes () {
@ -49,7 +49,7 @@ wiimmfi () {
cd wiimmfi-patcher/ cd wiimmfi-patcher/
ln -s "${1}" . ln -s "${1}" .
./create-image.sh >/dev/null || exit 51 ./patch-wiimmfi.sh >/dev/null || exit 51
echo "*** 8) storing game in ${PATCHIMAGE_GAME_DIR}/${1##*/}" echo "*** 8) storing game in ${PATCHIMAGE_GAME_DIR}/${1##*/}"
mv ./wiimmfi-images/${1##*/} "${PATCHIMAGE_GAME_DIR}"/ mv ./wiimmfi-images/${1##*/} "${PATCHIMAGE_GAME_DIR}"/

View File

@ -51,7 +51,7 @@ patch_wiimm () {
fi fi
done done
./create-image.sh >/dev/null || \ ./patch-wiimmfi.sh >/dev/null || \
( echo "wiimmfi-ing the images failed." && exit 69 ) ( echo "wiimmfi-ing the images failed." && exit 69 )
mv -v ./wiimmfi-images/* "${PATCHIMAGE_GAME_DIR}"/ mv -v ./wiimmfi-images/* "${PATCHIMAGE_GAME_DIR}"/
@ -62,7 +62,7 @@ patch_wiimm () {
fi fi
ln -s ${IMAGE%/*}/${ID} . ln -s ${IMAGE%/*}/${ID} .
./create-image.sh >/dev/null || \ ./patch-wiimmfi.sh >/dev/null || \
( echo "wiimmfi-ing the image failed." && exit 69 ) ( echo "wiimmfi-ing the image failed." && exit 69 )
mv -v ./wiimmfi-images/${ID} "${PATCHIMAGE_GAME_DIR}"/ mv -v ./wiimmfi-images/${ID} "${PATCHIMAGE_GAME_DIR}"/
fi fi