系統(tǒng)System.img解包和重新打包過程
- 把system.img轉(zhuǎn)換成ext4格式
./simg2img system.img system_ext4.img
- 掛載ext4到systemMount目錄進(jìn)行修改
sudo mount system_ext4.img systemMount/ -o loop
- 修改完成后執(zhí)行
./make_ext4fs -s -T -1 -S file_contexts -l 2952790016 -a system system_e2.img systemMount
1.2952790016代表你要打包的system.img大小,這個(gè)值可以參考掛載前system.img的大小
2."-a system",是指這個(gè)img用于android系統(tǒng)第喳,掛載點(diǎn)是/systemMount
3.system_e2.img是生成的文件名奥洼。
4.-s 就是生成ext4的S模式制作
root@ubuntu:/home/ubuntu64/bkm02a/systemImg# ./make_ext4fs
Expected filename after options
make_ext4fs [ -l <len> ] [ -j <journal size> ] [ -b <block_size> ]
[ -g <blocks per group> ] [ -i <inodes> ] [ -I <inode size> ]
[ -L <label> ] [ -f ] [ -a <android mountpoint> ] [ -u ]
[ -S file_contexts ] [ -C fs_config ] [ -T timestamp ]
[ -z | -s ] [ -w ] [ -c ] [ -J ] [ -v ] [ -B <block_list_file> ]
[ -d <base_alloc_file_in> ] [ -D <base_alloc_file_out> ]
<filename> [[<directory>] <target_out_directory>]
注意事項(xiàng)
file_contexts 文件7.0的系統(tǒng)里沒有膀曾,是file_contexts.bin文件需要轉(zhuǎn)換
文件路徑:out/target/product/msm8937_64/root/file_contexts.bin
鏈接:https://pan.baidu.com/s/1cSXXwtFvIbMZYvbzRN952w
提取碼:hacp
file_contexts.bin 轉(zhuǎn)換成 file_contexts
$ ./sefcontext -o file_contexts file_contexts.bin
file_contexts 轉(zhuǎn)換成 file_contexts.bin
$ ./sefcontext_compile -o file_contexts.bin file_contexts