summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/lib/libbsp/shared/ChangeLog5
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/shared/ChangeLog b/c/src/lib/libbsp/shared/ChangeLog
index 15cfa1537c..c742b6e030 100644
--- a/c/src/lib/libbsp/shared/ChangeLog
+++ b/c/src/lib/libbsp/shared/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-15 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * bootcard.c: Must include bsp.h or bspopts.h or we cannot know if
+ boot_card() handles RAM allocation.
+
2008-07-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
* bootcard.c: Removed duplicated code.
diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c
index e1d608229d..e52ddf869c 100644
--- a/c/src/lib/libbsp/shared/bootcard.c
+++ b/c/src/lib/libbsp/shared/bootcard.c
@@ -48,12 +48,13 @@
#include <rtems.h>
+#include <bspopts.h> /* for BSP_BOOTCARD_HANDLES_RAM_ALLOCATION */
+
/*
* Since there is a forward reference
*/
char *rtems_progname;
-
/*
* Prototypes of external routines
*/