summaryrefslogtreecommitdiffstats
path: root/bsps/shared
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/shared')
-rw-r--r--bsps/shared/rtems-version.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/bsps/shared/rtems-version.c b/bsps/shared/rtems-version.c
index 16f74070bc..99b98966e6 100644
--- a/bsps/shared/rtems-version.c
+++ b/bsps/shared/rtems-version.c
@@ -7,6 +7,7 @@
* http://www.rtems.org/license/LICENSE.
*/
+#include <rtems/version.h>
#include <rtems/system.h>
#include <bspopts.h>
@@ -27,3 +28,8 @@
const char _RTEMS_version[] =
"rtems-" RTEMS_VERSION " (" CPU_NAME "/" CPU_MODEL_NAME "/"
RTEMS_XSTRING( RTEMS_BSP ) ")";
+
+const char *rtems_board_support_package( void )
+{
+ return RTEMS_XSTRING( RTEMS_BSP );
+}