summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-05 21:17:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-05 21:17:47 +0000
commitdce79aee441824141d100a752fffd627e271175b (patch)
tree6a9e9a44b7c71372c0523c7fbe44f2c2f9ebe1d4 /c/src/lib/libbsp/shared/bootcard.c
parent2009-05-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-dce79aee441824141d100a752fffd627e271175b.tar.bz2
2009-05-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* bootcard.c, gdbstub/rtems-stub-glue.c: Add info to not enough memory message.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c6
1 files changed, 5 insertions, 1 deletions
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;
}