为什么使用 uImage 而不是 zImage
Why using a uImage instead of a zImage
我正在尝试了解 zImage 和 uImage 之间的区别。
据我了解,uImage
是由 运行 mkimage
在 Image
上获得的,因此它添加了一个 U-Boot 包装器(我不知道它到底包含什么)包含一个 header 加上加载地址和入口点,也许 "extra informations" 我不知道。
另一方面,zImage
是压缩的 Image
,它不包含加载地址和入口点(我的想法,如果我错了请纠正我)但也U-Boot 可以使用 bootz
.
加载它
在这种情况下,为什么使用 uImage
而不是 zImage
?
我很想知道 zImage 和 uImage 的格式是什么 你能推荐一些参考资料吗?
这不太对。虽然用于制作通常称为 uImage 的 "legacy" u-boot header 可以是任何东西,包括在 arch/arm/boot/Image 下找到的图像,但最常见的是 zImage 文件.这是因为历史上不支持在 U-Boot 中直接启动 zImage,并且因为 zImage 不提供数据校验和,uImage 具有可用内容的 crc32。
zImage 文件是 stand-alone 可执行文件。遗留 "uImage" 格式没有正式记录在 U-Boot 中,但可以通过阅读代码来理解。在大多数情况下,您现在不想使用 "uImage",而是希望使用 FIT 图像,它在 U-Boot 来源的 doc/uImage.FIT 目录中有许多文档。
In my understanding uImage is got by running mkimage on the Image
您的理解只对了一部分。
uImage 可以包含任何类型的文件,并不限于 Linux Image 文件。事实上,它不太可能是(未压缩的)Image 文件(因为这不是常规的 make 选项)。
In the other hand the zImage is the compressed Image, it doesn't contain the load address and entry point(what i think, correct me if i'am [sic] wrong)
你错了,zImage 确实包含内核的加载地址和入口点。需要加载地址才能将内核映像解压缩到正确的 RAM 地址。解压后需要内核入口点才能执行
为 ARM 构建 Image 和 zImage 时,Makefile 使用
ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
应该转换为物理内存的开始 + 0x8000。
zImage本身(即自解压程序)是PIC,位置无关代码。 zImage 可以加载到 RAM 中的任何位置,并在它的首地址执行,即它的入口点是它的加载地址。
In this case why using a uImage instead of a zImage?
对于旧版本的 U-Boot,别无选择,因为 bootz 命令可能不适用于 Linux 内核。
现在可能是主观选择了。
请注意,Linux 内核社区对在内核中支持 U-Boot 存在一些不满。 IOW 如果有人按照他们的方式行事,我的印象是您将无法从主线源构建 uImage。
I'am [sic] curious to learn what are the formats of a zImage and a uImage could you please suggest some references ?
zImage 的布局基本上由其链接器规范给出。
对于 ARM,请参阅 arch/arm/boot/compressed/vmlinux.lds.S。
请注意,_magic_start 包含无意义的加载地址。 Vincent Sanders 的第 5 节中也提到了这一点 Booting ARM Linux
The zImage has a magic number and some useful information near its beginning.
Table 2. Useful fields in zImage head code
Offset into zImage Value Description
0x24 0x016F2818 Magic number used to identify this is an ARM Linux zImage
0x28 start address The address the zImage starts at
0x2C end address The address the zImage ends at
The start and end offsets can be used to determine the length of the compressed image (size = end - start).
...
The start address is usually 0 as the zImage code is position independent.
但是请注意,ARM 启动要求已被 Russel King 的 Documentation/arm/booting
取代
uImage 的布局只是 U-Boot 头文件加上图像文件,无论是什么。
(希望我写的没有和 Tom Rini 写的相矛盾。)
我正在尝试了解 zImage 和 uImage 之间的区别。
据我了解,uImage
是由 运行 mkimage
在 Image
上获得的,因此它添加了一个 U-Boot 包装器(我不知道它到底包含什么)包含一个 header 加上加载地址和入口点,也许 "extra informations" 我不知道。
另一方面,zImage
是压缩的 Image
,它不包含加载地址和入口点(我的想法,如果我错了请纠正我)但也U-Boot 可以使用 bootz
.
在这种情况下,为什么使用
uImage
而不是zImage
?我很想知道 zImage 和 uImage 的格式是什么 你能推荐一些参考资料吗?
这不太对。虽然用于制作通常称为 uImage 的 "legacy" u-boot header 可以是任何东西,包括在 arch/arm/boot/Image 下找到的图像,但最常见的是 zImage 文件.这是因为历史上不支持在 U-Boot 中直接启动 zImage,并且因为 zImage 不提供数据校验和,uImage 具有可用内容的 crc32。
zImage 文件是 stand-alone 可执行文件。遗留 "uImage" 格式没有正式记录在 U-Boot 中,但可以通过阅读代码来理解。在大多数情况下,您现在不想使用 "uImage",而是希望使用 FIT 图像,它在 U-Boot 来源的 doc/uImage.FIT 目录中有许多文档。
In my understanding uImage is got by running mkimage on the Image
您的理解只对了一部分。
uImage 可以包含任何类型的文件,并不限于 Linux Image 文件。事实上,它不太可能是(未压缩的)Image 文件(因为这不是常规的 make 选项)。
In the other hand the zImage is the compressed Image, it doesn't contain the load address and entry point(what i think, correct me if i'am [sic] wrong)
你错了,zImage 确实包含内核的加载地址和入口点。需要加载地址才能将内核映像解压缩到正确的 RAM 地址。解压后需要内核入口点才能执行
为 ARM 构建 Image 和 zImage 时,Makefile 使用
ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
应该转换为物理内存的开始 + 0x8000。
zImage本身(即自解压程序)是PIC,位置无关代码。 zImage 可以加载到 RAM 中的任何位置,并在它的首地址执行,即它的入口点是它的加载地址。
In this case why using a uImage instead of a zImage?
对于旧版本的 U-Boot,别无选择,因为 bootz 命令可能不适用于 Linux 内核。
现在可能是主观选择了。
请注意,Linux 内核社区对在内核中支持 U-Boot 存在一些不满。 IOW 如果有人按照他们的方式行事,我的印象是您将无法从主线源构建 uImage。
I'am [sic] curious to learn what are the formats of a zImage and a uImage could you please suggest some references ?
zImage 的布局基本上由其链接器规范给出。
对于 ARM,请参阅 arch/arm/boot/compressed/vmlinux.lds.S。
请注意,_magic_start 包含无意义的加载地址。 Vincent Sanders 的第 5 节中也提到了这一点 Booting ARM Linux
The zImage has a magic number and some useful information near its beginning.
Table 2. Useful fields in zImage head code
Offset into zImage Value Description
0x24 0x016F2818 Magic number used to identify this is an ARM Linux zImage
0x28 start address The address the zImage starts at
0x2C end address The address the zImage ends at
The start and end offsets can be used to determine the length of the compressed image (size = end - start).
...
The start address is usually 0 as the zImage code is position independent.
但是请注意,ARM 启动要求已被 Russel King 的 Documentation/arm/booting
取代uImage 的布局只是 U-Boot 头文件加上图像文件,无论是什么。
(希望我写的没有和 Tom Rini 写的相矛盾。)