uImage
uImage 是 U-Boot 定义的一种启动镜像格式,由 64 字节的 U-Boot Image header 加上镜像内容构成。
uImage 中的镜像内容,可以是未压缩的 Image,也可以是压缩的 Image。 Linux kernel 编译时生成(依赖 uboot-tools 包中的 mkimage 工具)。但是新版的 Linux kernel 不再生成 uImage 文件。
uImage 文件的启动命令:
bootm kernel addr - dtb addr
其中 kernel addr 即 uImage 所在的内存地址。