2013-05-22 00:11:07 -07:00
|
|
|
#!/bin/sh
|
2012-05-14 09:05:22 -07:00
|
|
|
# Compares baserom.gbc and pokecrystal.gbc
|
|
|
|
|
|
|
|
# create baserom.txt if necessary
|
2015-11-03 19:54:19 -08:00
|
|
|
crystal_md5=9f2922b235a5eeb78d65594e82ef5dde
|
|
|
|
if [ ! -f baserom.gbc ]; then
|
|
|
|
echo "FATAL: Baserom not found"
|
|
|
|
exit 1
|
2012-05-14 09:05:22 -07:00
|
|
|
fi
|
|
|
|
|
2015-11-03 19:54:19 -08:00
|
|
|
base_md5=`md5sum baserom.gbc | cut -d' ' -f1`
|
|
|
|
echo "baserom.gbc: $base_md5"
|
|
|
|
if [ $base_md5 != $crystal_md5 ]; then
|
|
|
|
echo "FATAL: Baserom is incorrect"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
built_md5=`md5sum pokecrystal.gbc | cut -d' ' -f1`
|
|
|
|
echo "pokecrystal.gbc: $built_md5"
|
|
|
|
if [ $built_md5 != $crystal_md5 ]
|
|
|
|
then
|
|
|
|
echo "Checksums do not match, here's where the ROMs differ..."
|
|
|
|
if [ ! -f baserom.txt ]; then
|
|
|
|
hexdump -C baserom.gbc > baserom.txt
|
|
|
|
fi
|
|
|
|
|
|
|
|
hexdump -C pokecrystal.gbc > pokecrystal.txt
|
|
|
|
|
|
|
|
diff -u baserom.txt pokecrystal.txt | less
|
|
|
|
else
|
|
|
|
echo "Checksums match! :D"
|
|
|
|
fi
|
2012-05-14 09:05:22 -07:00
|
|
|
|