NameDateSize

..11-Jun-201521

i386/H11-Jun-20154

kxld.cH A D11-Jun-201517.9 KiB

kxld_array.cH A D11-Jun-201515 KiB

kxld_array.hH A D11-Jun-20157 KiB

kxld_copyright.cH A D11-Jun-201510.1 KiB

kxld_demangle.cH A D11-Jun-20152.4 KiB

kxld_demangle.hH A D11-Jun-20152.1 KiB

kxld_dict.cH A D11-Jun-201513.6 KiB

kxld_dict.hH A D11-Jun-20156.4 KiB

kxld_kext.cH A D11-Jun-201539.2 KiB

kxld_kext.hH A D11-Jun-20153.8 KiB

kxld_object.cH A D11-Jun-201574.1 KiB

kxld_object.hH A D11-Jun-20156.1 KiB

kxld_reloc.cH A D11-Jun-201549.8 KiB

kxld_reloc.hH A D11-Jun-20156.3 KiB

kxld_sect.cH A D11-Jun-201518.8 KiB

kxld_sect.hH A D11-Jun-20157.2 KiB

kxld_seg.cH A D11-Jun-201525.1 KiB

kxld_seg.hH A D11-Jun-20155.2 KiB

kxld_srcversion.cH A D11-Jun-20153.3 KiB

kxld_srcversion.hH A D11-Jun-20152.6 KiB

kxld_stubs.cH A D11-Jun-20152.7 KiB

kxld_sym.cH A D11-Jun-201529.7 KiB

kxld_sym.hH A D11-Jun-201510.7 KiB

kxld_symtab.cH A D11-Jun-201521.7 KiB

kxld_symtab.hH A D11-Jun-20155.5 KiB

kxld_util.cH A D11-Jun-201525.3 KiB

kxld_util.hH A D11-Jun-20158.5 KiB

kxld_uuid.cH A D11-Jun-20153.1 KiB

kxld_uuid.hH A D11-Jun-20152.4 KiB

kxld_versionmin.cH A D11-Jun-20153.9 KiB

kxld_versionmin.hH A D11-Jun-20152.7 KiB

kxld_vtable.cH A D11-Jun-201524.2 KiB

kxld_vtable.hH A D11-Jun-20153.5 KiB

MakefileH A D11-Jun-20155.8 KiB

README.armH A D11-Jun-20151,001

tests/H11-Jun-20158

WKdmCompress.cH A D11-Jun-20159.3 KiB

WKdmDecompress.cH A D11-Jun-20158.3 KiB

README.arm

1These instructions will cover how to build and install libkxld for the arm architecture.
2
3Until we can get Darwin built as a source distribution, you will need to rely on a copy of the iOS4.2 SDK to build libkxld.
4
5### FOR LINUX ###
6
7If you are on Linux, you will need to grab a copy of the iOS4.2 SDK and place it under the /opt/Developer/SDKs folder with the name 'iPhoneOS.sdk'.  
8You will then need to add an info.ini file to the root of the iPhoneOS.sdk folder with the following configuration:
9
10[SDK]
11name = iPhoneOS
12version = 4.2.0
13toolchain = DarwinARM
14default_arch = armv7
15iphoneos_deployment_target = 4.2
16
17#################
18
19You may then run the following command to build and install libkxld:
20
21sudo make TARGET_CONFIGS="debug arm armpba8" \
22        RC_ProjectName=libkxld \
23        RC_CFLAGS="-arch armv7" \
24        SDKROOT=`xcrun -sdk iPhoneOS.sdk --show-sdk-path` \
25	DSTROOT=/path/to/ramdiskfs
26
27NOTE: be sure to replace the DSTROOT path with one pointing to the target filesystem's root!
28