├── README.md ├── dtbImage.ps3.bin ├── kexec ├── kexec-tools ├── .gitignore ├── AUTHORS ├── COPYING ├── INSTALL ├── Makefile.in ├── News ├── TODO ├── bootstrap ├── config │ ├── config.guess │ ├── config.sub │ └── install-sh ├── configure.ac ├── doc │ ├── Makefile │ ├── linux-i386-boot.txt │ ├── linux-i386-zero-page.txt │ ├── mpc85xx.txt │ ├── multiboot.html │ └── nbi-spec.txt ├── include │ ├── Makefile │ ├── boot │ │ ├── beoboot.h │ │ ├── elf_boot.h │ │ └── linuxbios_tables.h │ ├── elf.h │ ├── image.h │ ├── kexec-uImage.h │ ├── unused.h │ └── x86 │ │ ├── mb_header.h │ │ ├── mb_info.h │ │ ├── multiboot2.h │ │ └── x86-linux.h ├── kexec-tools.spec.in ├── kexec │ ├── .gitignore │ ├── Makefile │ ├── add_buffer.c │ ├── add_segment.c │ ├── arch │ │ ├── alpha │ │ │ ├── Makefile │ │ │ └── include │ │ │ │ └── arch │ │ │ │ └── options.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── crashdump-arm.c │ │ │ ├── crashdump-arm.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── iomem.h │ │ │ ├── kexec-arm.c │ │ │ ├── kexec-arm.h │ │ │ ├── kexec-elf-rel-arm.c │ │ │ ├── kexec-uImage-arm.c │ │ │ ├── kexec-zImage-arm.c │ │ │ ├── phys_to_virt.c │ │ │ └── phys_to_virt.h │ │ ├── arm64 │ │ │ ├── Makefile │ │ │ ├── crashdump-arm64.c │ │ │ ├── crashdump-arm64.h │ │ │ ├── image-header.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── iomem.h │ │ │ ├── kexec-arm64.c │ │ │ ├── kexec-arm64.h │ │ │ ├── kexec-elf-arm64.c │ │ │ ├── kexec-image-arm64.c │ │ │ ├── kexec-uImage-arm64.c │ │ │ └── kexec-zImage-arm64.c │ │ ├── cris │ │ │ ├── Makefile │ │ │ ├── cris-setup-simple.S │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-cris.c │ │ │ ├── kexec-cris.h │ │ │ ├── kexec-elf-cris.c │ │ │ └── kexec-elf-rel-cris.c │ │ ├── hppa │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-hppa.c │ │ │ ├── kexec-elf-rel-hppa.c │ │ │ ├── kexec-hppa.c │ │ │ └── kexec-hppa.h │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── crashdump-x86.c │ │ │ ├── crashdump-x86.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-beoboot-x86.c │ │ │ ├── kexec-bzImage.c │ │ │ ├── kexec-elf-rel-x86.c │ │ │ ├── kexec-elf-x86.c │ │ │ ├── kexec-mb2-x86.c │ │ │ ├── kexec-multiboot-x86.c │ │ │ ├── kexec-nbi.c │ │ │ ├── kexec-x86-common.c │ │ │ ├── kexec-x86.c │ │ │ ├── kexec-x86.h │ │ │ ├── x86-linux-setup.c │ │ │ └── x86-linux-setup.h │ │ ├── ia64 │ │ │ ├── Makefile │ │ │ ├── crashdump-ia64.c │ │ │ ├── crashdump-ia64.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-ia64.c │ │ │ ├── kexec-elf-rel-ia64.c │ │ │ ├── kexec-ia64.c │ │ │ ├── kexec-ia64.h │ │ │ └── kexec-iomem.c │ │ ├── loongarch │ │ │ ├── Makefile │ │ │ ├── crashdump-loongarch.c │ │ │ ├── crashdump-loongarch.h │ │ │ ├── image-header.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── iomem.h │ │ │ ├── kexec-elf-loongarch.c │ │ │ ├── kexec-elf-rel-loongarch.c │ │ │ ├── kexec-loongarch.c │ │ │ ├── kexec-loongarch.h │ │ │ └── kexec-pei-loongarch.c │ │ ├── m68k │ │ │ ├── Makefile │ │ │ ├── bootinfo.c │ │ │ ├── bootinfo.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-m68k.c │ │ │ ├── kexec-elf-rel-m68k.c │ │ │ ├── kexec-m68k.c │ │ │ └── kexec-m68k.h │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── crashdump-mips.c │ │ │ ├── crashdump-mips.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-mips.c │ │ │ ├── kexec-elf-rel-mips.c │ │ │ ├── kexec-mips.c │ │ │ └── kexec-mips.h │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── crashdump-powerpc.c │ │ │ ├── crashdump-powerpc.h │ │ │ ├── fixup_dtb.c │ │ │ ├── fixup_dtb.h │ │ │ ├── fs2dt.c │ │ │ ├── include │ │ │ │ ├── arch │ │ │ │ │ └── options.h │ │ │ │ ├── page.h │ │ │ │ └── types.h │ │ │ ├── kexec-dol-ppc.c │ │ │ ├── kexec-elf-ppc.c │ │ │ ├── kexec-elf-rel-ppc.c │ │ │ ├── kexec-ppc.c │ │ │ ├── kexec-ppc.h │ │ │ ├── kexec-uImage-ppc.c │ │ │ ├── libfdt-wrapper.c │ │ │ ├── ops.h │ │ │ ├── ppc-setup-dol.S │ │ │ ├── ppc-setup-simple.S │ │ │ └── ppc_asm.h │ │ ├── ppc64 │ │ │ ├── Makefile │ │ │ ├── crashdump-ppc64.c │ │ │ ├── crashdump-ppc64.h │ │ │ ├── fdt.c │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ ├── fdt.h │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-ppc64.c │ │ │ ├── kexec-elf-rel-ppc64.c │ │ │ ├── kexec-ppc64.c │ │ │ ├── kexec-ppc64.h │ │ │ └── kexec-zImage-ppc64.c │ │ ├── s390 │ │ │ ├── Makefile │ │ │ ├── crashdump-s390.c │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-rel-s390.c │ │ │ ├── kexec-image.c │ │ │ ├── kexec-s390.c │ │ │ └── kexec-s390.h │ │ ├── sh │ │ │ ├── Makefile │ │ │ ├── crashdump-sh.c │ │ │ ├── crashdump-sh.h │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ └── options.h │ │ │ ├── kexec-elf-rel-sh.c │ │ │ ├── kexec-elf-sh.c │ │ │ ├── kexec-netbsd-sh.c │ │ │ ├── kexec-sh.c │ │ │ ├── kexec-sh.h │ │ │ ├── kexec-uImage-sh.c │ │ │ ├── kexec-zImage-sh.c │ │ │ └── netbsd_booter.S │ │ └── x86_64 │ │ │ ├── Makefile │ │ │ ├── include │ │ │ └── arch │ │ │ │ └── options.h │ │ │ ├── kexec-bzImage64.c │ │ │ ├── kexec-elf-rel-x86_64.c │ │ │ ├── kexec-elf-x86_64.c │ │ │ ├── kexec-x86_64.c │ │ │ └── kexec-x86_64.h │ ├── arch_reuse_initrd.c │ ├── crashdump-elf.c │ ├── crashdump-xen.c │ ├── crashdump.c │ ├── crashdump.h │ ├── dt-ops.c │ ├── dt-ops.h │ ├── firmware_memmap.c │ ├── firmware_memmap.h │ ├── fs2dt.c │ ├── fs2dt.h │ ├── ifdown.c │ ├── kexec-elf-boot.c │ ├── kexec-elf-boot.h │ ├── kexec-elf-core.c │ ├── kexec-elf-exec.c │ ├── kexec-elf-rel.c │ ├── kexec-elf.c │ ├── kexec-elf.h │ ├── kexec-iomem.c │ ├── kexec-lzma.h │ ├── kexec-sha256.h │ ├── kexec-syscall.h │ ├── kexec-uImage.c │ ├── kexec-xen.c │ ├── kexec-xen.h │ ├── kexec-zlib.h │ ├── kexec.8 │ ├── kexec.c │ ├── kexec.h │ ├── libfdt │ │ ├── Makefile.libfdt │ │ ├── TODO │ │ ├── fdt.c │ │ ├── fdt.h │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt.h │ │ ├── libfdt_env.h │ │ └── libfdt_internal.h │ ├── lzma.c │ ├── mem_regions.c │ ├── mem_regions.h │ ├── phys_arch.c │ ├── phys_to_virt.c │ ├── proc_iomem.c │ ├── symbols.c │ ├── virt_to_phys.c │ └── zlib.c ├── kexec_test │ ├── Makefile │ ├── kexec_test.S │ ├── kexec_test16.S │ └── x86-setup-legacy-pic.S ├── purgatory │ ├── Makefile │ ├── arch │ │ ├── alpha │ │ │ └── Makefile │ │ ├── arm │ │ │ └── Makefile │ │ ├── arm64 │ │ │ ├── Makefile │ │ │ ├── entry.S │ │ │ └── purgatory-arm64.c │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── compat_x86_64.S │ │ │ ├── console-x86.c │ │ │ ├── crashdump_backup.c │ │ │ ├── entry32-16-debug.S │ │ │ ├── entry32-16.S │ │ │ ├── entry32.S │ │ │ ├── include │ │ │ │ └── arch │ │ │ │ │ ├── debug.h │ │ │ │ │ └── io.h │ │ │ ├── pic.c │ │ │ ├── purgatory-x86.c │ │ │ ├── purgatory-x86.h │ │ │ ├── setup-x86.S │ │ │ ├── stack.S │ │ │ └── vga.c │ │ ├── ia64 │ │ │ ├── Makefile │ │ │ ├── console-ia64.c │ │ │ ├── entry.S │ │ │ ├── io.h │ │ │ ├── purgatory-ia64.c │ │ │ ├── purgatory-ia64.h │ │ │ └── vga.c │ │ ├── loongarch │ │ │ ├── Makefile │ │ │ ├── console-loongarch.c │ │ │ ├── purgatory-loongarch.c │ │ │ └── purgatory-loongarch.h │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── console-mips.c │ │ │ ├── purgatory-mips.c │ │ │ └── purgatory-mips.h │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── console-ppc.c │ │ │ ├── misc.S │ │ │ ├── ppc_asm.h │ │ │ ├── purgatory-ppc.c │ │ │ ├── purgatory-ppc.h │ │ │ └── v2wrap_32.S │ │ ├── ppc64 │ │ │ ├── Makefile │ │ │ ├── console-ppc64.c │ │ │ ├── crashdump_backup.c │ │ │ ├── hvCall.S │ │ │ ├── hvCall.h │ │ │ ├── misc.S │ │ │ ├── ppc64_asm.h │ │ │ ├── purgatory-ppc64.c │ │ │ ├── purgatory-ppc64.h │ │ │ └── v2wrap.S │ │ ├── s390 │ │ │ ├── Makefile │ │ │ ├── console-s390.c │ │ │ ├── purgatory-s390.c │ │ │ └── setup-s390.S │ │ ├── sh │ │ │ └── Makefile │ │ └── x86_64 │ │ │ ├── Makefile │ │ │ ├── entry64-32.S │ │ │ ├── entry64.S │ │ │ ├── include │ │ │ └── arch │ │ │ │ ├── debug.h │ │ │ │ └── io.h │ │ │ ├── purgatory-x86_64.c │ │ │ ├── purgatory-x86_64.h │ │ │ ├── setup-x86_64.S │ │ │ └── stack.S │ ├── include │ │ ├── purgatory.h │ │ └── string.h │ ├── printf.c │ ├── purgatory.c │ └── string.c ├── util │ ├── Makefile │ └── bin-to-hex.c ├── util_lib │ ├── Makefile │ ├── compute_ip_checksum.c │ ├── elf_info.c │ ├── include │ │ ├── elf_info.h │ │ ├── ip_checksum.h │ │ └── sha256.h │ └── sha256.c └── vmcore-dmesg │ ├── Makefile │ ├── vmcore-dmesg.8 │ └── vmcore-dmesg.c └── otheros.bld /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/README.md -------------------------------------------------------------------------------- /dtbImage.ps3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/dtbImage.ps3.bin -------------------------------------------------------------------------------- /kexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec -------------------------------------------------------------------------------- /kexec-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/.gitignore -------------------------------------------------------------------------------- /kexec-tools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/AUTHORS -------------------------------------------------------------------------------- /kexec-tools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/COPYING -------------------------------------------------------------------------------- /kexec-tools/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/INSTALL -------------------------------------------------------------------------------- /kexec-tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/Makefile.in -------------------------------------------------------------------------------- /kexec-tools/News: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/News -------------------------------------------------------------------------------- /kexec-tools/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/TODO -------------------------------------------------------------------------------- /kexec-tools/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/bootstrap -------------------------------------------------------------------------------- /kexec-tools/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/config/config.guess -------------------------------------------------------------------------------- /kexec-tools/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/config/config.sub -------------------------------------------------------------------------------- /kexec-tools/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/config/install-sh -------------------------------------------------------------------------------- /kexec-tools/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/configure.ac -------------------------------------------------------------------------------- /kexec-tools/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/doc/Makefile -------------------------------------------------------------------------------- /kexec-tools/doc/linux-i386-boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/doc/linux-i386-boot.txt -------------------------------------------------------------------------------- /kexec-tools/doc/linux-i386-zero-page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/doc/linux-i386-zero-page.txt -------------------------------------------------------------------------------- /kexec-tools/doc/mpc85xx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/doc/mpc85xx.txt -------------------------------------------------------------------------------- /kexec-tools/doc/multiboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/doc/multiboot.html -------------------------------------------------------------------------------- /kexec-tools/doc/nbi-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/doc/nbi-spec.txt -------------------------------------------------------------------------------- /kexec-tools/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/Makefile -------------------------------------------------------------------------------- /kexec-tools/include/boot/beoboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/boot/beoboot.h -------------------------------------------------------------------------------- /kexec-tools/include/boot/elf_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/boot/elf_boot.h -------------------------------------------------------------------------------- /kexec-tools/include/boot/linuxbios_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/boot/linuxbios_tables.h -------------------------------------------------------------------------------- /kexec-tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/elf.h -------------------------------------------------------------------------------- /kexec-tools/include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/image.h -------------------------------------------------------------------------------- /kexec-tools/include/kexec-uImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/kexec-uImage.h -------------------------------------------------------------------------------- /kexec-tools/include/unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/unused.h -------------------------------------------------------------------------------- /kexec-tools/include/x86/mb_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/x86/mb_header.h -------------------------------------------------------------------------------- /kexec-tools/include/x86/mb_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/x86/mb_info.h -------------------------------------------------------------------------------- /kexec-tools/include/x86/multiboot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/x86/multiboot2.h -------------------------------------------------------------------------------- /kexec-tools/include/x86/x86-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/include/x86/x86-linux.h -------------------------------------------------------------------------------- /kexec-tools/kexec-tools.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec-tools.spec.in -------------------------------------------------------------------------------- /kexec-tools/kexec/.gitignore: -------------------------------------------------------------------------------- 1 | purgatory.c 2 | -------------------------------------------------------------------------------- /kexec-tools/kexec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/add_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/add_buffer.c -------------------------------------------------------------------------------- /kexec-tools/kexec/add_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/add_segment.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/alpha/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/alpha/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/alpha/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/crashdump-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/crashdump-arm.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/crashdump-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/crashdump-arm.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/iomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/iomem.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/kexec-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/kexec-arm.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/kexec-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/kexec-arm.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/kexec-elf-rel-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/kexec-elf-rel-arm.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/kexec-uImage-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/kexec-uImage-arm.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/kexec-zImage-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/kexec-zImage-arm.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/phys_to_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/phys_to_virt.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm/phys_to_virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm/phys_to_virt.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/crashdump-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/crashdump-arm64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/crashdump-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/crashdump-arm64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/image-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/image-header.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/iomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/iomem.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/kexec-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/kexec-arm64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/kexec-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/kexec-arm64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/kexec-elf-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/kexec-elf-arm64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/kexec-image-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/kexec-image-arm64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/kexec-uImage-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/kexec-uImage-arm64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/arm64/kexec-zImage-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/arm64/kexec-zImage-arm64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/cris-setup-simple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/cris-setup-simple.S -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/kexec-cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/kexec-cris.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/kexec-cris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/kexec-cris.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/kexec-elf-cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/kexec-elf-cris.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/cris/kexec-elf-rel-cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/cris/kexec-elf-rel-cris.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/hppa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/hppa/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/hppa/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/hppa/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/hppa/kexec-elf-hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/hppa/kexec-elf-hppa.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/hppa/kexec-elf-rel-hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/hppa/kexec-elf-rel-hppa.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/hppa/kexec-hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/hppa/kexec-hppa.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/hppa/kexec-hppa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/hppa/kexec-hppa.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/crashdump-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/crashdump-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/crashdump-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/crashdump-x86.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-beoboot-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-beoboot-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-bzImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-bzImage.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-elf-rel-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-elf-rel-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-elf-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-elf-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-mb2-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-mb2-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-multiboot-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-multiboot-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-nbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-nbi.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-x86-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-x86-common.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-x86.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/kexec-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/kexec-x86.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/x86-linux-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/x86-linux-setup.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/i386/x86-linux-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/i386/x86-linux-setup.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/crashdump-ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/crashdump-ia64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/crashdump-ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/crashdump-ia64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/kexec-elf-ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/kexec-elf-ia64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/kexec-elf-rel-ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/kexec-elf-rel-ia64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/kexec-ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/kexec-ia64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/kexec-ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/kexec-ia64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ia64/kexec-iomem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ia64/kexec-iomem.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/crashdump-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/crashdump-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/crashdump-loongarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/crashdump-loongarch.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/image-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/image-header.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/iomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/iomem.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/kexec-elf-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/kexec-elf-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/kexec-elf-rel-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/kexec-elf-rel-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/kexec-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/kexec-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/kexec-loongarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/kexec-loongarch.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/loongarch/kexec-pei-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/loongarch/kexec-pei-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/bootinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/bootinfo.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/bootinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/bootinfo.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/kexec-elf-m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/kexec-elf-m68k.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/kexec-elf-rel-m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/kexec-elf-rel-m68k.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/kexec-m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/kexec-m68k.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/m68k/kexec-m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/m68k/kexec-m68k.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/crashdump-mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/crashdump-mips.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/crashdump-mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/crashdump-mips.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/kexec-elf-mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/kexec-elf-mips.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/kexec-elf-rel-mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/kexec-elf-rel-mips.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/kexec-mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/kexec-mips.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/mips/kexec-mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/mips/kexec-mips.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/crashdump-powerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/crashdump-powerpc.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/crashdump-powerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/crashdump-powerpc.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/fixup_dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/fixup_dtb.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/fixup_dtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/fixup_dtb.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/fs2dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/fs2dt.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/include/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/include/page.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/include/types.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/kexec-dol-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/kexec-dol-ppc.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/kexec-elf-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/kexec-elf-ppc.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/kexec-elf-rel-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/kexec-elf-rel-ppc.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/kexec-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/kexec-ppc.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/kexec-ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/kexec-ppc.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/kexec-uImage-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/kexec-uImage-ppc.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/libfdt-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/libfdt-wrapper.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/ops.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/ppc-setup-dol.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/ppc-setup-dol.S -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/ppc-setup-simple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/ppc-setup-simple.S -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc/ppc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc/ppc_asm.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/crashdump-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/crashdump-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/crashdump-ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/crashdump-ppc64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/fdt.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/include/arch/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/include/arch/fdt.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/kexec-elf-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/kexec-elf-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/kexec-elf-rel-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/kexec-elf-rel-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/kexec-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/kexec-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/kexec-ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/kexec-ppc64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/ppc64/kexec-zImage-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/ppc64/kexec-zImage-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/crashdump-s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/crashdump-s390.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/kexec-elf-rel-s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/kexec-elf-rel-s390.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/kexec-image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/kexec-image.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/kexec-s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/kexec-s390.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/s390/kexec-s390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/s390/kexec-s390.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/crashdump-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/crashdump-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/crashdump-sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/crashdump-sh.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/include/arch/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-elf-rel-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-elf-rel-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-elf-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-elf-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-netbsd-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-netbsd-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-sh.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-uImage-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-uImage-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/kexec-zImage-sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/kexec-zImage-sh.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/sh/netbsd_booter.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/sh/netbsd_booter.S -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/x86_64/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/include/arch/options.h: -------------------------------------------------------------------------------- 1 | ../../../i386/include/arch/options.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/kexec-bzImage64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/x86_64/kexec-bzImage64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/kexec-elf-rel-x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/x86_64/kexec-elf-rel-x86_64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/kexec-elf-x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/x86_64/kexec-elf-x86_64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/kexec-x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/x86_64/kexec-x86_64.c -------------------------------------------------------------------------------- /kexec-tools/kexec/arch/x86_64/kexec-x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch/x86_64/kexec-x86_64.h -------------------------------------------------------------------------------- /kexec-tools/kexec/arch_reuse_initrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/arch_reuse_initrd.c -------------------------------------------------------------------------------- /kexec-tools/kexec/crashdump-elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/crashdump-elf.c -------------------------------------------------------------------------------- /kexec-tools/kexec/crashdump-xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/crashdump-xen.c -------------------------------------------------------------------------------- /kexec-tools/kexec/crashdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/crashdump.c -------------------------------------------------------------------------------- /kexec-tools/kexec/crashdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/crashdump.h -------------------------------------------------------------------------------- /kexec-tools/kexec/dt-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/dt-ops.c -------------------------------------------------------------------------------- /kexec-tools/kexec/dt-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/dt-ops.h -------------------------------------------------------------------------------- /kexec-tools/kexec/firmware_memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/firmware_memmap.c -------------------------------------------------------------------------------- /kexec-tools/kexec/firmware_memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/firmware_memmap.h -------------------------------------------------------------------------------- /kexec-tools/kexec/fs2dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/fs2dt.c -------------------------------------------------------------------------------- /kexec-tools/kexec/fs2dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/fs2dt.h -------------------------------------------------------------------------------- /kexec-tools/kexec/ifdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/ifdown.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf-boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf-boot.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf-boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf-boot.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf-core.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf-exec.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf-rel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf-rel.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-elf.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-iomem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-iomem.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-lzma.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-sha256.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-syscall.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-uImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-uImage.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-xen.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-xen.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec-zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec-zlib.h -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec.8 -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec.c -------------------------------------------------------------------------------- /kexec-tools/kexec/kexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/kexec.h -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/Makefile.libfdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/Makefile.libfdt -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/TODO -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt.c -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt.h -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/libfdt.h -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /kexec-tools/kexec/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /kexec-tools/kexec/lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/lzma.c -------------------------------------------------------------------------------- /kexec-tools/kexec/mem_regions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/mem_regions.c -------------------------------------------------------------------------------- /kexec-tools/kexec/mem_regions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/mem_regions.h -------------------------------------------------------------------------------- /kexec-tools/kexec/phys_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/phys_arch.c -------------------------------------------------------------------------------- /kexec-tools/kexec/phys_to_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/phys_to_virt.c -------------------------------------------------------------------------------- /kexec-tools/kexec/proc_iomem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/proc_iomem.c -------------------------------------------------------------------------------- /kexec-tools/kexec/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/symbols.c -------------------------------------------------------------------------------- /kexec-tools/kexec/virt_to_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/virt_to_phys.c -------------------------------------------------------------------------------- /kexec-tools/kexec/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec/zlib.c -------------------------------------------------------------------------------- /kexec-tools/kexec_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec_test/Makefile -------------------------------------------------------------------------------- /kexec-tools/kexec_test/kexec_test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec_test/kexec_test.S -------------------------------------------------------------------------------- /kexec-tools/kexec_test/kexec_test16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec_test/kexec_test16.S -------------------------------------------------------------------------------- /kexec-tools/kexec_test/x86-setup-legacy-pic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/kexec_test/x86-setup-legacy-pic.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/alpha/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/arm/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/arm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/arm64/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/arm64/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/arm64/entry.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/arm64/purgatory-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/arm64/purgatory-arm64.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/compat_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/compat_x86_64.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/console-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/console-x86.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/crashdump_backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/crashdump_backup.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/entry32-16-debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/entry32-16-debug.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/entry32-16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/entry32-16.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/entry32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/entry32.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/include/arch/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/include/arch/debug.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/include/arch/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/include/arch/io.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/pic.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/purgatory-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/purgatory-x86.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/purgatory-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/purgatory-x86.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/setup-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/setup-x86.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/stack.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/i386/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/i386/vga.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/console-ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/console-ia64.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/entry.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/io.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/purgatory-ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/purgatory-ia64.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/purgatory-ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/purgatory-ia64.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ia64/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ia64/vga.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/loongarch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/loongarch/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/loongarch/console-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/loongarch/console-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/loongarch/purgatory-loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/loongarch/purgatory-loongarch.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/loongarch/purgatory-loongarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/loongarch/purgatory-loongarch.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/mips/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/mips/console-mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/mips/console-mips.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/mips/purgatory-mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/mips/purgatory-mips.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/mips/purgatory-mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/mips/purgatory-mips.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/console-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/console-ppc.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/misc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/misc.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/ppc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/ppc_asm.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/purgatory-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/purgatory-ppc.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/purgatory-ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/purgatory-ppc.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc/v2wrap_32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc/v2wrap_32.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/console-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/console-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/crashdump_backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/crashdump_backup.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/hvCall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/hvCall.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/hvCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/hvCall.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/misc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/misc.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/ppc64_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/ppc64_asm.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/purgatory-ppc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/purgatory-ppc64.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/purgatory-ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/purgatory-ppc64.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/ppc64/v2wrap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/ppc64/v2wrap.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/s390/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/s390/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/s390/console-s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/s390/console-s390.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/s390/purgatory-s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/s390/purgatory-s390.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/s390/setup-s390.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/s390/setup-s390.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/sh/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/Makefile -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/entry64-32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/entry64-32.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/entry64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/entry64.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/include/arch/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/include/arch/debug.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/include/arch/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/include/arch/io.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/purgatory-x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/purgatory-x86_64.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/purgatory-x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/purgatory-x86_64.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/setup-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/setup-x86_64.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/arch/x86_64/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/arch/x86_64/stack.S -------------------------------------------------------------------------------- /kexec-tools/purgatory/include/purgatory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/include/purgatory.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/include/string.h -------------------------------------------------------------------------------- /kexec-tools/purgatory/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/printf.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/purgatory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/purgatory.c -------------------------------------------------------------------------------- /kexec-tools/purgatory/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/purgatory/string.c -------------------------------------------------------------------------------- /kexec-tools/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util/Makefile -------------------------------------------------------------------------------- /kexec-tools/util/bin-to-hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util/bin-to-hex.c -------------------------------------------------------------------------------- /kexec-tools/util_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/Makefile -------------------------------------------------------------------------------- /kexec-tools/util_lib/compute_ip_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/compute_ip_checksum.c -------------------------------------------------------------------------------- /kexec-tools/util_lib/elf_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/elf_info.c -------------------------------------------------------------------------------- /kexec-tools/util_lib/include/elf_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/include/elf_info.h -------------------------------------------------------------------------------- /kexec-tools/util_lib/include/ip_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/include/ip_checksum.h -------------------------------------------------------------------------------- /kexec-tools/util_lib/include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/include/sha256.h -------------------------------------------------------------------------------- /kexec-tools/util_lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/util_lib/sha256.c -------------------------------------------------------------------------------- /kexec-tools/vmcore-dmesg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/vmcore-dmesg/Makefile -------------------------------------------------------------------------------- /kexec-tools/vmcore-dmesg/vmcore-dmesg.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/vmcore-dmesg/vmcore-dmesg.8 -------------------------------------------------------------------------------- /kexec-tools/vmcore-dmesg/vmcore-dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/kexec-tools/vmcore-dmesg/vmcore-dmesg.c -------------------------------------------------------------------------------- /otheros.bld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aomsin2526/ps3-petitboot-kexec-patched/HEAD/otheros.bld --------------------------------------------------------------------------------