
Dear xiangfu,
In message 1279509256-4524-1-git-send-email-xiangfu@openmobilefree.net you wrote:
in my Ben Nanonote board. there is no flash. I got a error about no "CONFIG_SYS_FLASH_BASE" define. so I move this line to "#ifndef CONFIG_SYS_NO_FLASH"
I have tested with "MAKEALL". no warning or error relate this patch.
this patch is base on [master] branch commit: 1f82ff4777f360e92aa37bbbed647f7b9d9d2044
Signed-off-by: Xiangfu Liu xiangfu@sharism.cc
arch/mips/lib/board.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c index b2d113e..0af09c6 100644 --- a/arch/mips/lib/board.c +++ b/arch/mips/lib/board.c @@ -349,9 +349,9 @@ void board_init_r (gd_t *id, ulong dest_addr) size = flash_init(); display_flash_config (size); bd->bi_flashsize = size;
- bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
#endif
- bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */ #else
This is not a good idea, as it will leave the bd->bi_flash* variables uninitialized. Rather explicitly set these to 0, please.
Best regards,
Wolfgang Denk