├── .gitignore ├── WISHLIST ├── branches └── libibooter-1.0 │ ├── LICENCE │ ├── Makefile │ ├── README │ ├── include │ └── libibooter.h │ └── src │ ├── example.cpp │ └── libibooter.cpp ├── img3unpack ├── img3.c └── img3.h ├── libibooter ├── LICENCE ├── Makefile ├── README ├── include │ └── libibooter.h └── src │ ├── example.cpp │ └── libibooter.cpp ├── openiboot ├── Makefile ├── RUNNING ├── accel.c ├── actions.c ├── aes.c ├── als.c ├── arm.c ├── buttons.c ├── camera.c ├── chipid.c ├── client │ ├── Makefile │ ├── linux.c │ ├── loadibec.c │ └── oibc.c ├── clock.c ├── commands.c ├── dma.c ├── entry.S ├── event.c ├── framebuffer.c ├── ftl.c ├── gpio.c ├── hfs │ ├── bdev.c │ ├── btree.c │ ├── catalog.c │ ├── extents.c │ ├── fastunicodecompare.c │ ├── fs.c │ ├── rawfile.c │ ├── utility.c │ └── volume.c ├── i2c.c ├── images.c ├── images │ ├── Console.png │ ├── ConsolePNG.h │ ├── ConsoleSelected.png │ ├── ConsoleSelectedPNG.h │ ├── Header.png │ ├── HeaderPNG.h │ ├── Makefile │ ├── README │ ├── bin2c.c │ ├── iPhoneOS.png │ ├── iPhoneOSPNG.h │ ├── iPhoneOSSelected.png │ └── iPhoneOSSelectedPNG.h ├── includes │ ├── accel.h │ ├── actions.h │ ├── aes.h │ ├── als.h │ ├── arm.h │ ├── buttons.h │ ├── camera.h │ ├── chipid.h │ ├── clock.h │ ├── commands.h │ ├── dma.h │ ├── event.h │ ├── framebuffer.h │ ├── ftl.h │ ├── gpio.h │ ├── hardware │ │ ├── accel.h │ │ ├── aes.h │ │ ├── als.h │ │ ├── arm.h │ │ ├── buttons.h │ │ ├── camera.h │ │ ├── chipid.h │ │ ├── clock0.h │ │ ├── clock1.h │ │ ├── dma.h │ │ ├── edgeic.h │ │ ├── gpio.h │ │ ├── i2c.h │ │ ├── i2s.h │ │ ├── interrupt.h │ │ ├── lcd.h │ │ ├── multitouch.h │ │ ├── nand.h │ │ ├── nor.h │ │ ├── pmu.h │ │ ├── power.h │ │ ├── radio.h │ │ ├── s5l8900.h │ │ ├── sdio.h │ │ ├── spi.h │ │ ├── timer.h │ │ ├── uart.h │ │ ├── usb.h │ │ └── wm8958.h │ ├── hfs │ │ ├── bdev.h │ │ ├── common.h │ │ ├── fs.h │ │ ├── hfslib.h │ │ └── hfsplus.h │ ├── i2c.h │ ├── images.h │ ├── interrupt.h │ ├── lcd.h │ ├── malloc-2.8.3.h │ ├── menu.h │ ├── miu.h │ ├── mmu.h │ ├── multitouch.h │ ├── nand.h │ ├── nor.h │ ├── nvram.h │ ├── openiboot-asmhelpers.h │ ├── openiboot.h │ ├── pmu.h │ ├── power.h │ ├── printf.h │ ├── radio.h │ ├── sdio.h │ ├── sha1.h │ ├── spi.h │ ├── stb_image.h │ ├── tasks.h │ ├── timer.h │ ├── uart.h │ ├── usb.h │ ├── util.h │ ├── wdt.h │ ├── wlan.h │ └── wm8958.h ├── interrupt.c ├── lcd.c ├── malloc.c ├── menu.c ├── miu.c ├── mk8900image │ ├── 8900.h │ ├── Makefile │ ├── abstractfile.h │ ├── blank │ ├── common.h │ ├── iboot-template.img2 │ ├── ibootim.h │ ├── img2.h │ ├── iphonelinux.der │ ├── libxpwn.a │ ├── lzss.h │ ├── lzssfile.h │ ├── mk8900image.c │ ├── nor_files.h │ ├── template-3g.img3 │ ├── template-ipod.img3 │ ├── template-wtf.img2 │ ├── template.img2 │ └── template.img3 ├── mmu.c ├── multitouch.c ├── nand.c ├── nor.c ├── nvram.c ├── openiboot-asmhelpers.S ├── openiboot.S.h ├── openiboot.c ├── pcf │ ├── 6x10.h │ ├── Makefile │ ├── README │ ├── bin2.c │ ├── oif.c │ └── pcf.c ├── pmu.c ├── power.c ├── printf.c ├── radio.c ├── sdio.c ├── sha1.c ├── spi.c ├── stb_image.c ├── tasks.c ├── timer.c ├── uart.c ├── usb.c ├── util.c ├── wdt.c ├── wlan.c └── wm8958.c ├── toolchain ├── README ├── TOOLCHAIN ├── build-toolchain.sh ├── newlib-1.14.0-missing-makeinfo.patch └── t-arm-elf.patch └── tools ├── Makefile ├── bitset.c └── dumpnandinfo.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/.gitignore -------------------------------------------------------------------------------- /WISHLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/WISHLIST -------------------------------------------------------------------------------- /branches/libibooter-1.0/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/branches/libibooter-1.0/LICENCE -------------------------------------------------------------------------------- /branches/libibooter-1.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/branches/libibooter-1.0/Makefile -------------------------------------------------------------------------------- /branches/libibooter-1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/branches/libibooter-1.0/README -------------------------------------------------------------------------------- /branches/libibooter-1.0/include/libibooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/branches/libibooter-1.0/include/libibooter.h -------------------------------------------------------------------------------- /branches/libibooter-1.0/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/branches/libibooter-1.0/src/example.cpp -------------------------------------------------------------------------------- /branches/libibooter-1.0/src/libibooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/branches/libibooter-1.0/src/libibooter.cpp -------------------------------------------------------------------------------- /img3unpack/img3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/img3unpack/img3.c -------------------------------------------------------------------------------- /img3unpack/img3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/img3unpack/img3.h -------------------------------------------------------------------------------- /libibooter/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/libibooter/LICENCE -------------------------------------------------------------------------------- /libibooter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/libibooter/Makefile -------------------------------------------------------------------------------- /libibooter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/libibooter/README -------------------------------------------------------------------------------- /libibooter/include/libibooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/libibooter/include/libibooter.h -------------------------------------------------------------------------------- /libibooter/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/libibooter/src/example.cpp -------------------------------------------------------------------------------- /libibooter/src/libibooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/libibooter/src/libibooter.cpp -------------------------------------------------------------------------------- /openiboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/Makefile -------------------------------------------------------------------------------- /openiboot/RUNNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/RUNNING -------------------------------------------------------------------------------- /openiboot/accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/accel.c -------------------------------------------------------------------------------- /openiboot/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/actions.c -------------------------------------------------------------------------------- /openiboot/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/aes.c -------------------------------------------------------------------------------- /openiboot/als.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/als.c -------------------------------------------------------------------------------- /openiboot/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/arm.c -------------------------------------------------------------------------------- /openiboot/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/buttons.c -------------------------------------------------------------------------------- /openiboot/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/camera.c -------------------------------------------------------------------------------- /openiboot/chipid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/chipid.c -------------------------------------------------------------------------------- /openiboot/client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/client/Makefile -------------------------------------------------------------------------------- /openiboot/client/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/client/linux.c -------------------------------------------------------------------------------- /openiboot/client/loadibec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/client/loadibec.c -------------------------------------------------------------------------------- /openiboot/client/oibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/client/oibc.c -------------------------------------------------------------------------------- /openiboot/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/clock.c -------------------------------------------------------------------------------- /openiboot/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/commands.c -------------------------------------------------------------------------------- /openiboot/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/dma.c -------------------------------------------------------------------------------- /openiboot/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/entry.S -------------------------------------------------------------------------------- /openiboot/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/event.c -------------------------------------------------------------------------------- /openiboot/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/framebuffer.c -------------------------------------------------------------------------------- /openiboot/ftl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/ftl.c -------------------------------------------------------------------------------- /openiboot/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/gpio.c -------------------------------------------------------------------------------- /openiboot/hfs/bdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/bdev.c -------------------------------------------------------------------------------- /openiboot/hfs/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/btree.c -------------------------------------------------------------------------------- /openiboot/hfs/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/catalog.c -------------------------------------------------------------------------------- /openiboot/hfs/extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/extents.c -------------------------------------------------------------------------------- /openiboot/hfs/fastunicodecompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/fastunicodecompare.c -------------------------------------------------------------------------------- /openiboot/hfs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/fs.c -------------------------------------------------------------------------------- /openiboot/hfs/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/rawfile.c -------------------------------------------------------------------------------- /openiboot/hfs/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/utility.c -------------------------------------------------------------------------------- /openiboot/hfs/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/hfs/volume.c -------------------------------------------------------------------------------- /openiboot/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/i2c.c -------------------------------------------------------------------------------- /openiboot/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images.c -------------------------------------------------------------------------------- /openiboot/images/Console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/Console.png -------------------------------------------------------------------------------- /openiboot/images/ConsolePNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/ConsolePNG.h -------------------------------------------------------------------------------- /openiboot/images/ConsoleSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/ConsoleSelected.png -------------------------------------------------------------------------------- /openiboot/images/ConsoleSelectedPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/ConsoleSelectedPNG.h -------------------------------------------------------------------------------- /openiboot/images/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/Header.png -------------------------------------------------------------------------------- /openiboot/images/HeaderPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/HeaderPNG.h -------------------------------------------------------------------------------- /openiboot/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/Makefile -------------------------------------------------------------------------------- /openiboot/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/README -------------------------------------------------------------------------------- /openiboot/images/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/bin2c.c -------------------------------------------------------------------------------- /openiboot/images/iPhoneOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/iPhoneOS.png -------------------------------------------------------------------------------- /openiboot/images/iPhoneOSPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/iPhoneOSPNG.h -------------------------------------------------------------------------------- /openiboot/images/iPhoneOSSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/iPhoneOSSelected.png -------------------------------------------------------------------------------- /openiboot/images/iPhoneOSSelectedPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/images/iPhoneOSSelectedPNG.h -------------------------------------------------------------------------------- /openiboot/includes/accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/accel.h -------------------------------------------------------------------------------- /openiboot/includes/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/actions.h -------------------------------------------------------------------------------- /openiboot/includes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/aes.h -------------------------------------------------------------------------------- /openiboot/includes/als.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/als.h -------------------------------------------------------------------------------- /openiboot/includes/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/arm.h -------------------------------------------------------------------------------- /openiboot/includes/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/buttons.h -------------------------------------------------------------------------------- /openiboot/includes/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/camera.h -------------------------------------------------------------------------------- /openiboot/includes/chipid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/chipid.h -------------------------------------------------------------------------------- /openiboot/includes/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/clock.h -------------------------------------------------------------------------------- /openiboot/includes/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/commands.h -------------------------------------------------------------------------------- /openiboot/includes/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/dma.h -------------------------------------------------------------------------------- /openiboot/includes/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/event.h -------------------------------------------------------------------------------- /openiboot/includes/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/framebuffer.h -------------------------------------------------------------------------------- /openiboot/includes/ftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/ftl.h -------------------------------------------------------------------------------- /openiboot/includes/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/gpio.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/accel.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/aes.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/als.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/als.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/arm.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/buttons.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/camera.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/chipid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/chipid.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/clock0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/clock0.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/clock1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/clock1.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/dma.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/edgeic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/edgeic.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/gpio.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/i2c.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/i2s.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/interrupt.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/lcd.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/multitouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/multitouch.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/nand.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/nor.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/pmu.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/power.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/radio.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/s5l8900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/s5l8900.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/sdio.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/spi.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/timer.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/uart.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/usb.h -------------------------------------------------------------------------------- /openiboot/includes/hardware/wm8958.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hardware/wm8958.h -------------------------------------------------------------------------------- /openiboot/includes/hfs/bdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hfs/bdev.h -------------------------------------------------------------------------------- /openiboot/includes/hfs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hfs/common.h -------------------------------------------------------------------------------- /openiboot/includes/hfs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hfs/fs.h -------------------------------------------------------------------------------- /openiboot/includes/hfs/hfslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hfs/hfslib.h -------------------------------------------------------------------------------- /openiboot/includes/hfs/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/hfs/hfsplus.h -------------------------------------------------------------------------------- /openiboot/includes/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/i2c.h -------------------------------------------------------------------------------- /openiboot/includes/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/images.h -------------------------------------------------------------------------------- /openiboot/includes/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/interrupt.h -------------------------------------------------------------------------------- /openiboot/includes/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/lcd.h -------------------------------------------------------------------------------- /openiboot/includes/malloc-2.8.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/malloc-2.8.3.h -------------------------------------------------------------------------------- /openiboot/includes/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/menu.h -------------------------------------------------------------------------------- /openiboot/includes/miu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/miu.h -------------------------------------------------------------------------------- /openiboot/includes/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/mmu.h -------------------------------------------------------------------------------- /openiboot/includes/multitouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/multitouch.h -------------------------------------------------------------------------------- /openiboot/includes/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/nand.h -------------------------------------------------------------------------------- /openiboot/includes/nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/nor.h -------------------------------------------------------------------------------- /openiboot/includes/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/nvram.h -------------------------------------------------------------------------------- /openiboot/includes/openiboot-asmhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/openiboot-asmhelpers.h -------------------------------------------------------------------------------- /openiboot/includes/openiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/openiboot.h -------------------------------------------------------------------------------- /openiboot/includes/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/pmu.h -------------------------------------------------------------------------------- /openiboot/includes/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/power.h -------------------------------------------------------------------------------- /openiboot/includes/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/printf.h -------------------------------------------------------------------------------- /openiboot/includes/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/radio.h -------------------------------------------------------------------------------- /openiboot/includes/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/sdio.h -------------------------------------------------------------------------------- /openiboot/includes/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/sha1.h -------------------------------------------------------------------------------- /openiboot/includes/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/spi.h -------------------------------------------------------------------------------- /openiboot/includes/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/stb_image.h -------------------------------------------------------------------------------- /openiboot/includes/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/tasks.h -------------------------------------------------------------------------------- /openiboot/includes/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/timer.h -------------------------------------------------------------------------------- /openiboot/includes/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/uart.h -------------------------------------------------------------------------------- /openiboot/includes/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/usb.h -------------------------------------------------------------------------------- /openiboot/includes/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/util.h -------------------------------------------------------------------------------- /openiboot/includes/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/wdt.h -------------------------------------------------------------------------------- /openiboot/includes/wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/wlan.h -------------------------------------------------------------------------------- /openiboot/includes/wm8958.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/includes/wm8958.h -------------------------------------------------------------------------------- /openiboot/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/interrupt.c -------------------------------------------------------------------------------- /openiboot/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/lcd.c -------------------------------------------------------------------------------- /openiboot/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/malloc.c -------------------------------------------------------------------------------- /openiboot/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/menu.c -------------------------------------------------------------------------------- /openiboot/miu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/miu.c -------------------------------------------------------------------------------- /openiboot/mk8900image/8900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/8900.h -------------------------------------------------------------------------------- /openiboot/mk8900image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/Makefile -------------------------------------------------------------------------------- /openiboot/mk8900image/abstractfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/abstractfile.h -------------------------------------------------------------------------------- /openiboot/mk8900image/blank: -------------------------------------------------------------------------------- 1 | This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /openiboot/mk8900image/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/common.h -------------------------------------------------------------------------------- /openiboot/mk8900image/iboot-template.img2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/iboot-template.img2 -------------------------------------------------------------------------------- /openiboot/mk8900image/ibootim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/ibootim.h -------------------------------------------------------------------------------- /openiboot/mk8900image/img2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/img2.h -------------------------------------------------------------------------------- /openiboot/mk8900image/iphonelinux.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/iphonelinux.der -------------------------------------------------------------------------------- /openiboot/mk8900image/libxpwn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/libxpwn.a -------------------------------------------------------------------------------- /openiboot/mk8900image/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/lzss.h -------------------------------------------------------------------------------- /openiboot/mk8900image/lzssfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/lzssfile.h -------------------------------------------------------------------------------- /openiboot/mk8900image/mk8900image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/mk8900image.c -------------------------------------------------------------------------------- /openiboot/mk8900image/nor_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/nor_files.h -------------------------------------------------------------------------------- /openiboot/mk8900image/template-3g.img3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/template-3g.img3 -------------------------------------------------------------------------------- /openiboot/mk8900image/template-ipod.img3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/template-ipod.img3 -------------------------------------------------------------------------------- /openiboot/mk8900image/template-wtf.img2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/template-wtf.img2 -------------------------------------------------------------------------------- /openiboot/mk8900image/template.img2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/template.img2 -------------------------------------------------------------------------------- /openiboot/mk8900image/template.img3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mk8900image/template.img3 -------------------------------------------------------------------------------- /openiboot/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/mmu.c -------------------------------------------------------------------------------- /openiboot/multitouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/multitouch.c -------------------------------------------------------------------------------- /openiboot/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/nand.c -------------------------------------------------------------------------------- /openiboot/nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/nor.c -------------------------------------------------------------------------------- /openiboot/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/nvram.c -------------------------------------------------------------------------------- /openiboot/openiboot-asmhelpers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/openiboot-asmhelpers.S -------------------------------------------------------------------------------- /openiboot/openiboot.S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/openiboot.S.h -------------------------------------------------------------------------------- /openiboot/openiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/openiboot.c -------------------------------------------------------------------------------- /openiboot/pcf/6x10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pcf/6x10.h -------------------------------------------------------------------------------- /openiboot/pcf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pcf/Makefile -------------------------------------------------------------------------------- /openiboot/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pcf/README -------------------------------------------------------------------------------- /openiboot/pcf/bin2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pcf/bin2.c -------------------------------------------------------------------------------- /openiboot/pcf/oif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pcf/oif.c -------------------------------------------------------------------------------- /openiboot/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pcf/pcf.c -------------------------------------------------------------------------------- /openiboot/pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/pmu.c -------------------------------------------------------------------------------- /openiboot/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/power.c -------------------------------------------------------------------------------- /openiboot/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/printf.c -------------------------------------------------------------------------------- /openiboot/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/radio.c -------------------------------------------------------------------------------- /openiboot/sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/sdio.c -------------------------------------------------------------------------------- /openiboot/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/sha1.c -------------------------------------------------------------------------------- /openiboot/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/spi.c -------------------------------------------------------------------------------- /openiboot/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/stb_image.c -------------------------------------------------------------------------------- /openiboot/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/tasks.c -------------------------------------------------------------------------------- /openiboot/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/timer.c -------------------------------------------------------------------------------- /openiboot/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/uart.c -------------------------------------------------------------------------------- /openiboot/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/usb.c -------------------------------------------------------------------------------- /openiboot/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/util.c -------------------------------------------------------------------------------- /openiboot/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/wdt.c -------------------------------------------------------------------------------- /openiboot/wlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/wlan.c -------------------------------------------------------------------------------- /openiboot/wm8958.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/openiboot/wm8958.c -------------------------------------------------------------------------------- /toolchain/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/toolchain/README -------------------------------------------------------------------------------- /toolchain/TOOLCHAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/toolchain/TOOLCHAIN -------------------------------------------------------------------------------- /toolchain/build-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/toolchain/build-toolchain.sh -------------------------------------------------------------------------------- /toolchain/newlib-1.14.0-missing-makeinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/toolchain/newlib-1.14.0-missing-makeinfo.patch -------------------------------------------------------------------------------- /toolchain/t-arm-elf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/toolchain/t-arm-elf.patch -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/tools/bitset.c -------------------------------------------------------------------------------- /tools/dumpnandinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/iphonelinux/HEAD/tools/dumpnandinfo.c --------------------------------------------------------------------------------