系统相关
首页 > 系统相关> > linux – U-boot.bin和uImage.bin有什么区别

linux – U-boot.bin和uImage.bin有什么区别

作者:互联网

我在u-boot.bin和uImage.bin之间感到困惑.我猜uImage.bin只不过是u-boot.bin的压缩版本,它的大小应该小于u-boot.bin.但在我的构建环境中,我发现u-boot.bin大小小于uImage.bin.

有谁能让我知道u-boot.bin和uImage.bin有什么区别?

解决方法:

uboot.bin是引导加载程序,即uboot,uImage.bin是内核映像

通常,在嵌入式系统中,NAND闪存分为四个部分:

>引导加载程序的分区(这里是uboot.bin)
> uboot保存其环境变量的小分区
>内核的分区(这里是uImage.bin)
> rootfs的分区

标签:linux,linux-kernel,embedded-linux,u-boot
来源: https://codeday.me/bug/20190713/1446549.html