diff options
Diffstat (limited to 'common/board_f.c')
| -rw-r--r-- | common/board_f.c | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/common/board_f.c b/common/board_f.c index f7ea7c7a1e4..dd69c3b6b77 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -655,8 +655,14 @@ static int reloc_bootstage(void)  static int reloc_bloblist(void)  {  #ifdef CONFIG_BLOBLIST -	if (gd->flags & GD_FLG_SKIP_RELOC) +	/* +	 * Relocate only if we are supposed to send it +	 */ +	if ((gd->flags & GD_FLG_SKIP_RELOC) && +	    CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) { +		debug("Not relocating bloblist\n");  		return 0; +	}  	if (gd->new_bloblist) {  		int size = CONFIG_BLOBLIST_SIZE; | 
