├── COPYING ├── Makefile ├── README.md ├── debian ├── bootinfo.txt ├── changelog ├── conf.empty ├── control ├── copyright ├── postinst ├── preinst ├── quikconfig └── rules ├── distrib ├── Apple_nvramrc │ ├── Alchemy │ ├── Gossamer │ ├── Hooper │ ├── Kanga │ ├── Mainstreet │ ├── PowerExpress │ ├── PowerSurge │ ├── Silk │ └── Wallstreet ├── NewWorld ├── Performa_6400 ├── PowerBook_3400c ├── PowerBook_PDQ ├── QEMU_OpenBios │ ├── QEMU_OpenBios_>=_r1280 │ └── QEMU_OpenBios_r1272 ├── UMAX_StormSurge ├── floppy-cfg.img ├── floppy.img ├── iquik.b ├── iquik.x64 ├── preboot │ ├── README │ └── example_menu └── quik.conf ├── etc └── quik.conf ├── include ├── elf.h ├── layout.h └── mac-part.h ├── installer ├── Makefile └── iquik.c ├── loader ├── Makefile ├── asm.h ├── cache.S ├── cfg.c ├── commands.c ├── commands.h ├── crt0.S ├── crtsavres.S ├── disk.c ├── disk.h ├── elf.c ├── env.c ├── ext2fs.c ├── ext2fs.h ├── file.c ├── file.h ├── isetjmp.h ├── ld.script ├── main.c ├── malloc.c ├── memtest.c ├── part.c ├── part.h ├── printf.c ├── prom.c ├── prom.h ├── quik.h ├── setjmp.S ├── string.S └── util.c ├── man ├── bootstrap.8 ├── quik.8 ├── quik.conf.5 └── quikconfig.8 ├── quik.spec └── util ├── Makefile └── elfextract.c /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/README.md -------------------------------------------------------------------------------- /debian/bootinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/bootinfo.txt -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/conf.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/conf.empty -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/preinst -------------------------------------------------------------------------------- /debian/quikconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/quikconfig -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/debian/rules -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Alchemy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Alchemy -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Gossamer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Gossamer -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Hooper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Hooper -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Kanga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Kanga -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Mainstreet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Mainstreet -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/PowerExpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/PowerExpress -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/PowerSurge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/PowerSurge -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Silk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Silk -------------------------------------------------------------------------------- /distrib/Apple_nvramrc/Wallstreet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Apple_nvramrc/Wallstreet -------------------------------------------------------------------------------- /distrib/NewWorld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/NewWorld -------------------------------------------------------------------------------- /distrib/Performa_6400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/Performa_6400 -------------------------------------------------------------------------------- /distrib/PowerBook_3400c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/PowerBook_3400c -------------------------------------------------------------------------------- /distrib/PowerBook_PDQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/PowerBook_PDQ -------------------------------------------------------------------------------- /distrib/QEMU_OpenBios/QEMU_OpenBios_>=_r1280: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/QEMU_OpenBios/QEMU_OpenBios_>=_r1280 -------------------------------------------------------------------------------- /distrib/QEMU_OpenBios/QEMU_OpenBios_r1272: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/QEMU_OpenBios/QEMU_OpenBios_r1272 -------------------------------------------------------------------------------- /distrib/UMAX_StormSurge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/UMAX_StormSurge -------------------------------------------------------------------------------- /distrib/floppy-cfg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/floppy-cfg.img -------------------------------------------------------------------------------- /distrib/floppy.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/floppy.img -------------------------------------------------------------------------------- /distrib/iquik.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/iquik.b -------------------------------------------------------------------------------- /distrib/iquik.x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/iquik.x64 -------------------------------------------------------------------------------- /distrib/preboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/preboot/README -------------------------------------------------------------------------------- /distrib/preboot/example_menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/preboot/example_menu -------------------------------------------------------------------------------- /distrib/quik.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/distrib/quik.conf -------------------------------------------------------------------------------- /etc/quik.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/etc/quik.conf -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/include/layout.h -------------------------------------------------------------------------------- /include/mac-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/include/mac-part.h -------------------------------------------------------------------------------- /installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/installer/Makefile -------------------------------------------------------------------------------- /installer/iquik.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/installer/iquik.c -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/asm.h -------------------------------------------------------------------------------- /loader/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/cache.S -------------------------------------------------------------------------------- /loader/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/cfg.c -------------------------------------------------------------------------------- /loader/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/commands.c -------------------------------------------------------------------------------- /loader/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/commands.h -------------------------------------------------------------------------------- /loader/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/crt0.S -------------------------------------------------------------------------------- /loader/crtsavres.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/crtsavres.S -------------------------------------------------------------------------------- /loader/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/disk.c -------------------------------------------------------------------------------- /loader/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/disk.h -------------------------------------------------------------------------------- /loader/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/elf.c -------------------------------------------------------------------------------- /loader/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/env.c -------------------------------------------------------------------------------- /loader/ext2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/ext2fs.c -------------------------------------------------------------------------------- /loader/ext2fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/ext2fs.h -------------------------------------------------------------------------------- /loader/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/file.c -------------------------------------------------------------------------------- /loader/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/file.h -------------------------------------------------------------------------------- /loader/isetjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/isetjmp.h -------------------------------------------------------------------------------- /loader/ld.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/ld.script -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/malloc.c -------------------------------------------------------------------------------- /loader/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/memtest.c -------------------------------------------------------------------------------- /loader/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/part.c -------------------------------------------------------------------------------- /loader/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/part.h -------------------------------------------------------------------------------- /loader/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/printf.c -------------------------------------------------------------------------------- /loader/prom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/prom.c -------------------------------------------------------------------------------- /loader/prom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/prom.h -------------------------------------------------------------------------------- /loader/quik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/quik.h -------------------------------------------------------------------------------- /loader/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/setjmp.S -------------------------------------------------------------------------------- /loader/string.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/string.S -------------------------------------------------------------------------------- /loader/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/loader/util.c -------------------------------------------------------------------------------- /man/bootstrap.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/man/bootstrap.8 -------------------------------------------------------------------------------- /man/quik.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/man/quik.8 -------------------------------------------------------------------------------- /man/quik.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/man/quik.conf.5 -------------------------------------------------------------------------------- /man/quikconfig.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/man/quikconfig.8 -------------------------------------------------------------------------------- /quik.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/quik.spec -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/util/Makefile -------------------------------------------------------------------------------- /util/elfextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/iQUIK/HEAD/util/elfextract.c --------------------------------------------------------------------------------