├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── asm-offset.c ├── cache.S ├── console.c ├── docs ├── halask.png ├── ntoskrnl_crash.png ├── setupldr.png └── veneer.png ├── entry.S ├── exc-vecs.S ├── exc.c ├── fat ├── API.txt ├── COPYRIGHT.txt ├── Configuration.txt ├── History.txt ├── License.txt ├── Media Access API.txt ├── fat_access.c ├── fat_cache.c ├── fat_filelib.c ├── fat_format.c ├── fat_misc.c ├── fat_string.c ├── fat_table.c ├── fat_write.c └── version.txt ├── fdt.c ├── fdt_ro.c ├── fdt_strerror.c ├── guest.c ├── include ├── asm-utils.h ├── assert.h ├── console.h ├── ctype.h ├── defs.h ├── endian.h ├── exc.h ├── fat │ ├── fat_access.h │ ├── fat_cache.h │ ├── fat_defs.h │ ├── fat_filelib.h │ ├── fat_format.h │ ├── fat_list.h │ ├── fat_misc.h │ ├── fat_opts.h │ ├── fat_string.h │ ├── fat_table.h │ ├── fat_types.h │ └── fat_write.h ├── fdt.h ├── guest.h ├── kpcr.h ├── layout.h ├── libfdt.h ├── libfdt_env.h ├── libfdt_internal.h ├── linkage.h ├── list.h ├── log.h ├── mem.h ├── mmu.h ├── opal.h ├── ppc-defs.h ├── ppc.h ├── ranges.h ├── rom.h ├── string.h ├── time.h ├── types.h └── vsprintf.h ├── ld.script ├── lib ├── ctype.c ├── malloc.c ├── ranges.c ├── string.c └── vsprintf.c ├── log.c ├── main.c ├── mem.c ├── mmu.c ├── opal.S ├── prep.dts ├── rom.c └── time.c /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/README.md -------------------------------------------------------------------------------- /asm-offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/asm-offset.c -------------------------------------------------------------------------------- /cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/cache.S -------------------------------------------------------------------------------- /console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/console.c -------------------------------------------------------------------------------- /docs/halask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/docs/halask.png -------------------------------------------------------------------------------- /docs/ntoskrnl_crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/docs/ntoskrnl_crash.png -------------------------------------------------------------------------------- /docs/setupldr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/docs/setupldr.png -------------------------------------------------------------------------------- /docs/veneer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/docs/veneer.png -------------------------------------------------------------------------------- /entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/entry.S -------------------------------------------------------------------------------- /exc-vecs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/exc-vecs.S -------------------------------------------------------------------------------- /exc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/exc.c -------------------------------------------------------------------------------- /fat/API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/API.txt -------------------------------------------------------------------------------- /fat/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/COPYRIGHT.txt -------------------------------------------------------------------------------- /fat/Configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/Configuration.txt -------------------------------------------------------------------------------- /fat/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/History.txt -------------------------------------------------------------------------------- /fat/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/License.txt -------------------------------------------------------------------------------- /fat/Media Access API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/Media Access API.txt -------------------------------------------------------------------------------- /fat/fat_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_access.c -------------------------------------------------------------------------------- /fat/fat_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_cache.c -------------------------------------------------------------------------------- /fat/fat_filelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_filelib.c -------------------------------------------------------------------------------- /fat/fat_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_format.c -------------------------------------------------------------------------------- /fat/fat_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_misc.c -------------------------------------------------------------------------------- /fat/fat_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_string.c -------------------------------------------------------------------------------- /fat/fat_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_table.c -------------------------------------------------------------------------------- /fat/fat_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fat/fat_write.c -------------------------------------------------------------------------------- /fat/version.txt: -------------------------------------------------------------------------------- 1 | 2.6.11 (+minor cleanup by andreiw) 2 | -------------------------------------------------------------------------------- /fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fdt.c -------------------------------------------------------------------------------- /fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fdt_ro.c -------------------------------------------------------------------------------- /fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/fdt_strerror.c -------------------------------------------------------------------------------- /guest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/guest.c -------------------------------------------------------------------------------- /include/asm-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/asm-utils.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/console.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/defs.h -------------------------------------------------------------------------------- /include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/endian.h -------------------------------------------------------------------------------- /include/exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/exc.h -------------------------------------------------------------------------------- /include/fat/fat_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_access.h -------------------------------------------------------------------------------- /include/fat/fat_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_cache.h -------------------------------------------------------------------------------- /include/fat/fat_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_defs.h -------------------------------------------------------------------------------- /include/fat/fat_filelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_filelib.h -------------------------------------------------------------------------------- /include/fat/fat_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_format.h -------------------------------------------------------------------------------- /include/fat/fat_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_list.h -------------------------------------------------------------------------------- /include/fat/fat_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_misc.h -------------------------------------------------------------------------------- /include/fat/fat_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_opts.h -------------------------------------------------------------------------------- /include/fat/fat_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_string.h -------------------------------------------------------------------------------- /include/fat/fat_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_table.h -------------------------------------------------------------------------------- /include/fat/fat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_types.h -------------------------------------------------------------------------------- /include/fat/fat_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fat/fat_write.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/guest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/guest.h -------------------------------------------------------------------------------- /include/kpcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/kpcr.h -------------------------------------------------------------------------------- /include/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/layout.h -------------------------------------------------------------------------------- /include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/libfdt.h -------------------------------------------------------------------------------- /include/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/libfdt_env.h -------------------------------------------------------------------------------- /include/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/libfdt_internal.h -------------------------------------------------------------------------------- /include/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/linkage.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/list.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/log.h -------------------------------------------------------------------------------- /include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/mem.h -------------------------------------------------------------------------------- /include/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/mmu.h -------------------------------------------------------------------------------- /include/opal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/opal.h -------------------------------------------------------------------------------- /include/ppc-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/ppc-defs.h -------------------------------------------------------------------------------- /include/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/ppc.h -------------------------------------------------------------------------------- /include/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/ranges.h -------------------------------------------------------------------------------- /include/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/rom.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/string.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/time.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/types.h -------------------------------------------------------------------------------- /include/vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/include/vsprintf.h -------------------------------------------------------------------------------- /ld.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/ld.script -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/lib/malloc.c -------------------------------------------------------------------------------- /lib/ranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/lib/ranges.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/log.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/main.c -------------------------------------------------------------------------------- /mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/mem.c -------------------------------------------------------------------------------- /mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/mmu.c -------------------------------------------------------------------------------- /opal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/opal.S -------------------------------------------------------------------------------- /prep.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/prep.dts -------------------------------------------------------------------------------- /rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/rom.c -------------------------------------------------------------------------------- /time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/prephv/HEAD/time.c --------------------------------------------------------------------------------