diff options
| author | Aneesh V <aneesh@ti.com> | 2011-07-13 05:11:07 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-07-26 14:44:34 +0200 | 
| commit | 401bb30b6d5ee18642e95086af51e39de454bd30 (patch) | |
| tree | 9004be3d53e0cdba8eae3e9ad93e574642552dde /arch/arm/cpu/arm720t/start.S | |
| parent | 05bad4aa567ccffaac128d9090abde245f8463d1 (diff) | |
| download | olio-uboot-2014.01-401bb30b6d5ee18642e95086af51e39de454bd30.tar.xz olio-uboot-2014.01-401bb30b6d5ee18642e95086af51e39de454bd30.zip | |
replace CONFIG_PRELOADER with CONFIG_SPL_BUILD
replace all occurences of CONFIG_PRELOADER with CONFIG_SPL_BUILD
Signed-off-by: Aneesh V <aneesh@ti.com>
Diffstat (limited to 'arch/arm/cpu/arm720t/start.S')
| -rw-r--r-- | arch/arm/cpu/arm720t/start.S | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/arm/cpu/arm720t/start.S b/arch/arm/cpu/arm720t/start.S index e774c3ff6..091b7d891 100644 --- a/arch/arm/cpu/arm720t/start.S +++ b/arch/arm/cpu/arm720t/start.S @@ -178,7 +178,7 @@ copy_loop:  	cmp	r0, r2			/* until source end address [r2]    */  	blo	copy_loop -#ifndef CONFIG_PRELOADER +#ifndef CONFIG_SPL_BUILD  	/*  	 * fix .rel.dyn relocations  	 */ @@ -220,7 +220,7 @@ fixnext:  #endif  clear_bss: -#ifndef CONFIG_PRELOADER +#ifndef CONFIG_SPL_BUILD  	ldr	r0, _bss_start_ofs  	ldr	r1, _bss_end_ofs  	mov	r4, r6			/* reloc addr */ |