zoukankan      html  css  js  c++  java
  • Unpacking and repacking stock rom .img files

    http://forum.xda-developers.com/galaxy-s2/general/ref-unpacking-repacking-stock-rom-img-t1081239

    OP jazzor

    jazzor

    View Profile View Forum Posts

    16th May 2011, 07:42 AM   |  #1

    OP Member

    Thanks Meter: 140

    51 posts

    Join Date:Joined: Mar 2010

    As most of you are aware, the stock rom tarball is comprised of several .img files which don't seem to be of any file system format and it is difficult at first to see what is inside these files without flashing via Odin.
    Well, thanks to fguy, this thread http://forum.xda-developers.com/show....php?t=1054836 provided me the necessary inspiration to investigate just exactly what are these img made of.
    Hopefully, this will allow easy removal of all the Samsung junk, deodexing, rooting etc etc without going through adb.
    As it turns out, they are simply sparse ext4 images, and the AOSP source tree already contains the necessary utilities to both unpack and repack these img files via "ext4_utils" in system/extras (https://android.googlesource.com/pla...system/extras/)
    For your convenience, I have provided a repackage of the source code for ext4_utils with a simple Makefile, for keen developers to make the necessary tools for unpacking and repacking the stock img files. Making these tools requires a linux development environment, which is beyond the scope of this topic.
    To make the tools, simple extract the attached source code and type "make".
    To unpack the .img file:

    Code:

    ./simg2img factoryfs.img output.img

    To view the contents of .img file:

    Code:

    mkdir tempdir; mount -o loop output.img tempdir

    To repack .img file:

    Code:

    ./mkuserimg.sh -s /some/directory/with/files ./factoryfs_custom.img ext4 ./temp 512M

    As I do not have Odin at the moment, I am not able to test the repacked files can be reflashed successfully. I will test this shortly.
    UPDATE
    I have just tested repacking the stock factoryfs.img. It so happens that the original ext4_utils does not properly preserve permissions on the new ext4 image. I have made a slight modification to the source and reuploaded the zip.
    You can now successfully unpack, remove and change the stock apps, root and modify the stock image using instructions above!!
    I hope this will help people create their own custom roms.
    UPDATE 27th MAY FOR GALAXY S4 TESTING (i9500 i9505)
    A few people have messaged me asking why these tools do not work for the new Galaxy S4. Unfortunately I do not have a Galaxy S4 so I can not test any of these utilities. HOWEVER, it seems there has been quite a bit of updates by Google in the ext4_utils package. I have updated the sources according to 4.2.2 which is the latest version of the tools. I must stress that I DO NOT HAVE A GALAXY S4 TO TEST so don't be expecting miracles. In any case I have uploaded the new code now. As it was before, I have provided a MAKEFILE and you simply type "make" in order to build the tools. They are contained in ext4_utils_new.zip.
    Thanks for your support guys. And I do apologize for replying late to my inbox...
    Update 9th November 2014
    Thanks to qwerty_7564 for providing the fixes for cygwin compilation.
    Ext4 utils new still missing link arguments to compile. Investigating. I will update the sources to that of the 4.3 branch later.
    Update 3rd December 2014
    I have updated the tools to 4.3 branch. Note that no attempts has been made to make this compatible with cygwin as I have no cygwin to test.
    As I have mentioned earlier, I do not have a newer samsung device to test any of these files, use at your own discretion. The new files are in ext4_utils_r4.3.tar.gz and is based on the jb release 2.0.0 branch.

    Attached Files

    File Type: zip
    ext4_utils_cygwin_fixed.zip - [Click for QR Code] (59.8 KB, 4026 views)

    File Type: gz
    ext4_utils_new_cygwin_fixed.tar.gz - [Click for QR Code] (64.9 KB, 3289 views)

    File Type: gz
    ext4_utils_r4.3.tar.gz - [Click for QR Code] (110.0 KB, 5732 views)

    Last edited by jazzor; 4th December 2013 at 01:14 AM. Reason: updated to 4.3

     

     

    如果编译遇到下面错误:

    borou@borou-casa:~/discoduro/BASURILLA/GSII/Varios/ext4_utils$ make
    gcc -I. -DANDROID -c make_ext4fs.c
    gcc -I. -DANDROID -c make_ext4fs_main.c
    gcc -I. -DANDROID -c ext4_utils.c
    gcc -I. -DANDROID -c allocate.c
    gcc -I. -DANDROID -c backed_block.c
    gcc -I. -DANDROID -c output_file.c
    output_file.c:25:18: fatal error: zlib.h: No existe el fichero o el directorio
    compilation terminated.
    make: *** [output_file.o] Error 1

    apt-get install zlib1g-dev

  • 相关阅读:
    Ducking
    MINITAB(二)
    JFreechart
    linux命令0424
    JAVA哈哈镜
    HTML(四)
    The 3n+1 problem
    [转载]:【读书笔记】.NET本质论
    ER图基本步骤
    [从架构到设计]第一回:设计,应该多一点(转载)
  • 原文地址:https://www.cnblogs.com/cute/p/4097506.html
Copyright © 2011-2022 走看看