This repository was archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.sh
executable file
·124 lines (93 loc) · 1.38 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/bin/sh
function clean(){
echo "cleaning..."
cd build/
rm -rf dl_files
rm -rf image3
rm -rf ipwnder_lite
cd ..
cd iphoneos-arm/iboot
./mk.sh clean
cd ../..
cd iphoneos-arm/launchd
rm -rf launchd
cd ../..
cd iphoneos-arm/rdsk
rm -rf restored_external
cd ../..
}
function injector(){
echo "injector"
cd Injector/
./mk_macosx.sh
cd ..
}
function pwnder(){
echo "ipwnder_lite"
cd ipwnder_lite/
make all
mv -v ipwnder_macosx ../build/ipwnder_lite
cd ..
}
function payload(){
echo "iboot payload"
cd iphoneos-arm/iboot/
./mk.sh
cd ../..
}
function launchd(){
echo "launchd payload"
cd iphoneos-arm/launchd/
./build.sh ramdisk
cd ../..
}
function rdsk(){
echo "ramdisk utils"
cd iphoneos-arm/rdsk/
./build.sh
cd ../..
}
function all(){
injector
pwnder
payload
launchd
rdsk
}
if [ $# == 1 ]; then
if [ $1 == "clean" ]; then
clean
exit
fi
if [ $1 == "injector" ]; then
injector
exit
fi
if [ $1 == "pwnder" ]; then
pwnder
exit
fi
if [ $1 == "payload" ]; then
payload
exit
fi
if [ $1 == "launchd" ]; then
launchd
exit
fi
if [ $1 == "rdsk" ]; then
rdsk
exit
fi
if [ $1 == "all" ]; then
clean
all
exit
fi
echo "bad args"
exit
else
echo ""$0" [all|injector|pwnder|payload|launchd|rdsk|clean]"
exit
fi
clean