├── .gitignore ├── README.md ├── scripts ├── Dump_saves.te ├── SystemRestoreV3.te └── createDirs.te ├── v1 ├── FVI.te ├── ParentalLockRemover.te ├── README.md ├── fwdump.te ├── savedumper.te ├── systemRestore.te └── systemwipe.te └── v2 ├── README.md └── scripts ├── fwDump.te ├── systemRestore.te └── systemwipe.te /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/README.md -------------------------------------------------------------------------------- /scripts/Dump_saves.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/scripts/Dump_saves.te -------------------------------------------------------------------------------- /scripts/SystemRestoreV3.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/scripts/SystemRestoreV3.te -------------------------------------------------------------------------------- /scripts/createDirs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/scripts/createDirs.te -------------------------------------------------------------------------------- /v1/FVI.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/FVI.te -------------------------------------------------------------------------------- /v1/ParentalLockRemover.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/ParentalLockRemover.te -------------------------------------------------------------------------------- /v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/README.md -------------------------------------------------------------------------------- /v1/fwdump.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/fwdump.te -------------------------------------------------------------------------------- /v1/savedumper.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/savedumper.te -------------------------------------------------------------------------------- /v1/systemRestore.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/systemRestore.te -------------------------------------------------------------------------------- /v1/systemwipe.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v1/systemwipe.te -------------------------------------------------------------------------------- /v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v2/README.md -------------------------------------------------------------------------------- /v2/scripts/fwDump.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v2/scripts/fwDump.te -------------------------------------------------------------------------------- /v2/scripts/systemRestore.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v2/scripts/systemRestore.te -------------------------------------------------------------------------------- /v2/scripts/systemwipe.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suchmememanyskill/TegraScript/HEAD/v2/scripts/systemwipe.te --------------------------------------------------------------------------------