u-boot的stubs机制

1. U-Boot版本 1VERSION = 2021 2PATCHLEVEL = 10 3SUBLEVEL = 4EXTRAVERSION = 5NAME = 2. 涉及的文件 include/_exports.h,辅助文件,在包含_exports.h前,定义不同的EXPORT_FUNC来实现不同的功能,其内容为一系列EXPORT_FUNC修饰的函数。 include/exports.h,函数声明。 examples/standalone/stubs.c,用于建立jumptable,将U-Boot的函数指针存入jumptable中。 common/exports.c,初始化jumptable。...