diff options
Diffstat (limited to 'lib_i386/board.c')
| -rw-r--r-- | lib_i386/board.c | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/lib_i386/board.c b/lib_i386/board.c index 29683ee26..e18dfa5bc 100644 --- a/lib_i386/board.c +++ b/lib_i386/board.c @@ -225,6 +225,9 @@ void start_i386boot (void)  	static bd_t bd_data;  	init_fnc_t **init_fnc_ptr; +#ifndef CONFIG_SKIP_RELOCATE_UBOOT +	cmd_tbl_t *p; +#endif  	show_boot_progress(0x21);  	gd = &gd_data; @@ -238,6 +241,10 @@ void start_i386boot (void)  	gd->baudrate =  CONFIG_BAUDRATE; +#ifndef CONFIG_SKIP_RELOCATE_UBOOT +	/* Need to set relocation offset here for interrupt initialization */ +	gd->reloc_off =  CONFIG_SYS_BL_START_RAM - TEXT_BASE; +#endif  	for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) {  		show_boot_progress(0xa130|i); @@ -247,6 +254,26 @@ void start_i386boot (void)  	}  	show_boot_progress(0x23); +#ifndef CONFIG_SKIP_RELOCATE_UBOOT +	for (p = &__u_boot_cmd_start; p != &__u_boot_cmd_end; p++) { +		ulong addr; +		addr = (ulong) (p->cmd) + gd->reloc_off; +		p->cmd = (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr; +		addr = (ulong)(p->name) + gd->reloc_off; +		p->name = (char *)addr; + +		if (p->usage != NULL) { +			addr = (ulong)(p->usage) + gd->reloc_off; +			p->usage = (char *)addr; +		} +	#ifdef	CONFIG_SYS_LONGHELP +		if (p->help != NULL) { +			addr = (ulong)(p->help) + gd->reloc_off; +			p->help = (char *)addr; +		} +	#endif +	} +#endif  	/* configure available FLASH banks */  	size = flash_init();  	display_flash_config(size); |