Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

[S912 DEVICES] AIO tool thread and guides

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [S912 DEVICES] AIO tool thread and guides

    So, just made a FT account, ive made a few mods, tools and a ROM for s912 devices so i might aswell share them over here

    1. Amlogic flash tool and recovery porter - this can flash your devices recovery/boot partition, aswell as port TWRP to your device in 1 click.
    Thread on XDA - https://forum.xda-developers.com/and...-tool-t3745640

    2. Poison Rom V2.0 - a rom bringing speed, stabillity and efficiency to S912 devices, also one of the first to be installed via recovery
    Thread on XDA - https://forum.xda-developers.com/and...n-rom-t3751720

    3. AIO thread - Custom launchers, init.d, firmwares etc
    Thread on XDA - https://forum.xda-developers.com/and...eries-t3737040

    4. Unerstanding and unpacking aml_upgrade_package.img(Manually without customization tool) - a guide to manually unpack, an executable to unpack, and a C# class library to split aml_upgrade_package.img files
    Thread on XDA - https://forum.xda-developers.com/and...cking-t3777685

    5. Might aswell throw this in. Poison Kitchen - A ROM building IDE i built from scratch with full support for Amlogic devices.
    Thread on XDA - https://forum.xda-developers.com/and...n-ide-t3779833


    [GUIDE] Enabling init.d easily in AML devices.

    Create a folder /system/etc/init.d
    Then head to /system/bin and edit Preinstall.sh

    Remove all content from the file and replace it with this

    #!/system/bin/sh
    mount -o remount,rw /system
    chmod 777 /system/etc/init.d
    for script in $(ls /system/etc/init.d)
    do
    chmod 775 /system/etc/init.d/$script
    sh /system/etc/init.d/$script
    done

    Thats it.
    Why does it work?
    Amlogic firmware has that script run on 1st boot to install /system/preinstall/*.apk
    We just made a hook(Thanks amlogic)



    More will be added when i find the time..
    Last edited by ricky divjakovski; 04-22-2018, 19:14.
Working...
X