forked from ramytuki/ios-kexec-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
37 lines (25 loc) · 1.19 KB
/
README
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
ios-kexec-utils
===============
A miscellany of utilities designed to help you bootstrap
another operating system on an iOS device. They're probably crap.
You deal with them. No support/warranty implied/given.
Warning: there are severe caveats with this method.
Utilities included (and duplicated from opensn0w-X):
* img3maker - Image3 file maker, needed for the decrypted boot chain.
* ibsspatch - iBSS patcher for iOS 7, creates a generic patched iBSS for boot.
* kloader - Image loader for the kernel, bootstraps custom image in RAM.
* multi_kloader - Image loader for two images in memory. See source for boot
protocol convention.
Using these utilities in unison will let you do awesome things.
(This is one of the last public projects I will push for now.
Personal reasons, mainly stress related.)
(Now with XBS compatibility!)
Compiling
=========
This release is compiled like a standard Apple B&I or Darwin project.
$ git clone git://github.com/winocm/ios-kexec-utils
$ cd ios-kexec-utils
$ mkdir -p sym obj dst
$ make install RC_ARCHS=armv7 SDKROOT=<iPhoneOS_SDKDirectory> \
OBJROOT=$(pwd)/obj DSTROOT=$(pwd)/dst SYMROOT=$(pwd)/sym
$ # Done.