total descendants:: total children::0 |
K tomu patchu - preistotu nevieme kolko tam bude ta stranka: #!/bin/sh echo "********************************************************************" echo "********************************************************************" echo "*** OS X x86 Edition - Patch #2 & #3 ***" echo "*** ***" echo "*** This patches the following: ***" echo "*** * Generic ATA chipsets support [#2] ***" echo "*** * Generic AC97 Audio support [#2] ***" echo "*** * PS2 Keyboard & Mouse support [#2] ***" echo "*** * Fixes some errors [#3] ***" echo "*** * Preliminary support for SSE2 [#3] ***" echo "********************************************************************" echo "Let's start..." #echo -n " gzipping the file [this should take a while]... " #gzip -v Archive.pax #echo "done." echo -n "Searching for your Marklar-Tiger.iso file..." if [ -x Marklar-Tiger.iso ]; then ISO="./" echo "found" else echo "not found!" echo "Where is your .iso file? [complete or relative path, no file name, no trailing slash]" read ISO if [ -x $ISO/Marklar-Tiger.iso ]; then mv $ISO/Marklar-Tiger.iso ./Marklar-Tiger.iso echo "Marklar-Tiger.iso found and moved to the current directory." else echo "ISO FILE NOT FOUND! Aborting!" exit 1 fi fi echo -n "Checking your initial MD5SUM... This will take _verry_ much" md5sum -c old.md5 if [ $? = 1 ]; then echo "Checksum not OK. Exiting" exit 1 fi echo -n "Mounting your Marklar-Tiger.iso file..." mount -o loop -t hfsplus Marklar-Tiger.iso iso_mnt/ echo "done." echo "Proceed with patching..." echo " 1. Archive.PAX" cp Archive.pax.gz iso_mnt/System/Installation/Packages/Essentials.pkg/Contents/ echo " 2. oah750d" cp --reply=yes oah750d iso_mnt/usr/libexec/oah/ echo " 3. Generic ATA Support" rm -rf iso_mnt/System/Library/Extensions/IOATAFamily.kext cp --reply=yes -R IOATAFamily.kext iso_mnt/System/Library/Extensions/ echo " 4. CoreGraphics SSE2" echo " - If you want to keep the SSE3 binary, run ./sse3" cp --reply=yes CoreGraphics iso_mnt/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/ echo " 5. Other extensions..." cp --reply=no -R Extensions/* iso_mnt/System/Library/Extensions/ cp -R IOHDIXController.kext iso_mnt/System/Library/Extensions/ cp -R DS.bundle iso_mnt/System/Library/PrivateFrameworks/NetInfo.framework/Versions/A/Resources/lookupd/Agents/ echo " DONE!!!" echo "REMEMBER TO CHECK FOR THE NFO FILE!!!" umount iso_mnt/ |
| |||||||||||||||||||||||