diff --git a/merge-kfmon.sh b/merge-kfmon.sh index 330fb21..d3079e9 100755 --- a/merge-kfmon.sh +++ b/merge-kfmon.sh @@ -1,8 +1,12 @@ # taken from NiLuJe's autopatch.sh: http://trac.ak-team.com/trac/browser/niluje/Configs/trunk/Kindle/Kobo_Hacks/Patches/autopatch.sh -gunzip -c ../kfmon/Release/KoboRoot.tgz > KFMon.tar +echo "Uncompressing tarballs" +gunzip -c bin/KFmon.tgz > KFMon.tar gunzip -c out/KoboRoot.tgz > KoboPatch.tar +echo "Merging tarballs" tar -Avf KFMon.tar KoboPatch.tar +echo "Compressing merged tarball" gzip KFMon.tar +echo "Collecting garbage" rm out/KoboRoot.tgz KoboPatch.tar -mv -v KFMon.tar.gz KoboRoot.tgz +mv -v KFMon.tar.gz out/KoboRoot.tgz