├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac └── src ├── blz.c ├── blz.h ├── build_pfs0.c ├── build_romfs.c ├── cJSON.c ├── cJSON.h ├── elf2kip.c ├── elf2nro.c ├── elf2nso.c ├── elf64.h ├── elf_common.h ├── filepath.c ├── filepath.h ├── nacptool.c ├── npdmtool.c ├── nxlink.c ├── romfs.c ├── romfs.h ├── sha256.c ├── sha256.h └── types.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/configure.ac -------------------------------------------------------------------------------- /src/blz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/blz.c -------------------------------------------------------------------------------- /src/blz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/blz.h -------------------------------------------------------------------------------- /src/build_pfs0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/build_pfs0.c -------------------------------------------------------------------------------- /src/build_romfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/build_romfs.c -------------------------------------------------------------------------------- /src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/cJSON.c -------------------------------------------------------------------------------- /src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/cJSON.h -------------------------------------------------------------------------------- /src/elf2kip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/elf2kip.c -------------------------------------------------------------------------------- /src/elf2nro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/elf2nro.c -------------------------------------------------------------------------------- /src/elf2nso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/elf2nso.c -------------------------------------------------------------------------------- /src/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/elf64.h -------------------------------------------------------------------------------- /src/elf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/elf_common.h -------------------------------------------------------------------------------- /src/filepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/filepath.c -------------------------------------------------------------------------------- /src/filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/filepath.h -------------------------------------------------------------------------------- /src/nacptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/nacptool.c -------------------------------------------------------------------------------- /src/npdmtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/npdmtool.c -------------------------------------------------------------------------------- /src/nxlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/nxlink.c -------------------------------------------------------------------------------- /src/romfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/romfs.c -------------------------------------------------------------------------------- /src/romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/romfs.h -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/sha256.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/switch-tools/HEAD/src/types.h --------------------------------------------------------------------------------