Extract the iso image and the contained squashfs image
$ mkdir android-image
$ bsdtar -C android-image -xf xxx.iso
$ cd android-image
$ unsquashfs system.sfs
Modify system.img size.
$ sudo e2fsck -f ./squashfs-root/system.img
Extract the iso image and the contained squashfs image
$ mkdir android-image
$ bsdtar -C android-image -xf xxx.iso
$ cd android-image
$ unsquashfs system.sfs
Modify system.img size.
$ sudo e2fsck -f ./squashfs-root/system.img
#!/system/bin/sh | |
PATH=/system/bin:/system/xbin | |
houdini_bin=0 | |
dest_dir=/system/lib$1/arm$1 | |
binfmt_misc_dir=/proc/sys/fs/binfmt_misc | |
if [ -z "$1" ]; then | |
if [ "`uname -m`" = "x86_64" ]; then |