├── .gitattributes ├── .gitignore ├── LICENSE ├── README.txt ├── asm.h ├── endian.h ├── iPhone5,2 └── 11B554a │ ├── iBoot.h │ ├── nettoyeur.c │ ├── offset.h │ └── ramdisk.dmg ├── lzss.c ├── lzss.h ├── make_rdsk3 ├── make_rdsk3_armv7 ├── make_rdskF.c └── target /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/README.txt -------------------------------------------------------------------------------- /asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/asm.h -------------------------------------------------------------------------------- /endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/endian.h -------------------------------------------------------------------------------- /iPhone5,2/11B554a/iBoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/iPhone5,2/11B554a/iBoot.h -------------------------------------------------------------------------------- /iPhone5,2/11B554a/nettoyeur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/iPhone5,2/11B554a/nettoyeur.c -------------------------------------------------------------------------------- /iPhone5,2/11B554a/offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/iPhone5,2/11B554a/offset.h -------------------------------------------------------------------------------- /iPhone5,2/11B554a/ramdisk.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/iPhone5,2/11B554a/ramdisk.dmg -------------------------------------------------------------------------------- /lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/lzss.c -------------------------------------------------------------------------------- /lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/lzss.h -------------------------------------------------------------------------------- /make_rdsk3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/make_rdsk3 -------------------------------------------------------------------------------- /make_rdsk3_armv7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/make_rdsk3_armv7 -------------------------------------------------------------------------------- /make_rdskF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dora2ios/ramdiskF_maker/HEAD/make_rdskF.c -------------------------------------------------------------------------------- /target: -------------------------------------------------------------------------------- 1 | iPhone5,2/11B554a --------------------------------------------------------------------------------