我试图在 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
如果您对如何调试此问题有任何想法,请告诉我。
====================
有更新。
- 将 u-boot-dtb.img 名称更改为 u-boot.img 。
- 然后板能够启动,但是当我尝试使用 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
>