Hi,
I am using P2041RDB. I need to add a config DTB at the end of u-boot image by using CONFIG_OF_SEPARATE.
According to common/board_f.c function setup_fdt()
#elif defined CONFIG_OF_SEPARATE
/* FDT is at end of image */
gd->fdt_blob = (ulong *)&_end;
But there is no _end in u-boot.lds of mpc85xx. I have changed _end to __bss_end but u-boot is not finding any DTB at the end of the image.
Thanks in advance for any help you are able to provide.