1

我试图在 u-boot 中为 gumstix overostorm 启用安全启动。基于http://www.denx-cs.de/doku/?q=m28verifiedboot

在我准备好 SD 卡后,u-boot 无法启动并给出以下错误消息。

U-Boot SPL 2015.07 (Apr 28 2016 - 13:53:06)
SPL: Please implement spl_start_uboot() for your board
SPL: Direct Linux boot not active!
reading u-boot.img
spl_load_image_fat: error reading image u-boot.img, err - -1
SPL: Please implement spl_start_uboot() for your board
SPL: Direct Linux boot not active!
Failed to mount ext2 filesystem...
spl_load_image_ext: ext4fs mount err - 0

================

这是我正在使用的 u-boot.dts 文件。

/dts-v1/;

/ {
        model = "Keys";

        signature {
                key-dev {
                        required = "conf";
                        algo = "sha1,rsa2048";
                        key-name-hint = "my_key";
                };
        };
};

生成u-boot.dtb,dtc -p 0x1000 /work/u-boot.dts -O dtb -o /work/u-boot.dtb

这些是我添加到 include/configs/omap3_overo.h 的 conf

 #define CONFIG_OF_CONTROL
 #define CONFIG_OF_SEPARATE
 #define CONFIG_FIT
 #define CONFIG_FIT_SIGNATURE
 #define CONFIG_RSA
 #define CONFIG_FIT_VERBOSE

我正在使用以下行编译 u-boot:

使 ARCH=arm CROSS_COMPILE=arm-linux-gnueabi-EXT_DTB=/work/u-boot.dtb all -j4

如果您对如何调试此问题有任何想法,请告诉我。

====================

有更新。

  1. 将 u-boot-dtb.img 名称更改为 u-boot.img 。
  2. 然后板能够启动,但是当我尝试使用 bootm 时会给出以下消息。

**

Overo # 
## Loading kernel from FIT Image at 82000000 ...
   Using 'conf@1' configuration
   Verifying Hash Integrity ... sha1,rsa2048:my_keyRSA: Can't find Modular Exp implementation
RSA: Can't find Modular Exp implementation
- Failed to verify required signature 'key-my_key'
Bad Data Hash
ERROR: can't get kernel image!
Overo #

**

如doc/uImage.FIT/beaglebone_vboot.txt中提到的,我尝试了脚本-tools/fit_check_sign,它的输出是正常的。能够验证签名。

所以仍然不知道,确切的问题是什么,为什么我会收到上述错误消息。我搜索了 UCLASS_MOD_EXP, /* RSA Mod Exp device */,但没有得到太多信息。

什么是 RSA Mod Exp 设备以及如何确保我拥有它?

调试的任何输入都将非常有帮助。

编辑 :

diff include/configs/omap3_overo.h ../../u-boot2015.07/include/configs/omap3_overo.h 
        191a192,199
        > 
        > #define CONFIG_OF_CONTROL                                                               
        > #define CONFIG_OF_SEPARATE  
        > #define CONFIG_FIT
        > #define CONFIG_FIT_SIGNATURE
        > #define CONFIG_RSA
        > #define CONFIG_FIT_VERBOSE
        >
4

1 回答 1

1

好吧,第一个要解决的问题在这里:

reading u-boot.img
spl_load_image_fat: error reading image u-boot.img, err - -1

那么你的 SD 卡有 u-boot.img 吗?请注意,您链接到的示例执行 SPL,而是执行旧样式(但仍然有效且受支持)的 imximage 格式,因为它位于 i.MX 上并且您使用的是 OMAP3 平台。在这种情况下,阅读 doc/uImage.FIT/beaglebone_vboot.txt 对您非常有帮助,因为 am335x(在 beaglebone 板上找到)是 OMAP3 部件的演变,而不是不同的 SoC 供应商(例如 i.MX 与 OMAP3 是)。

编辑:现在我们正在加载正确的文件,在 v2015.07 中这些还没有迁移到 Kconfig。您是否启用了 CONFIG_RSA?查看在各种配置头和树的其余部分中的 ENABLE_VBOOT 下做了什么,您将需要做类似的事情。

于 2016-05-01T15:31:25.653 回答