前言:
今天大家对“ubuntuimgtype”大致比较注意,姐妹们都想要知道一些“ubuntuimgtype”的相关知识。那么小编在网上汇集了一些有关“ubuntuimgtype””的相关内容,希望小伙伴们能喜欢,朋友们一起来学习一下吧!file命令查看关键信息:
手机boot.img:
通常由2k头部、n pages的kernel、m pages 的ramdisk、x pages的second stage组成的
$ file boot.img boot.img: Android bootimg, kernel (0x40080000), ramdisk (0x44000000), page size: 2048, cmdline (bootopt=64S3,32N2,64N2)
关键参数:
magic: Androidbase = kernel address - 0x8000page sizecmdline
电视的boot.img :
通常由64字节头部、自解压程序、kernel、ramdisk等组成
$ file ../boot.img../boot.img: u-boot legacy uImage, MStar-linux, Linux/ARM, Multi-File Image (Not compressed), 3683426 bytes, Sun Dec 16 08:35:49 2012, Load Address: 0x40208000, Entry Point: 0x40208000, Header CRC: 0x31D11693, Data CRC: 0x2940EEB0
关键参数:
magic : u-boot类型:legecy uImageLoad Address:kernel加载到ram的地址Entry Point :执行的入口地址,通常是Load Address + 64
用mkimage查看电视的boot.img信息:
$ mkimage -l /home/biren/downloads/boot.imgImage Name: MStar-linuxCreated: Sun Dec 16 16:35:49 2012Image Type: ARM Linux Multi-File Image (uncompressed)Data Size: 3683426 Bytes = 3597.10 KiB = 3.51 MiBLoad Address: 40208000Entry Point: 40208000Contents: 主要由以下2个镜像组合 Image 0: 3516928 Bytes = 3434.50 KiB = 3.35 MiB Image 1: 166486 Bytes = 162.58 KiB = 0.16 MiB
头部说明 :
手机boot头部 : 共2K
4字节*2 ,magic , 固定是android4*1, kernel长度,小端(以下都是)4*1,kernel地址,=base地址+0x00008000 (offset)4*1, ramdisk长度4*1,ramdisk地址4*1 ,second stage长度4*1,second stage地址4*1,tags地址4*1,page大小4*2,未使用,固定为0x004*4,板子名字,通常为空4*128,内核命令参数4*8,ID...
例 子:
先解压:
C:\tmp\Gionee_F103_BAK\ddd>bootimg.exe --unpack-bootimgarguments: [bootimg file]bootimg file: boot.imgoutput: kernel[.gz] ramdisk[.gz] second[.gz]found nonstandard ramdisk_addrfound nonstandard second_addrfound nonstandard tags_addrbase: 0x40078000ramdisk_addr: 0x44000000second_addr: 0x40f00000tags_addr: 0x4e000000page_size: 2048name: "1440706504"cmdline: "bootopt=64S3,32N2,64N2"padding_size=2048arguments: [ramdisk file] [directory]ramdisk file: ramdisk.gzdirectory: initrdoutput: cpiolist.txtcompress: True
boot的头部信息:
kernel长度:0x006059B9 即6314425字节,地址:0x40080000
电视uboot头部 : 共64字节
ih_magic:magic,固定为0x27051956,占4字节,uimage格式标志。ih_hcrc:整个头部的crc32校验,占4字节。ih_time:时间戳,占4字节,为16进制,生成的时间。ih_size: 镜像数据大小,即除去头部信息外的数据大小,占4字节。(大端)ih_load:uboot启动过程中,加载到RAM的地址。占4字节。ih_ep: 启动镜像的入口地址,占4字节。ih_dcrc:除去头部信息外数据的crc32校验数值,占4字节。ih_os: 适用的系统。 占1字节。ih_arch:cpu架构ih_type:镜像类型,占1字节。ih_comp:压缩类型,如gzip、lzma等,占1字节。ih_name[IHNMLEN]: 镜像的名称,占32字节。
例 子:
magic : 0x27051956 (固定的)镜像大小:0x00383462 即3683426字节(比boot.img少64B)加载到RAM地址:0x40208000
解包、打包工具:
针对boot的有:
有bootimg.exe, bootimg.py , unpackbootimg , unmkbootimg , mkbootimg等
针对uboot的有:
mkimage , dumpimage
其它说明:
mkimage/dumpimage的安装:
biren@ubuntu:~$ sudo apt-get install uboot-mkimage或者biren@ubuntu:~$ sudo apt-get install u-boot-tools
标签: #ubuntuimgtype