diff options
| author | wdenk <wdenk> | 2003-05-22 22:52:13 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-05-22 22:52:13 +0000 | 
| commit | 5d232d0e7ea982d859d028ab482d95eb68460b19 (patch) | |
| tree | a02c773fa4be5687f8f97d053ebd9afebbfaa54f /cpu/mpc824x/start.S | |
| parent | c8c3a8be2dd09e51d7dc33f431e3a638ac5688f2 (diff) | |
| download | olio-uboot-2014.01-5d232d0e7ea982d859d028ab482d95eb68460b19.tar.xz olio-uboot-2014.01-5d232d0e7ea982d859d028ab482d95eb68460b19.zip | |
* Patch by Dave Ellis, 22 May 2003:LABEL_2003_05_23_0055
  Fix problem with only partially cleared .bss segment
* Patch by Rune Torgersen, 12 May 2003:
  get PCI to work on a MPC8266ADS board; incorporate change to
  cpu/mpc8260/pci.c to enable overrides of PCI memory parameters
Diffstat (limited to 'cpu/mpc824x/start.S')
| -rw-r--r-- | cpu/mpc824x/start.S | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/mpc824x/start.S b/cpu/mpc824x/start.S index 7716240ed..855b81f7b 100644 --- a/cpu/mpc824x/start.S +++ b/cpu/mpc824x/start.S @@ -74,7 +74,7 @@  	GOT_ENTRY(transfer_to_handler)  	GOT_ENTRY(_end) -	GOT_ENTRY(.bss) +	GOT_ENTRY(__bss_start)  #if defined(CONFIG_FADS)  	GOT_ENTRY(environment)  #endif @@ -665,7 +665,7 @@ clear_bss:  	/*  	 * Now clear BSS segment  	 */ -	lwz	r3,GOT(.bss) +	lwz	r3,GOT(__bss_start)  	lwz	r4,GOT(_end)  	cmplw	0, r3, r4 |