img及unyaffs文件的解压

img及unyaffs文件的解压
2012-02-13 17:35

详细信息请参考以下网址:

http://blog.chinaunix.net/space.php?uid=25832818&do=blog&id=3039340

 

android image 压缩和解压 (2011-12-11 21:15)

标签:  android  文件夹  下载工具  二进制  分类: android+stuff

android-sdk文件夹下platform存放的是android对应的平台

术语平台表示android本身(platform),包括所有的二进制文件、代码库和工具。SDK中提供的emulator只是android平台中到众多组件之一【google android 揭秘】

 

1.解压文件

下载工具 wget http://unyaffs.googlecode.com/files/unyaffs

并且增加执行权限 chmod 777 unyaffs

解压system.img和userdata.img

unyaffs ./your+image+name.img解压到当前文件夹

解压ramdisk.img

mv ramdisk.img ramdisk.gz

gunzip ramdisk.gz

cpio -id < ./ramdisk

 

2.压缩文件

mkyaffs2image命令完成压缩,该文件在android源码编译完后到out/host/linux-x86/bin

或者直接编译源码

你可能感兴趣的:(img及unyaffs文件的解压)