.

common/board\_f.c

1    static int reloc_fdt(void)
2    {
3    #ifndef CONFIG_OF_EMBED
4            if (gd->flags & GD_FLG_SKIP_RELOC)
5                    return 0;
6            if (gd->new_fdt) {
7                    memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
8                    gd->fdt_blob = gd->new_fdt;
9            }
10    #endif
11
12            return 0;
13    }
  • 3번 줄의 CONFIG_OF_EMBED가 정의되어 있어 reloc_fdt함수는 아무런 역할을 수행하지않고 종료합니다.

.

.

.

results matching ""

    No results matching ""