mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2025-01-25 06:31:14 +01:00
6a271836cd
- also switch back to usbmuxd from usbmuxd2 by default on linux - usbmuxd2 can still be used by using --use-usbmuxd2 arg - disable restoring a5(x) and newer devices on 10.11 el capitan. require 10.12 and newer for this
18 lines
1.4 KiB
Bash
18 lines
1.4 KiB
Bash
#!/bin/bash
|
|
set -x
|
|
mv /mnt1/usr/libexec/CrashHousekeeping /mnt1/usr/libexec/CrashHousekeeping_o
|
|
mv /mnt1/Library/LaunchDaemons/com.saurik.Cydia.Startup.plist /mnt1/System/Library/LaunchDaemons/com.saurik.Cydia.Startup.plist
|
|
rm -rf /mnt1/Library/LaunchDaemons
|
|
mv /mnt1/System/Library/LaunchDaemons /mnt1/Library/LaunchDaemons
|
|
mv /mnt1/System/Library/NanoLaunchDaemons /mnt1/Library/NanoLaunchDaemons
|
|
mkdir -p /mnt1/System/Library/LaunchDaemons
|
|
mv /mnt1/Library/LaunchDaemons/bootps.plist /mnt1/System/Library/LaunchDaemons/bootps.plist
|
|
mv /mnt1/Library/LaunchDaemons/com.apple.CrashHousekeeping.plist /mnt1/System/Library/LaunchDaemons/com.apple.CrashHousekeeping.plist
|
|
mv /mnt1/Library/LaunchDaemons/com.apple.MobileFileIntegrity.plist /mnt1/System/Library/LaunchDaemons/com.apple.MobileFileIntegrity.plist
|
|
mv /mnt1/Library/LaunchDaemons/com.apple.mobile.softwareupdated.plist /mnt1/System/Library/LaunchDaemons/com.apple.mobile.softwareupdated.plist_
|
|
mv /mnt1/Library/LaunchDaemons/com.apple.softwareupdateservicesd.plist /mnt1/System/Library/LaunchDaemons/com.apple.softwareupdateservicesd.plist_
|
|
mv /mnt1/Library/LaunchDaemons/com.apple.jetsamproperties.*.plist /mnt1/System/Library/LaunchDaemons
|
|
if [[ $1 != "7.1"* ]]; then # change to "7"* for lyncis 7.0.x
|
|
mv /mnt1/Library/LaunchDaemons/com.apple.mDNSResponder.plist /mnt1/System/Library/LaunchDaemons/com.apple.mDNSResponder.plist_
|
|
fi
|