> I'll still try to figure out how to get u-boot to fill all this in. Got it... thanks to "http://www.mail-archive.com/u-boot-us...@lists.sourceforge.net/msg05111.html"
I made sure that CONFIG_OF_LIBFDT and CONFIG_OF_BOARD_SETUP were both present in "u-boot-2009.03/include/configs/EP88x.h". Then added the following to the very end of "u-boot-2009.03/board/ep88x/ep88x.c": #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) void ft_board_setup(void *blob, bd_t *bd) { ft_cpu_setup(blob, bd); } #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */ I suppose I could have put this code in w/o the "#if defined..." and forget about the "CONFIG_OF_BOARD_SETUP" flag since I'm not really using the "fdt boardsetup" command, but whatever. As for my device tree, I reverted back to the original version with nothing filled in and just replaced 0xfa20xxxx with 0xf000xxxx as Gary suggested earlier. Once again, thanks to all those who offered suggestions! _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev