├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── doc ├── 010-templates │ ├── certfile.bt │ ├── pup.bt │ └── stdint.bt └── ideas.md ├── fusefs-dbgme.py ├── httpd.py ├── pyproject.toml ├── src └── ps3mfw │ ├── __init__.py │ ├── certfile.py │ ├── fs.py │ ├── io_extras.py │ ├── keys.py │ ├── pup.py │ ├── tar.py │ ├── tools │ ├── __init__.py │ └── ps3mfw.py │ └── util.py ├── tests ├── __init__.py └── ps3mfw │ ├── __init__.py │ ├── http_ranges_server.py │ ├── test_certfile.py │ └── test_pup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ps3mfw-ng 2 | PS3 Modified Firmware Builder - Next Generation 3 | -------------------------------------------------------------------------------- /doc/010-templates/certfile.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/doc/010-templates/certfile.bt -------------------------------------------------------------------------------- /doc/010-templates/pup.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/doc/010-templates/pup.bt -------------------------------------------------------------------------------- /doc/010-templates/stdint.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/doc/010-templates/stdint.bt -------------------------------------------------------------------------------- /doc/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/doc/ideas.md -------------------------------------------------------------------------------- /fusefs-dbgme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/fusefs-dbgme.py -------------------------------------------------------------------------------- /httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/httpd.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ps3mfw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/__init__.py -------------------------------------------------------------------------------- /src/ps3mfw/certfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/certfile.py -------------------------------------------------------------------------------- /src/ps3mfw/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/fs.py -------------------------------------------------------------------------------- /src/ps3mfw/io_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/io_extras.py -------------------------------------------------------------------------------- /src/ps3mfw/keys.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ps3mfw/pup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/pup.py -------------------------------------------------------------------------------- /src/ps3mfw/tar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ps3mfw/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ps3mfw/tools/ps3mfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/tools/ps3mfw.py -------------------------------------------------------------------------------- /src/ps3mfw/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/src/ps3mfw/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ps3mfw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ps3mfw/http_ranges_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/tests/ps3mfw/http_ranges_server.py -------------------------------------------------------------------------------- /tests/ps3mfw/test_certfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/tests/ps3mfw/test_certfile.py -------------------------------------------------------------------------------- /tests/ps3mfw/test_pup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/tests/ps3mfw/test_pup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevinskie/ps3mfw-ng/HEAD/tox.ini --------------------------------------------------------------------------------