export CONFIG_SPL_BUILD export CONFIG_SPL_BUILD: 在接下来的编译中, 这个变量为y. 从后面的分析中可以看到, uboot的stage1, stage2阶段的代码用的是同一个Start.S, 只不过在Start.S中用#ifdef CONFIG_SPL_BUILD这种条件编译来区分. 类似的还有其他一些文件. HAVE_VENDOR_COMMON_LIB =(if(if(wildcard(SR...
config SPL bool depends on SUPPORT_SPL prompt "Enable SPL" help If you want to build SPL as well as the normal image, say Y. CONFIG_SUPPORT_SPL表示是否支持SPL功能,一般是在具体arch的Kconfig的版型菜单中,根据需要select
CONFIG_SPL_BUILD := y export CONFIG_SPL_BUILD export CONFIG_SPL_BUILD: 在接下来的编译中, 这个变量为y. 从后面的分析中可以看到, uboot的stage1, stage2阶段的代码用的是同一个Start.S, 只不过在Start.S中用#ifdef CONFIG_SPL_BUILD这种条件编译来区分. 类似的还有其他一些文件. [plain]view ...
#if !defined(CONFIG_SPL_BUILD) #if !defined(CONFIG_XPL_BUILD) static void android_dt_print_fdt_info(const struct fdt_header *fdt) { u32 fdt_size; 2 changes: 1 addition & 1 deletion 2 boot/image-android.c Original file line numberDiff line numberDiff line change @@ -652,7 +652...
struct env_entry { const char *key; char *data; #ifndef CONFIG_SPL_BUILD int (*callback)(const char *name, const char *value, enum env_op op, int flags); #endif int flags; };1 change: 0 additions & 1 deletion 1 lib/hashtable.c Original file line numberDiff line numberDiff line...