[U-Boot] [RFC PATCH v2 07/12] arm: printf() is not available in some SPL configurations

Christian Riesch christian.riesch at omicron.at
Tue Nov 22 08:01:02 CET 2011


Hello Tom,

On Mon, Nov 21, 2011 at 6:52 PM, Tom Rini <tom.rini at gmail.com> wrote:
> On Mon, Nov 21, 2011 at 9:33 AM, Christian Riesch
> <christian.riesch at omicron.at> wrote:
>> 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: Tom Rini <tom.rini at gmail.com>
>> ---
>>  arch/arm/lib/eabi_compat.c |    3 +++
>>  1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c
>> index eb3e26d..748c808 100644
>> --- a/arch/arm/lib/eabi_compat.c
>> +++ b/arch/arm/lib/eabi_compat.c
>> @@ -13,10 +13,13 @@
>>
>>  int raise (int signum)
>>  {
>> +#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
>>        printf("raise: Signal # %d caught\n", signum);
>> +#endif
>>        return 0;
>>  }
>>
>> +
>>  /* Dummy function to avoid linker complaints */
>>  void __aeabi_unwind_cpp_pr0(void)
>>  {
>
> No extra white space adding please :)  Otherwise

Ok, I'll remove that line and resubmit the patch.

> Acked-by: Tom Rini <trini at ti.com>

Thanks, Christian


More information about the U-Boot mailing list