[U-Boot] [PATCH v4] arm: printf() is not available in some SPL configurations
Christian Riesch
christian.riesch at omicron.at
Tue Nov 29 11:11:03 CET 2011
This patch avoids build breakage for SPLs that do not support printf.
Signed-off-by: Christian Riesch <christian.riesch at omicron.at>
Cc: Wolfgang Denk <wd at denx.de>
Cc: Albert Aribaud <albert.u.boot at aribaud.net>
Acked-by: Tom Rini <trini at ti.com>
Acked-by: Andreas Bießmann <andreas.devel at googlemail.com>
---
Hi,
this v4 of a patch out of my recent patchset
[PATCH v3 00/15] Add an SPL to boot the da850evm from SPI
http://lists.denx.de/pipermail/u-boot/2011-November/111182.html
Changes for v4:
- split the patchset since it is getting quite big
- added the Acked-bys
Regards, Christian
arch/arm/lib/eabi_compat.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c
index eb3e26d..e1b87be 100644
--- a/arch/arm/lib/eabi_compat.c
+++ b/arch/arm/lib/eabi_compat.c
@@ -13,7 +13,9 @@
int raise (int signum)
{
+#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
printf("raise: Signal # %d caught\n", signum);
+#endif
return 0;
}
--
1.7.0.4
More information about the U-Boot
mailing list