本文主要是介绍uboot下init_sequence_f函数之reloc_fdt,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
reloc_fdt:
static int reloc_fdt(void) { #ifndef CONFIG_OF_EMBEDif (gd->flags & GD_FLG_SKIP_RELOC)return 0;if (gd->new_fdt) {memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);gd->fdt_blob = gd->new_fdt;} #endif
return 0; }
这篇关于uboot下init_sequence_f函数之reloc_fdt的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!