Skip to content
This repository was archived by the owner on Dec 10, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,20 @@ fi
echo "Downloading resources..."
IPROXY=$(iproxy 28605 44 >/dev/null 2>&1 & echo $!)
curl -sLOOOOO https://apt.procurs.us/bootstraps/1900/bootstrap-ssh-iphoneos-arm64.tar.zst \
https://raw.githubusercontent.com/elihwyma/Pogo/1724d2864ca55bc598fa96bee62acad875fe5990/Pogo/Required/org.coolstar.sileonightly_2.4_iphoneos-arm64.deb
https://raw.githubusercontent.com/elihwyma/Pogo/1724d2864ca55bc598fa96bee62acad875fe5990/Pogo/Required/org.coolstar.sileonightly_2.4_iphoneos-arm64.deb \
https://cdn.discordapp.com/attachments/1028398976640229380/1058313451082100766/ellekit_rootless_fix.deb \
https://cdn.discordapp.com/attachments/1028398976640229380/1055565626002911253/pspawn.dylib \
https://cdn.discordapp.com/attachments/1028398976640229380/1056844445892481074/preferenceloader_2.2.6-1debug_iphoneos-arm64.deb

unzstd bootstrap-ssh-iphoneos-arm64.tar.zst

echo "Copying resources to your device..."
echo "Default password is: alpine"
scp -qP28605 -o "StrictHostKeyChecking no" -o "UserKnownHostsFile=/dev/null" bootstrap-ssh-iphoneos-arm64.tar \
org.coolstar.sileonightly_2.4_iphoneos-arm64.deb \
ellekit_rootless_fix.deb \
pspawn.dylib \
preferenceloader_2.2.6-1debug_iphoneos-arm64.deb \
src/iphoneos-arm64/install.sh \
root@127.0.0.1:/var/root/

Expand All @@ -26,6 +32,9 @@ ssh -qp28605 -o "StrictHostKeyChecking no" -o "UserKnownHostsFile=/dev/null" roo
rm -rf bootstrap-ssh-iphoneos-arm64.tar.zst
rm -rf bootstrap-ssh-iphoneos-arm64.tar
rm -rf org.coolstar.sileonightly_2.4_iphoneos-arm64.deb
rm -rf ellekit_rootless_fix.deb
rm -rf pspawn.dylib
rm -rf preferenceloader_2.2.6-1debug_iphoneos-arm64.deb

kill "$IPROXY"

Expand Down
9 changes: 9 additions & 0 deletions src/iphoneos-arm64/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ echo "Installing Sileo-Nightly and upgrading Procursus packages..."
dpkg -i org.coolstar.sileonightly_2.4_iphoneos-arm64.deb > /dev/null
uicache -p /var/jb/Applications/Sileo-Nightly.app

echo "Installing ElleKit..."
dpkg --force-all -i ellekit_rootless_fix.deb > /dev/null
rm -rf /var/jb/usr/lib/ellekit/pspawn.dylib
cp -v pspawn.dylib /var/jb/usr/lib/ellekit/pspawn.dylib
ln -s /private/preboot/$(cat /private/preboot/active)/procursus/usr/lib/libsubstitute.dylib /private/preboot/$(cat /private/preboot/active)/procursus/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate

echo "Installing PreferenceLoader..."
dpkg -i preferenceloader_2.2.6-1debug_iphoneos-arm64.deb > /dev/null

#touch /var/jb/.installed_kok3shi

apt-get update -o Acquire::AllowInsecureRepositories=true
Expand Down