From dce79aee441824141d100a752fffd627e271175b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 5 May 2009 21:17:47 +0000 Subject: 2009-05-05 Joel Sherrill * bootcard.c, gdbstub/rtems-stub-glue.c: Add info to not enough memory message. --- c/src/lib/libbsp/shared/bootcard.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'c/src/lib/libbsp/shared/bootcard.c') diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c index abb5216a63..7327e210a4 100644 --- a/c/src/lib/libbsp/shared/bootcard.c +++ b/c/src/lib/libbsp/shared/bootcard.c @@ -153,7 +153,11 @@ int boot_card( &heap_start, (ssize_t*) &heap_size); if ( work_area_size <= Configuration.work_space_size ) { - printk( "bootcard: Work space too big for work area!\n"); + printk( + "bootcard: Work space too big for work area! (%d > %d)\n", + Configuration.work_space_size, + work_area_size + ); bsp_cleanup(); return -1; } -- cgit v1.2.3