├── .gitignore ├── CHANGELOG.md ├── CHANGELOG_CN.md ├── LICENSE ├── README.md ├── README_CN.md ├── __init__.py ├── aapt ├── adb ├── apktool ├── autopatch ├── __init__.py ├── autopatch.py ├── autopatch.xsd ├── changelist.py ├── config.py ├── decode_ota.py ├── diff_patch.py ├── error.py ├── precondition.py ├── rejector.py └── target_finder.py ├── baksmali ├── bootimgpack ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── __init__.py ├── flash.py ├── internal │ ├── __init__.py │ ├── bootimg.py │ ├── common-v1 │ │ ├── README.md │ │ ├── abootimg │ │ ├── abootimg-pack-initrd │ │ ├── abootimg-unpack-initrd │ │ ├── lz4 │ │ ├── lz4-pack-initrd │ │ ├── lz4-unpack-initrd │ │ ├── pack.sh │ │ └── unpack.sh │ ├── common │ │ ├── README.md │ │ ├── minigzip │ │ ├── mkbootfs │ │ ├── mkbootimg │ │ ├── pack.sh │ │ ├── unpack-bootimg.pl │ │ ├── unpack.sh │ │ └── unpackbootimg │ ├── imgformat.py │ ├── mtk-v1 │ │ ├── mkbootfs │ │ ├── mkbootimg │ │ ├── pack.sh │ │ ├── readme │ │ ├── repack.pl │ │ ├── unpack.pl │ │ └── unpack.sh │ ├── mtk │ │ ├── README.md │ │ ├── mkimage │ │ ├── mkmtkbootimg │ │ ├── mtkbootroot.sh │ │ ├── pack.sh │ │ ├── unpack-mtk-bootimg.pl │ │ └── unpack.sh │ ├── param.py │ ├── qcom │ │ ├── ARM │ │ │ ├── README.md │ │ │ ├── bash │ │ │ ├── cpio │ │ │ ├── file │ │ │ ├── grep │ │ │ ├── gzip │ │ │ ├── lz4 │ │ │ ├── lzma │ │ │ ├── lzop │ │ │ ├── magic.mgc │ │ │ ├── mkboot │ │ │ ├── mkbootfs │ │ │ ├── mkbootimg │ │ │ ├── od │ │ │ ├── wrapper │ │ │ └── xz │ │ ├── README.md │ │ ├── dtbTool │ │ ├── dtbToolCM │ │ ├── dtbtool.txt │ │ ├── dtc │ │ ├── lz4 │ │ ├── mkboot │ │ ├── mkbootfs │ │ ├── mkbootimg │ │ ├── pack.sh │ │ └── unpack.sh │ ├── sony │ │ ├── README.md │ │ ├── mkelf.py │ │ ├── pack.sh │ │ ├── unpack.sh │ │ └── unpack_boot_sony.py │ └── toolkit.xml ├── pack_bootimg.py ├── pull │ ├── __init__.py │ ├── command.py │ ├── fstab.py │ ├── imagetype.py │ ├── kk_fstab.xml │ ├── mtk_fstab.xml │ ├── mtkpull.py │ ├── mtkpush.py │ ├── normal_fstab.xml │ ├── pull.py │ ├── push.py │ └── utils.py ├── pull_boot_recovery.py ├── ui │ ├── __init__.py │ └── main.py └── unpack_bootimg.py ├── check-su ├── classtobosp ├── common ├── __init__.py └── andprop.py ├── config ├── Makefile.other ├── Makefile.template ├── cert.py ├── config_prebuilt.py ├── density.cfg ├── getresolution ├── gitignore.template └── makeconfig ├── decode_all ├── dedat ├── fastboot ├── flyme ├── formatters ├── __init__.py ├── android_manifest.py ├── common.py ├── format.py ├── idtoname.py ├── log.py ├── name2num.py ├── nametoid.py ├── num2name.py └── rmline.sh ├── helpdoc ├── README.md ├── __init__.py ├── en │ ├── help.xml │ ├── help_autofix.xml │ ├── help_config.xml │ ├── help_fullota.xml │ ├── help_newproject.xml │ ├── help_patchall.xml │ └── help_upgrade.xml ├── help.py ├── locale ├── locale_cn └── zh_CN │ ├── help.xml │ ├── help_autofix.xml │ ├── help_config.xml │ ├── help_fullota.xml │ ├── help_newproject.xml │ ├── help_patchall.xml │ └── help_upgrade.xml ├── idtoname ├── lib64 └── libc++.so ├── log ├── makeconfig ├── methodtobosp ├── name2num ├── nametoid ├── num2name ├── otadiff ├── otanormalize ├── pack_bootimg ├── pull ├── pull_boot_recovery ├── push ├── reverses ├── README.md ├── __init__.py ├── apktool.jar ├── apktool.sh ├── common.py ├── de-dat │ ├── README.md │ ├── blockimgdiff.py │ ├── dedat.sh │ ├── img2sdat.py │ ├── make_ext4fs │ ├── rangelib.py │ ├── rimg2sdat │ ├── sdat2img.py │ └── sparse_img.py ├── de-oat │ ├── README.md │ ├── oat2dex.jar │ └── oat2dex.sh ├── de-odex │ ├── README.md │ ├── baksmali.jar │ ├── baksmali.sh │ ├── deodex.sh │ ├── smali.jar │ └── smali.sh ├── decode_all.sh ├── deoat.py ├── deodex.py ├── otanormalize.py └── zipformatter.py ├── rmline ├── sepolicy_inject ├── smali ├── smaliparser ├── Content.py ├── EntryUsed.py ├── FormatSmaliLib.py ├── LibUtils.py ├── Replace.py ├── SAutoCom.py ├── SCheck ├── SCheck.py ├── Smali.py ├── SmaliClass.py ├── SmaliEntry.py ├── SmaliEntryFactory.py ├── SmaliField.py ├── SmaliFileReplace.py ├── SmaliLib.py ├── SmaliLine.py ├── SmaliMethod.py ├── SmaliParser.py ├── SmaliSubClass.py ├── SmaliTest.py ├── __init__.py ├── autocomplete.xml ├── classtobosp ├── help │ ├── reject_advice │ ├── reject_success │ ├── smalitobosp_advice │ └── smalitobosp_success ├── methodtobosp ├── reject.py ├── tobosp.py └── utils.py ├── su-chmod ├── su-pull ├── su-push ├── su-tools ├── check-su ├── phone-check-su ├── phone-chmod ├── phone-cp ├── su-chmod ├── su-pull └── su-push ├── unpack_bootimg ├── workflow ├── __init__.py ├── coron.py ├── workflow.py └── workflow.xml └── zipalign /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | English | [简体中文](./CHANGELOG_CN.md) 2 | 3 | - To be translated. 4 | -------------------------------------------------------------------------------- /CHANGELOG_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/CHANGELOG_CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/README_CN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aapt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/aapt -------------------------------------------------------------------------------- /adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/adb -------------------------------------------------------------------------------- /apktool: -------------------------------------------------------------------------------- 1 | reverses/apktool.sh -------------------------------------------------------------------------------- /autopatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopatch/autopatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/autopatch.py -------------------------------------------------------------------------------- /autopatch/autopatch.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/autopatch.xsd -------------------------------------------------------------------------------- /autopatch/changelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/changelist.py -------------------------------------------------------------------------------- /autopatch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/config.py -------------------------------------------------------------------------------- /autopatch/decode_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/decode_ota.py -------------------------------------------------------------------------------- /autopatch/diff_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/diff_patch.py -------------------------------------------------------------------------------- /autopatch/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/error.py -------------------------------------------------------------------------------- /autopatch/precondition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/precondition.py -------------------------------------------------------------------------------- /autopatch/rejector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/rejector.py -------------------------------------------------------------------------------- /autopatch/target_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/autopatch/target_finder.py -------------------------------------------------------------------------------- /baksmali: -------------------------------------------------------------------------------- 1 | reverses/de-odex/baksmali.sh -------------------------------------------------------------------------------- /bootimgpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/.gitignore -------------------------------------------------------------------------------- /bootimgpack/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/CONTRIBUTORS.md -------------------------------------------------------------------------------- /bootimgpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/LICENSE -------------------------------------------------------------------------------- /bootimgpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/README.md -------------------------------------------------------------------------------- /bootimgpack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootimgpack/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/flash.py -------------------------------------------------------------------------------- /bootimgpack/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootimgpack/internal/bootimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/bootimg.py -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/README.md -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/abootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/abootimg -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/abootimg-pack-initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/abootimg-pack-initrd -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/abootimg-unpack-initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/abootimg-unpack-initrd -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/lz4 -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/lz4-pack-initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/lz4-pack-initrd -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/lz4-unpack-initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/lz4-unpack-initrd -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/pack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/common-v1/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common-v1/unpack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/README.md -------------------------------------------------------------------------------- /bootimgpack/internal/common/minigzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/minigzip -------------------------------------------------------------------------------- /bootimgpack/internal/common/mkbootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/mkbootfs -------------------------------------------------------------------------------- /bootimgpack/internal/common/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/mkbootimg -------------------------------------------------------------------------------- /bootimgpack/internal/common/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/pack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/common/unpack-bootimg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/unpack-bootimg.pl -------------------------------------------------------------------------------- /bootimgpack/internal/common/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/unpack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/common/unpackbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/common/unpackbootimg -------------------------------------------------------------------------------- /bootimgpack/internal/imgformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/imgformat.py -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/mkbootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/mkbootfs -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/mkbootimg -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/pack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/readme -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/repack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/repack.pl -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/unpack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/unpack.pl -------------------------------------------------------------------------------- /bootimgpack/internal/mtk-v1/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk-v1/unpack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/README.md: -------------------------------------------------------------------------------- 1 | 2 | Support boot.img of MTK 2.3~4.2 3 | -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/mkimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk/mkimage -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/mkmtkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk/mkmtkbootimg -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/mtkbootroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk/mtkbootroot.sh -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk/pack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/unpack-mtk-bootimg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk/unpack-mtk-bootimg.pl -------------------------------------------------------------------------------- /bootimgpack/internal/mtk/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/mtk/unpack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/param.py -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/README.md -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/bash -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/cpio -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/file -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/grep -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/gzip -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/lz4 -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/lzma -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/lzop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/lzop -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/magic.mgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/magic.mgc -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/mkboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/mkboot -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/mkbootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/mkbootfs -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/mkbootimg -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/od: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/od -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/wrapper -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/ARM/xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/ARM/xz -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/README.md -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/dtbTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/dtbTool -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/dtbToolCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/dtbToolCM -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/dtbtool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/dtbtool.txt -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/dtc -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/lz4 -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/mkboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/mkboot -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/mkbootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/mkbootfs -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/mkbootimg -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/pack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/qcom/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/qcom/unpack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/sony/README.md: -------------------------------------------------------------------------------- 1 | 2 | Support boot.img of Sony 2.3~4.2 3 | -------------------------------------------------------------------------------- /bootimgpack/internal/sony/mkelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/sony/mkelf.py -------------------------------------------------------------------------------- /bootimgpack/internal/sony/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/sony/pack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/sony/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/sony/unpack.sh -------------------------------------------------------------------------------- /bootimgpack/internal/sony/unpack_boot_sony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/sony/unpack_boot_sony.py -------------------------------------------------------------------------------- /bootimgpack/internal/toolkit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/internal/toolkit.xml -------------------------------------------------------------------------------- /bootimgpack/pack_bootimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pack_bootimg.py -------------------------------------------------------------------------------- /bootimgpack/pull/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootimgpack/pull/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/command.py -------------------------------------------------------------------------------- /bootimgpack/pull/fstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/fstab.py -------------------------------------------------------------------------------- /bootimgpack/pull/imagetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/imagetype.py -------------------------------------------------------------------------------- /bootimgpack/pull/kk_fstab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/kk_fstab.xml -------------------------------------------------------------------------------- /bootimgpack/pull/mtk_fstab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/mtk_fstab.xml -------------------------------------------------------------------------------- /bootimgpack/pull/mtkpull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/mtkpull.py -------------------------------------------------------------------------------- /bootimgpack/pull/mtkpush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/mtkpush.py -------------------------------------------------------------------------------- /bootimgpack/pull/normal_fstab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/normal_fstab.xml -------------------------------------------------------------------------------- /bootimgpack/pull/pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/pull.py -------------------------------------------------------------------------------- /bootimgpack/pull/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/push.py -------------------------------------------------------------------------------- /bootimgpack/pull/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull/utils.py -------------------------------------------------------------------------------- /bootimgpack/pull_boot_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/pull_boot_recovery.py -------------------------------------------------------------------------------- /bootimgpack/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootimgpack/ui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/ui/main.py -------------------------------------------------------------------------------- /bootimgpack/unpack_bootimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/bootimgpack/unpack_bootimg.py -------------------------------------------------------------------------------- /check-su: -------------------------------------------------------------------------------- 1 | su-tools/check-su -------------------------------------------------------------------------------- /classtobosp: -------------------------------------------------------------------------------- 1 | smaliparser/classtobosp -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tangliuxiang' 2 | -------------------------------------------------------------------------------- /common/andprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/common/andprop.py -------------------------------------------------------------------------------- /config/Makefile.other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/Makefile.other -------------------------------------------------------------------------------- /config/Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/Makefile.template -------------------------------------------------------------------------------- /config/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/cert.py -------------------------------------------------------------------------------- /config/config_prebuilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/config_prebuilt.py -------------------------------------------------------------------------------- /config/density.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/density.cfg -------------------------------------------------------------------------------- /config/getresolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/getresolution -------------------------------------------------------------------------------- /config/gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/gitignore.template -------------------------------------------------------------------------------- /config/makeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/config/makeconfig -------------------------------------------------------------------------------- /decode_all: -------------------------------------------------------------------------------- 1 | reverses/decode_all.sh -------------------------------------------------------------------------------- /dedat: -------------------------------------------------------------------------------- 1 | reverses/de-dat/dedat.sh -------------------------------------------------------------------------------- /fastboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/fastboot -------------------------------------------------------------------------------- /flyme: -------------------------------------------------------------------------------- 1 | workflow/coron.py -------------------------------------------------------------------------------- /formatters/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /formatters/android_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/android_manifest.py -------------------------------------------------------------------------------- /formatters/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/common.py -------------------------------------------------------------------------------- /formatters/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/format.py -------------------------------------------------------------------------------- /formatters/idtoname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/idtoname.py -------------------------------------------------------------------------------- /formatters/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/log.py -------------------------------------------------------------------------------- /formatters/name2num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/name2num.py -------------------------------------------------------------------------------- /formatters/nametoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/nametoid.py -------------------------------------------------------------------------------- /formatters/num2name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/num2name.py -------------------------------------------------------------------------------- /formatters/rmline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/formatters/rmline.sh -------------------------------------------------------------------------------- /helpdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/README.md -------------------------------------------------------------------------------- /helpdoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdoc/en/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help.xml -------------------------------------------------------------------------------- /helpdoc/en/help_autofix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help_autofix.xml -------------------------------------------------------------------------------- /helpdoc/en/help_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help_config.xml -------------------------------------------------------------------------------- /helpdoc/en/help_fullota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help_fullota.xml -------------------------------------------------------------------------------- /helpdoc/en/help_newproject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help_newproject.xml -------------------------------------------------------------------------------- /helpdoc/en/help_patchall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help_patchall.xml -------------------------------------------------------------------------------- /helpdoc/en/help_upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/en/help_upgrade.xml -------------------------------------------------------------------------------- /helpdoc/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/help.py -------------------------------------------------------------------------------- /helpdoc/locale: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /helpdoc/locale_cn: -------------------------------------------------------------------------------- 1 | zh_CN 2 | -------------------------------------------------------------------------------- /helpdoc/zh_CN/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help.xml -------------------------------------------------------------------------------- /helpdoc/zh_CN/help_autofix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help_autofix.xml -------------------------------------------------------------------------------- /helpdoc/zh_CN/help_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help_config.xml -------------------------------------------------------------------------------- /helpdoc/zh_CN/help_fullota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help_fullota.xml -------------------------------------------------------------------------------- /helpdoc/zh_CN/help_newproject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help_newproject.xml -------------------------------------------------------------------------------- /helpdoc/zh_CN/help_patchall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help_patchall.xml -------------------------------------------------------------------------------- /helpdoc/zh_CN/help_upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/helpdoc/zh_CN/help_upgrade.xml -------------------------------------------------------------------------------- /idtoname: -------------------------------------------------------------------------------- 1 | formatters/idtoname.py -------------------------------------------------------------------------------- /lib64/libc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/lib64/libc++.so -------------------------------------------------------------------------------- /log: -------------------------------------------------------------------------------- 1 | formatters/log.py -------------------------------------------------------------------------------- /makeconfig: -------------------------------------------------------------------------------- 1 | config/makeconfig -------------------------------------------------------------------------------- /methodtobosp: -------------------------------------------------------------------------------- 1 | smaliparser/methodtobosp -------------------------------------------------------------------------------- /name2num: -------------------------------------------------------------------------------- 1 | formatters/name2num.py -------------------------------------------------------------------------------- /nametoid: -------------------------------------------------------------------------------- 1 | formatters/nametoid.py -------------------------------------------------------------------------------- /num2name: -------------------------------------------------------------------------------- 1 | formatters/num2name.py -------------------------------------------------------------------------------- /otadiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/otadiff -------------------------------------------------------------------------------- /otanormalize: -------------------------------------------------------------------------------- 1 | reverses/otanormalize.py -------------------------------------------------------------------------------- /pack_bootimg: -------------------------------------------------------------------------------- 1 | bootimgpack/pack_bootimg.py -------------------------------------------------------------------------------- /pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/pull -------------------------------------------------------------------------------- /pull_boot_recovery: -------------------------------------------------------------------------------- 1 | bootimgpack/pull_boot_recovery.py -------------------------------------------------------------------------------- /push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/push -------------------------------------------------------------------------------- /reverses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/README.md -------------------------------------------------------------------------------- /reverses/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /reverses/apktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/apktool.jar -------------------------------------------------------------------------------- /reverses/apktool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/apktool.sh -------------------------------------------------------------------------------- /reverses/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/common.py -------------------------------------------------------------------------------- /reverses/de-dat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/README.md -------------------------------------------------------------------------------- /reverses/de-dat/blockimgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/blockimgdiff.py -------------------------------------------------------------------------------- /reverses/de-dat/dedat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/dedat.sh -------------------------------------------------------------------------------- /reverses/de-dat/img2sdat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/img2sdat.py -------------------------------------------------------------------------------- /reverses/de-dat/make_ext4fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/make_ext4fs -------------------------------------------------------------------------------- /reverses/de-dat/rangelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/rangelib.py -------------------------------------------------------------------------------- /reverses/de-dat/rimg2sdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/rimg2sdat -------------------------------------------------------------------------------- /reverses/de-dat/sdat2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/sdat2img.py -------------------------------------------------------------------------------- /reverses/de-dat/sparse_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-dat/sparse_img.py -------------------------------------------------------------------------------- /reverses/de-oat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-oat/README.md -------------------------------------------------------------------------------- /reverses/de-oat/oat2dex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-oat/oat2dex.jar -------------------------------------------------------------------------------- /reverses/de-oat/oat2dex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-oat/oat2dex.sh -------------------------------------------------------------------------------- /reverses/de-odex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-odex/README.md -------------------------------------------------------------------------------- /reverses/de-odex/baksmali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-odex/baksmali.jar -------------------------------------------------------------------------------- /reverses/de-odex/baksmali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-odex/baksmali.sh -------------------------------------------------------------------------------- /reverses/de-odex/deodex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-odex/deodex.sh -------------------------------------------------------------------------------- /reverses/de-odex/smali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-odex/smali.jar -------------------------------------------------------------------------------- /reverses/de-odex/smali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/de-odex/smali.sh -------------------------------------------------------------------------------- /reverses/decode_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/decode_all.sh -------------------------------------------------------------------------------- /reverses/deoat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/deoat.py -------------------------------------------------------------------------------- /reverses/deodex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/deodex.py -------------------------------------------------------------------------------- /reverses/otanormalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/otanormalize.py -------------------------------------------------------------------------------- /reverses/zipformatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/reverses/zipformatter.py -------------------------------------------------------------------------------- /rmline: -------------------------------------------------------------------------------- 1 | formatters/rmline.sh -------------------------------------------------------------------------------- /sepolicy_inject: -------------------------------------------------------------------------------- 1 | ../build/tools/custom_sepolicy.sh -------------------------------------------------------------------------------- /smali: -------------------------------------------------------------------------------- 1 | reverses/de-odex/smali.sh -------------------------------------------------------------------------------- /smaliparser/Content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/Content.py -------------------------------------------------------------------------------- /smaliparser/EntryUsed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/EntryUsed.py -------------------------------------------------------------------------------- /smaliparser/FormatSmaliLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/FormatSmaliLib.py -------------------------------------------------------------------------------- /smaliparser/LibUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/LibUtils.py -------------------------------------------------------------------------------- /smaliparser/Replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/Replace.py -------------------------------------------------------------------------------- /smaliparser/SAutoCom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SAutoCom.py -------------------------------------------------------------------------------- /smaliparser/SCheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SCheck -------------------------------------------------------------------------------- /smaliparser/SCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SCheck.py -------------------------------------------------------------------------------- /smaliparser/Smali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/Smali.py -------------------------------------------------------------------------------- /smaliparser/SmaliClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliClass.py -------------------------------------------------------------------------------- /smaliparser/SmaliEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliEntry.py -------------------------------------------------------------------------------- /smaliparser/SmaliEntryFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliEntryFactory.py -------------------------------------------------------------------------------- /smaliparser/SmaliField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliField.py -------------------------------------------------------------------------------- /smaliparser/SmaliFileReplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliFileReplace.py -------------------------------------------------------------------------------- /smaliparser/SmaliLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliLib.py -------------------------------------------------------------------------------- /smaliparser/SmaliLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliLine.py -------------------------------------------------------------------------------- /smaliparser/SmaliMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliMethod.py -------------------------------------------------------------------------------- /smaliparser/SmaliParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliParser.py -------------------------------------------------------------------------------- /smaliparser/SmaliSubClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliSubClass.py -------------------------------------------------------------------------------- /smaliparser/SmaliTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/SmaliTest.py -------------------------------------------------------------------------------- /smaliparser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smaliparser/autocomplete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/autocomplete.xml -------------------------------------------------------------------------------- /smaliparser/classtobosp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/classtobosp -------------------------------------------------------------------------------- /smaliparser/help/reject_advice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/help/reject_advice -------------------------------------------------------------------------------- /smaliparser/help/reject_success: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/help/reject_success -------------------------------------------------------------------------------- /smaliparser/help/smalitobosp_advice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/help/smalitobosp_advice -------------------------------------------------------------------------------- /smaliparser/help/smalitobosp_success: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/help/smalitobosp_success -------------------------------------------------------------------------------- /smaliparser/methodtobosp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/methodtobosp -------------------------------------------------------------------------------- /smaliparser/reject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/reject.py -------------------------------------------------------------------------------- /smaliparser/tobosp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/tobosp.py -------------------------------------------------------------------------------- /smaliparser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/smaliparser/utils.py -------------------------------------------------------------------------------- /su-chmod: -------------------------------------------------------------------------------- 1 | su-tools/su-chmod -------------------------------------------------------------------------------- /su-pull: -------------------------------------------------------------------------------- 1 | su-tools/su-pull -------------------------------------------------------------------------------- /su-push: -------------------------------------------------------------------------------- 1 | su-tools/su-push -------------------------------------------------------------------------------- /su-tools/check-su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/check-su -------------------------------------------------------------------------------- /su-tools/phone-check-su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/phone-check-su -------------------------------------------------------------------------------- /su-tools/phone-chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/phone-chmod -------------------------------------------------------------------------------- /su-tools/phone-cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/phone-cp -------------------------------------------------------------------------------- /su-tools/su-chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/su-chmod -------------------------------------------------------------------------------- /su-tools/su-pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/su-pull -------------------------------------------------------------------------------- /su-tools/su-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/su-tools/su-push -------------------------------------------------------------------------------- /unpack_bootimg: -------------------------------------------------------------------------------- 1 | bootimgpack/unpack_bootimg.py -------------------------------------------------------------------------------- /workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/coron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/workflow/coron.py -------------------------------------------------------------------------------- /workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/workflow/workflow.py -------------------------------------------------------------------------------- /workflow/workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/workflow/workflow.xml -------------------------------------------------------------------------------- /zipalign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlymeOS/tools/HEAD/zipalign --------------------------------------------------------------------------------