diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-05-18 19:09:58 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-05-19 00:59:20 +0200 | 
| commit | 3cc27b426aeefe2930f911692e9df3143fb2565f (patch) | |
| tree | 786abab3e7b4259567a26e4574bab2301b54c091 | |
| parent | 311f3446930c1e64c12026c1cfd00500b05be52d (diff) | |
| download | olio-uboot-2014.01-3cc27b426aeefe2930f911692e9df3143fb2565f.tar.xz olio-uboot-2014.01-3cc27b426aeefe2930f911692e9df3143fb2565f.zip | |
i386: Fix multiple definitions of __show_boot_progress
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
| -rw-r--r-- | board/sc520_cdp/sc520_cdp_asm.S | 4 | ||||
| -rw-r--r-- | board/sc520_spunk/sc520_spunk_asm.S | 4 | ||||
| -rw-r--r-- | cpu/i386/start.S | 20 | 
3 files changed, 14 insertions, 14 deletions
| diff --git a/board/sc520_cdp/sc520_cdp_asm.S b/board/sc520_cdp/sc520_cdp_asm.S index be7b2bb48..7f70d65d5 100644 --- a/board/sc520_cdp/sc520_cdp_asm.S +++ b/board/sc520_cdp/sc520_cdp_asm.S @@ -76,8 +76,8 @@ done:   movb	$0x88, %al  	jmp 	*%ebp		     /* return to caller */ -.globl __show_boot_progress -__show_boot_progress: +.globl show_boot_progress +show_boot_progress:  	out	%al, $0x80  	xchg	%al, %ah  	movw	$0x680, %dx diff --git a/board/sc520_spunk/sc520_spunk_asm.S b/board/sc520_spunk/sc520_spunk_asm.S index 8b3410399..0127076db 100644 --- a/board/sc520_spunk/sc520_spunk_asm.S +++ b/board/sc520_spunk/sc520_spunk_asm.S @@ -73,8 +73,8 @@ done:   movl    $0xfffefc32,%edx  	jmp 	*%ebp		     /* return to caller */ -.globl __show_boot_progress -__show_boot_progress: +.globl show_boot_progress +show_boot_progress:  	movl    $0xfffefc32,%edx  	xorw    $0xffff, %ax  	movw    %ax,(%edx) diff --git a/cpu/i386/start.S b/cpu/i386/start.S index 1a54dd10e..51a27aa21 100644 --- a/cpu/i386/start.S +++ b/cpu/i386/start.S @@ -55,7 +55,7 @@ early_board_init_ret:  	/* so we try to indicate progress */  	movw	$0x01, %ax  	movl	$.progress0, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress0:  	/* size memory */ @@ -74,7 +74,7 @@ mem_init_ret:  	/* indicate (lack of) progress */  	movw	$0x81, %ax  	movl	$.progress0a, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress0a:  	jmp 	die  mem_ok: @@ -82,7 +82,7 @@ mem_ok:  	/* indicate progress */  	movw	$0x02, %ax  	movl	$.progress1, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress1:  	/* create a stack after the bss */ @@ -104,7 +104,7 @@ no_stack:  	/* indicate (lack of) progress */  	movw	$0x82, %ax  	movl	$.progress1a, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress1a:  	jmp die @@ -113,7 +113,7 @@ stack_ok:  	/* indicate progress */  	movw	$0x03, %ax  	movl	$.progress2, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress2:  	/* copy data section to ram, size must be 4-byte aligned */ @@ -136,7 +136,7 @@ data_fail:  	/* indicate (lack of) progress */  	movw	$0x83, %ax  	movl	$.progress2a, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress2a:  	jmp 	die @@ -145,7 +145,7 @@ data_ok:  	/* indicate progress */  	movw	$0x04, %ax  	movl	$.progress3, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress3:  	/* clear bss section in ram, size must be 4-byte aligned  */ @@ -168,7 +168,7 @@ bss_fail:  	/* indicate (lack of) progress */  	movw	$0x84, %ax  	movl	$.progress3a, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress3a:  	jmp 	die @@ -180,7 +180,7 @@ bss_ok:  	/* indicate progress */  	movw	$0x05, %ax  	movl	$.progress4, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress4:  	call	start_i386boot  /* Enter, U-boot! */ @@ -188,7 +188,7 @@ bss_ok:  	/* indicate (lack of) progress */  	movw	$0x85, %ax  	movl	$.progress4a, %ebp -	jmp	__show_boot_progress +	jmp	show_boot_progress  .progress4a:  die:	hlt |