summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/bootcard.c')
-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;
}