编译uboot时如何配置?

How to configure when compiling Uboot?

我按照This project中的说明进行了编译,卡在了Uboot的编译中
我完全不知道如何进行以下配置
# add CONFIG_RSA, CONFIG_FIT_SIGNATURE, CONFIG_CMD_EXT2 # change the environment config to point to MMC # fix compiled-in config # maybe disable environment manipulation? # maybe change TEXT_BASE, or use mkimage to allow loading by "qemu -bios"?

如何"add CONFIG_RSA, CONFIG_FIT_SIGNATURE, CONFIG_CMD_EXT2"和"change the environment config to point to MMC"? 环境配置是什么?我在 include/configs/vexpress_common.h 里什么也没有找到,我应该自己添加吗?如果是这样,语法是什么。

任何帮助将不胜感激。
谢谢

嗯,也许我可以给你一点帮助。 是的,您需要自己添加这些定义。 将这些添加到 vexpress_common.h:

#define CONFIG_RSA
#define CONFIG_FIT_SIGNATURE
#define CONFIG_CMD_EXT2

我认为他们的意思是选择一种媒体来存储环境参数,例如:

#define CONFIG_ENV_IN_MMC

希望对您有所帮助...