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/lib | |
parent | 05bad4aa567ccffaac128d9090abde245f8463d1 (diff) | |
download | u-boot-imx-401bb30b6d5ee18642e95086af51e39de454bd30.zip u-boot-imx-401bb30b6d5ee18642e95086af51e39de454bd30.tar.gz u-boot-imx-401bb30b6d5ee18642e95086af51e39de454bd30.tar.bz2 |
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/lib')
-rw-r--r-- | arch/arm/lib/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 6bbedf4..bcbf697 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -364,7 +364,7 @@ void board_init_f (ulong bootflag) debug ("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr); -#ifndef CONFIG_PRELOADER +#ifndef CONFIG_SPL_BUILD /* * reserve memory for malloc() arena */ |