├── .gitignore ├── LICENSE ├── README.md ├── bin ├── Imgextractor.exe ├── Readme.md ├── __init__.py ├── bootimg.exe ├── brotli ├── brotli.exe ├── bspatch ├── busybox ├── sdat2img.py ├── sefcontext_decompile ├── sefcontext_decompile.exe └── update-script_2_binary ├── common.py ├── compare.py ├── filelist.py ├── mkota.py └── updater.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/README.md -------------------------------------------------------------------------------- /bin/Imgextractor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/Imgextractor.exe -------------------------------------------------------------------------------- /bin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/Readme.md -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | 4 | pass -------------------------------------------------------------------------------- /bin/bootimg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/bootimg.exe -------------------------------------------------------------------------------- /bin/brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/brotli -------------------------------------------------------------------------------- /bin/brotli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/brotli.exe -------------------------------------------------------------------------------- /bin/bspatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/bspatch -------------------------------------------------------------------------------- /bin/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/busybox -------------------------------------------------------------------------------- /bin/sdat2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/sdat2img.py -------------------------------------------------------------------------------- /bin/sefcontext_decompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/sefcontext_decompile -------------------------------------------------------------------------------- /bin/sefcontext_decompile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/sefcontext_decompile.exe -------------------------------------------------------------------------------- /bin/update-script_2_binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/bin/update-script_2_binary -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/common.py -------------------------------------------------------------------------------- /compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/compare.py -------------------------------------------------------------------------------- /filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/filelist.py -------------------------------------------------------------------------------- /mkota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/mkota.py -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pzqqt/Generic_OTA_Package_Generation_Script/HEAD/updater.py --------------------------------------------------------------------------------